src.main.java.io.agora.rtc.MixerLayoutConfig Maven / Gradle / Ivy
//
//
// Agora Media SDK
// Copyright (c) 2020 Agora IO. All rights reserved.
// This file is generated by tool, do NOT modify it
//
//
package io.agora.rtc;
public class MixerLayoutConfig {
public MixerLayoutConfig() {
}
public MixerLayoutConfig(int top, int left, int width, int height, int zOrder, float alpha, byte mirror,
java.lang.String imagePath) {
this.top = top;
this.left = left;
this.width = width;
this.height = height;
this.zOrder = zOrder;
this.alpha = alpha;
this.mirror = mirror;
this.imagePath = imagePath;
}
private int top;
public int getTop() {
return this.top;
}
public void setTop(int top) {
this.top = top;
}
private int left;
public int getLeft() {
return this.left;
}
public void setLeft(int left) {
this.left = left;
}
private int width;
public int getWidth() {
return this.width;
}
public void setWidth(int width) {
this.width = width;
}
private int height;
public int getHeight() {
return this.height;
}
public void setHeight(int height) {
this.height = height;
}
private int zOrder;
public int getZOrder() {
return this.zOrder;
}
public void setZOrder(int zOrder) {
this.zOrder = zOrder;
}
private float alpha;
public float getAlpha() {
return this.alpha;
}
public void setAlpha(float alpha) {
this.alpha = alpha;
}
private byte mirror;
public byte getMirror() {
return this.mirror;
}
public void setMirror(byte mirror) {
this.mirror = mirror;
}
private java.lang.String imagePath;
public java.lang.String getImagePath() {
return this.imagePath;
}
public void setImagePath(java.lang.String imagePath) {
this.imagePath = imagePath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy