Trait style::values::generics::transform::ToMatrix [] [src]

pub trait ToMatrix {
    fn is_3d(&self) -> bool;
fn to_3d_matrix(
        &self,
        reference_box: Option<&Rect<Au>>
    ) -> Result<Transform3D<f64>, ()>; }

Support the conversion to a 3d matrix.

Required Methods

Check if it is a 3d transform function.

Return the equivalent 3d matrix.

Implementors