Trait nalgebra::FromHomogeneous [] [src]

pub trait FromHomogeneous<U> {
    fn from(&U) -> Self;
}

Traits of objects which can be build from an homogeneous coordinate form.

Required Methods

Builds an object from its homogeneous coordinate form.

Note that this this is not required that from is the inverse of to_homogeneous. Typically, from will remove some informations unrecoverable by to_homogeneous.

Implementors