pub trait Transformable {
// Required method
fn transform(
x: Self,
y: Self,
z: Self,
mat: Matrix<f32, Const<4>, Const<4>, ArrayStorage<f32, 4, 4>>,
) -> (Self, Self, Self)
where Self: Sized;
}Expand description
Trait for types that can be transformed by a 4x4 homogeneous transform matrix