Struct lnkit::prelude::Reflection[][src]

pub struct Reflection<T, D, S> where
    T: Scalar,
    S: Storage<T, D, Const<1_usize>>,
    D: Dim
{ /* fields omitted */ }

A reflection wrt. a plane.

Implementations

impl<T, S, const D: usize> Reflection<T, Const<D>, S> where
    T: ComplexField,
    S: Storage<T, Const<D>, Const<1_usize>>, 
[src]

pub fn new_containing_point(
    axis: Unit<Matrix<T, Const<D>, Const<1_usize>, S>>,
    pt: &Point<T, D>
) -> Reflection<T, Const<D>, S>
[src]

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

impl<T, D, S> Reflection<T, D, S> where
    T: ComplexField,
    S: Storage<T, D, Const<1_usize>>,
    D: Dim
[src]

pub fn new(
    axis: Unit<Matrix<T, D, Const<1_usize>, S>>,
    bias: T
) -> Reflection<T, 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 axis(&self) -> &Matrix<T, D, Const<1_usize>, S>[src]

The reflexion axis.

pub fn reflect<R2, C2, S2>(&self, rhs: &mut Matrix<T, R2, C2, S2>) where
    R2: Dim,
    S2: StorageMut<T, R2, C2>,
    C2: Dim,
    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<T, R2, C2, S2>,
    sign: T
) where
    R2: Dim,
    S2: StorageMut<T, R2, C2>,
    C2: Dim,
    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<T, R2, C2, S2>,
    work: &mut Matrix<T, R2, Const<1_usize>, S3>
) where
    S3: StorageMut<T, R2, Const<1_usize>>,
    R2: Dim,
    S2: StorageMut<T, R2, C2>,
    C2: Dim,
    ShapeConstraint: DimEq<C2, D>,
    ShapeConstraint: AreMultipliable<R2, C2, D, Const<1_usize>>, 
[src]

Applies the reflection to the rows of lhs.

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

Applies the reflection to the rows of lhs.

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> Downcast for T where
    T: Any

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

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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>,