pub trait IntoTransform {
    type IntoQuat;

    // Required method
    fn into_transform(self) -> Transform<Self::IntoQuat>;
}

Required Associated Types§

Required Methods§

Implementors§