Trait nalgebra::geometry::AbstractRotation
source · pub trait AbstractRotation<T: Scalar, const D: usize>: PartialEq + ClosedMulAssign + Clone {
// Required methods
fn identity() -> Self;
fn inverse(&self) -> Self;
fn inverse_mut(&mut self);
fn transform_vector(&self, v: &SVector<T, D>) -> SVector<T, D>;
fn transform_point(&self, p: &Point<T, D>) -> Point<T, D>;
fn inverse_transform_vector(
&self,
v: &OVector<T, Const<D>>
) -> OVector<T, Const<D>>;
fn inverse_transform_point(&self, p: &Point<T, D>) -> Point<T, D>;
// Provided method
fn inverse_transform_unit_vector(
&self,
v: &Unit<SVector<T, D>>
) -> Unit<SVector<T, D>> { ... }
}
Expand description
Trait implemented by rotations that can be used inside of an Isometry
or Similarity
.
Required Methods§
sourcefn inverse_mut(&mut self)
fn inverse_mut(&mut self)
Change self
to its inverse.
sourcefn transform_vector(&self, v: &SVector<T, D>) -> SVector<T, D>
fn transform_vector(&self, v: &SVector<T, D>) -> SVector<T, D>
Apply the rotation to the given vector.
sourcefn transform_point(&self, p: &Point<T, D>) -> Point<T, D>
fn transform_point(&self, p: &Point<T, D>) -> Point<T, D>
Apply the rotation to the given point.
sourcefn inverse_transform_vector(
&self,
v: &OVector<T, Const<D>>
) -> OVector<T, Const<D>>
fn inverse_transform_vector( &self, v: &OVector<T, Const<D>> ) -> OVector<T, Const<D>>
Apply the inverse rotation to the given vector.
sourcefn inverse_transform_point(&self, p: &Point<T, D>) -> Point<T, D>
fn inverse_transform_point(&self, p: &Point<T, D>) -> Point<T, D>
Apply the inverse rotation to the given point.
Provided Methods§
Object Safety§
This trait is not object safe.