pub trait XRPoseMethods<D>where
D: DomTypes,{
// Required methods
fn Transform(&self) -> Root<Dom<<D as DomTypes>::XRRigidTransform>>;
fn GetLinearVelocity(
&self,
) -> Option<Root<Dom<<D as DomTypes>::DOMPointReadOnly>>>;
fn GetAngularVelocity(
&self,
) -> Option<Root<Dom<<D as DomTypes>::DOMPointReadOnly>>>;
fn EmulatedPosition(&self) -> bool;
}