Trait alga::linear::ProjectiveTransformation [−][src]
The most general form of invertible transformations on an euclidean space.
Required methods
fn inverse_transform_point(&self, pt: &E) -> E
[src]
Applies this group’s two_sided_inverse action on a point from the euclidean space.
fn inverse_transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
[src]
Applies this group’s two_sided_inverse action on a vector from the euclidean space.
If v
is a vector and a, b
two point such that v = a - b
, the action ∘
on a vector
is defined as self ∘ v = (self × a) - (self × b)
.
Implementors
impl<E: EuclideanSpace> ProjectiveTransformation<E> for Id
[src]
fn inverse_transform_point(&self, pt: &E) -> E
[src]
fn inverse_transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
[src]
impl<R, E> ProjectiveTransformation<E> for R where
R: RealField,
E: EuclideanSpace<RealField = R>,
E::Coordinates: ClosedMul<R> + ClosedDiv<R> + ClosedNeg,
[src]
R: RealField,
E: EuclideanSpace<RealField = R>,
E::Coordinates: ClosedMul<R> + ClosedDiv<R> + ClosedNeg,