Skip to main content

Transformable

Trait Transformable 

Source
pub trait Transformable {
    // Required methods
    fn apply(&self, transform: Transform) -> Self;
    fn apply_matrix4d(&self, matrix: Mat4d) -> Self;
}

Required Methods§

Source

fn apply(&self, transform: Transform) -> Self

Source

fn apply_matrix4d(&self, matrix: Mat4d) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§