interface OrientedImageSource {
    aspectRatio: number;
    distance?: number;
    fov: number;
    imageUrl?: string;
    orientation: HeadingPitchRollLike;
    position: Vector3Like;
}

Properties

aspectRatio: number

The aspect ratio of the image, which is width divided by height.

distance?: number

The distance from the origin at which the image is displayed.

10
fov: number

Vertical field of view in degrees.

imageUrl?: string

The URL of the image. If undefined, the image is not displayed (but the frustum and origin point can still be displayed)

The orientation of the camera.

position: Vector3Like

The position of the camera, in the same coordinate system as the instance.