pub trait Matrix4Ext<T: Scalar> {
// Required methods
fn side(&self) -> Vector3<T>;
fn up(&self) -> Vector3<T>;
fn look(&self) -> Vector3<T>;
fn position(&self) -> Vector3<T>;
fn basis(&self) -> Matrix3<T>;
}Required Methods§
fn side(&self) -> Vector3<T>
fn up(&self) -> Vector3<T>
fn look(&self) -> Vector3<T>
fn position(&self) -> Vector3<T>
fn basis(&self) -> Matrix3<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".