Interface HeadingPitchRollLike

Defines a heading, pitch and roll in degrees.

interface HeadingPitchRollLike {
    heading?: number;
    pitch?: number;
    roll?: number;
}

Implemented by

Properties

Properties

heading?: number

The heading (or azimuth), in degrees. Zero is north, 90 is east, and so on.

pitch?: number

The pitch, in degrees. Represents the angle from the horizontal plane. Positive values look above the horizon, and negative values look below the horizon.

roll?: number

The roll, in degrees. Represents the rotation around the forward axis. Positives values tilt on the right.