/**
* Represents a rotation structure with pitch and yaw
* components.
*/exportdefaultclassPitchYawRotation {
/**
* Pitch (up-and-down) element of this rotation.
*/"pitch": number;
/**
* Yaw component (left-to-right) of this position.
*/"yaw": number;
}