GlobeView.CameraRoll Property
Gets or sets the roll angle of the camera.
Syntax
public System.Double CameraRoll { get; set; }
Property Value
Default: 0.0
The roll angle, in degrees, of the camera.
Remarks
A roll rotates the camera around its forward vector. The sign convention is that a positive roll angle makes the camera starboard go down.
Example
// Roll the camera by 10 degrees
public static void RollCameraBy10Degrees(GlobeView globeView)
{
// Add 10 degrees to the Camera roll
globeView.CameraRoll = globeView.CameraRoll + 10.0;
}
Platforms
Windows, Linux, Android