Struct rin::math::geometry::Reflection[][src]

pub struct Reflection<N, D, S> where
    N: Scalar,
    D: Dim,
    S: Storage<N, D, U1>, 
{ /* fields omitted */ }

A reflection wrt. a plane.

Implementations

impl<N, D, S> Reflection<N, D, S> where
    N: ComplexField,
    D: Dim,
    S: Storage<N, D, U1>, 
[src]

pub fn new(axis: Unit<Matrix<N, D, U1, S>>, bias: N) -> Reflection<N, D, S>[src]

Creates a new reflection wrt the plane orthogonal to the given axis and bias.

The bias is the position of the plane on the axis. In particular, a bias equal to zero represents a plane that passes through the origin.

pub fn new_containing_point(
    axis: Unit<Matrix<N, D, U1, S>>,
    pt: &Point<N, D>
) -> Reflection<N, D, S> where
    D: DimName,
    DefaultAllocator: Allocator<N, D, U1>, 
[src]

Creates a new reflection wrt. the plane orthogonal to the given axis and that contains the point pt.

pub fn axis(&self) -> &Matrix<N, D, U1, S>[src]

The reflexion axis.

pub fn reflect<R2, C2, S2>(&self, rhs: &mut Matrix<N, R2, C2, S2>) where
    C2: Dim,
    R2: Dim,
    S2: StorageMut<N, R2, C2>,
    ShapeConstraint: SameNumberOfRows<R2, D>, 
[src]

Applies the reflection to the columns of rhs.

pub fn reflect_with_sign<R2, C2, S2>(
    &self,
    rhs: &mut Matrix<N, R2, C2, S2>,
    sign: N
) where
    C2: Dim,
    R2: Dim,
    S2: StorageMut<N, R2, C2>,
    ShapeConstraint: SameNumberOfRows<R2, D>, 
[src]

Applies the reflection to the columns of rhs.

pub fn reflect_rows<R2, C2, S2, S3>(
    &self,
    lhs: &mut Matrix<N, R2, C2, S2>,
    work: &mut Matrix<N, R2, U1, S3>
) where
    C2: Dim,
    R2: Dim,
    S2: StorageMut<N, R2, C2>,
    S3: StorageMut<N, R2, U1>,
    ShapeConstraint: DimEq<C2, D>,
    ShapeConstraint: AreMultipliable<R2, C2, D, U1>, 
[src]

Applies the reflection to the rows of lhs.

pub fn reflect_rows_with_sign<R2, C2, S2, S3>(
    &self,
    lhs: &mut Matrix<N, R2, C2, S2>,
    work: &mut Matrix<N, R2, U1, S3>,
    sign: N
) where
    C2: Dim,
    R2: Dim,
    S2: StorageMut<N, R2, C2>,
    S3: StorageMut<N, R2, U1>,
    ShapeConstraint: DimEq<C2, D>,
    ShapeConstraint: AreMultipliable<R2, C2, D, U1>, 
[src]

Applies the reflection to the rows of lhs.

Auto Trait Implementations

impl<N, D, S> RefUnwindSafe for Reflection<N, D, S> where
    D: RefUnwindSafe,
    N: RefUnwindSafe,
    S: RefUnwindSafe

impl<N, D, S> Send for Reflection<N, D, S> where
    N: Send,
    S: Send

impl<N, D, S> Sync for Reflection<N, D, S> where
    N: Sync,
    S: Sync

impl<N, D, S> Unpin for Reflection<N, D, S> where
    D: Unpin,
    N: Unpin,
    S: Unpin

impl<N, D, S> UnwindSafe for Reflection<N, D, S> where
    D: UnwindSafe,
    N: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]