Trait RotateObject
Source pub trait RotateObject: Object {
// Provided methods
fn rotate<T: Number>(self, x: T, y: T, z: T) -> Rotate<Self>
where Self: Sized { ... }
fn rotate_x<T: Number>(self, x: T) -> Rotate<Self>
where Self: Sized { ... }
fn rotate_y<T: Number>(self, y: T) -> Rotate<Self>
where Self: Sized { ... }
fn rotate_z<T: Number>(self, z: T) -> Rotate<Self>
where Self: Sized { ... }
fn rotate_xy<T: Number>(self, x: T, y: T) -> Rotate<Self>
where Self: Sized { ... }
fn rotate_yz<T: Number>(self, y: T, z: T) -> Rotate<Self>
where Self: Sized { ... }
fn rotate_xz<T: Number>(self, x: T, z: T) -> Rotate<Self>
where Self: Sized { ... }
}