Interface AxisAngle

An axis and an angle to rotate around it.

interface AxisAngle {
    angle: number;
    axis: Vector3Like;
}

Properties

Properties

angle: number

The angle to rotate around the axis by in radians.

The axis to rotate around.