[][src]Trait rust_3d::IsMatrix3Transformable

pub trait IsMatrix3Transformable {
    fn transformed(&self, m: &Matrix3) -> Self;
fn transform(&mut self, m: &Matrix3); }

IsMatrix3Transformable trait used for types that can be transformed by a 3x3 Matrix

Required methods

fn transformed(&self, m: &Matrix3) -> Self

Should return self transformed by the Matrix

fn transform(&mut self, m: &Matrix3)

Should transform self by the Matrix

Loading content...

Implementors

impl IsMatrix3Transformable for LineSegment2D[src]

impl IsMatrix3Transformable for Point2D[src]

impl<P> IsMatrix3Transformable for PointCloud2D<P> where
    P: Is2D + IsMatrix3Transformable + Clone
[src]

impl<P> IsMatrix3Transformable for Polygon2D<P> where
    P: Is2D + IsMatrix3Transformable + Clone
[src]

Loading content...