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