Indicates the pose of the face as determined by its pitch, roll, and yaw.

interface Pose {
    Pitch?: number;
    Roll?: number;
    Yaw?: number;
}

Properties

Properties

Pitch?: number

Value representing the face rotation on the pitch axis.

Roll?: number

Value representing the face rotation on the roll axis.

Yaw?: number

Value representing the face rotation on the yaw axis.