CameraRotation
Camera rotation modes to accommodate different device orientations.
enum CameraRotation {
  ROTATION_0 = 0,
  ROTATION_90 = 1,
  ROTATION_180 = 2,
  ROTATION_270 = 3,
}
Values
| Value | Value | Description | 
|---|---|---|
ROTATION_0 | 0 | No rotation applied to the camera feed (0 degrees) | 
ROTATION_90 | 1 | 90-degree clockwise rotation of the camera feed | 
ROTATION_180 | 2 | 180-degree rotation of the camera feed | 
ROTATION_270 | 3 | 270-degree clockwise rotation of the camera feed |