Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKFaceROI.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
11public final class ZoomSDKFaceROI {
12
13 private final float left;
14 private final float top;
15 private final float right;
16 private final float bottom;
17
18 public ZoomSDKFaceROI(float left, float top, float right, float bottom) {
19 this.left = left;
20 this.top = top;
21 this.right = right;
22 this.bottom = bottom;
23 }
24
26 public float getLeft() {
27 return left;
28 }
29
31 public float getTop() {
32 return top;
33 }
34
36 public float getRight() {
37 return right;
38 }
39
41 public float getBottom() {
42 return bottom;
43 }
44}
ZoomSDKFaceROI(float left, float top, float right, float bottom)