[−][src]Trait alga::linear::Transformation
A general transformation acting on an euclidean space. It may not be inversible.
Required Methods
fn transform_point(&self, pt: &E) -> E
Applies this group's action on a point from the euclidean space.
fn transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
Applies this group's 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> Transformation<E> for Id
[src]
impl<E: EuclideanSpace> Transformation<E> for Id
fn transform_point(&self, pt: &E) -> E
[src]
fn transform_point(&self, pt: &E) -> E
fn transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
[src]
fn transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
impl<R, E> Transformation<E> for R where
R: Real,
E: EuclideanSpace<Real = R>,
E::Coordinates: ClosedMul<R> + ClosedDiv<R> + ClosedNeg,
[src]
impl<R, E> Transformation<E> for R where
R: Real,
E: EuclideanSpace<Real = R>,
E::Coordinates: ClosedMul<R> + ClosedDiv<R> + ClosedNeg,
fn transform_point(&self, pt: &E) -> E
[src]
fn transform_point(&self, pt: &E) -> E
fn transform_vector(&self, v: &E::Coordinates) -> E::Coordinates
[src]
fn transform_vector(&self, v: &E::Coordinates) -> E::Coordinates