pub type Reflection1<T> = Reflection<T, Const<1>, ArrayStorage<T, 1, 1>>;
Expand description
A 1-dimensional reflection.
Aliased Type§
struct Reflection1<T> { /* private fields */ }
Implementations
Source§impl<T: ComplexField, S: Storage<T, Const<D>>, const D: usize> Reflection<T, Const<D>, S>
impl<T: ComplexField, S: Storage<T, Const<D>>, const D: usize> Reflection<T, Const<D>, S>
Source§impl<T: ComplexField, D: Dim, S: Storage<T, D>> Reflection<T, D, S>
impl<T: ComplexField, D: Dim, S: Storage<T, D>> Reflection<T, D, S>
Sourcepub fn new(axis: Unit<Vector<T, D, S>>, bias: T) -> Self
pub fn new(axis: Unit<Vector<T, D, S>>, bias: T) -> Self
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.
Sourcepub fn bias(&self) -> T
pub fn bias(&self) -> T
The reflection 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.
Sourcepub fn reflect<R2: Dim, C2: Dim, S2>(&self, rhs: &mut Matrix<T, R2, C2, S2>)
pub fn reflect<R2: Dim, C2: Dim, S2>(&self, rhs: &mut Matrix<T, R2, C2, S2>)
Applies the reflection to the columns of rhs
.
Sourcepub fn reflect_with_sign<R2: Dim, C2: Dim, S2>(
&self,
rhs: &mut Matrix<T, R2, C2, S2>,
sign: T,
)
pub fn reflect_with_sign<R2: Dim, C2: Dim, S2>( &self, rhs: &mut Matrix<T, R2, C2, S2>, sign: T, )
Applies the reflection to the columns of rhs
.
Sourcepub fn reflect_rows<R2: Dim, C2: Dim, S2, S3>(
&self,
lhs: &mut Matrix<T, R2, C2, S2>,
work: &mut Vector<T, R2, S3>,
)where
S2: StorageMut<T, R2, C2>,
S3: StorageMut<T, R2>,
ShapeConstraint: DimEq<C2, D> + AreMultipliable<R2, C2, D, U1>,
pub fn reflect_rows<R2: Dim, C2: Dim, S2, S3>(
&self,
lhs: &mut Matrix<T, R2, C2, S2>,
work: &mut Vector<T, R2, S3>,
)where
S2: StorageMut<T, R2, C2>,
S3: StorageMut<T, R2>,
ShapeConstraint: DimEq<C2, D> + AreMultipliable<R2, C2, D, U1>,
Applies the reflection to the rows of lhs
.
Sourcepub fn reflect_rows_with_sign<R2: Dim, C2: Dim, S2, S3>(
&self,
lhs: &mut Matrix<T, R2, C2, S2>,
work: &mut Vector<T, R2, S3>,
sign: T,
)where
S2: StorageMut<T, R2, C2>,
S3: StorageMut<T, R2>,
ShapeConstraint: DimEq<C2, D> + AreMultipliable<R2, C2, D, U1>,
pub fn reflect_rows_with_sign<R2: Dim, C2: Dim, S2, S3>(
&self,
lhs: &mut Matrix<T, R2, C2, S2>,
work: &mut Vector<T, R2, S3>,
sign: T,
)where
S2: StorageMut<T, R2, C2>,
S3: StorageMut<T, R2>,
ShapeConstraint: DimEq<C2, D> + AreMultipliable<R2, C2, D, U1>,
Applies the reflection to the rows of lhs
.