2017-08-03 01:37:44 +08:00
|
|
|
use alga::general::Real;
|
2018-05-19 23:15:15 +08:00
|
|
|
use base::allocator::Allocator;
|
|
|
|
use base::constraint::{AreMultipliable, DimEq, SameNumberOfRows, ShapeConstraint};
|
|
|
|
use base::{DefaultAllocator, Matrix, Scalar, Unit, Vector};
|
2017-08-03 01:37:44 +08:00
|
|
|
use dimension::{Dim, DimName, U1};
|
|
|
|
use storage::{Storage, StorageMut};
|
|
|
|
|
|
|
|
use geometry::Point;
|
|
|
|
|
|
|
|
/// A reflection wrt. a plane.
|
|
|
|
pub struct Reflection<N: Scalar, D: Dim, S: Storage<N, D>> {
|
2018-02-02 19:26:35 +08:00
|
|
|
axis: Vector<N, D, S>,
|
|
|
|
bias: N,
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<N: Real, D: Dim, S: Storage<N, D>> Reflection<N, D, S> {
|
|
|
|
/// 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.
|
2019-02-17 05:29:41 +08:00
|
|
|
pub fn new(axis: Unit<Vector<N, D, S>>, bias: N) -> Self {
|
|
|
|
Self {
|
2018-12-10 04:08:14 +08:00
|
|
|
axis: axis.into_inner(),
|
2018-02-02 19:26:35 +08:00
|
|
|
bias: bias,
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new reflection wrt. the plane orthogonal to the given axis and that contains the
|
|
|
|
/// point `pt`.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn new_containing_point(
|
|
|
|
axis: Unit<Vector<N, D, S>>,
|
|
|
|
pt: &Point<N, D>,
|
2019-02-17 05:29:41 +08:00
|
|
|
) -> Self
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
D: DimName,
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
let bias = pt.coords.dot(axis.as_ref());
|
|
|
|
Self::new(axis, bias)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The reflexion axis.
|
|
|
|
pub fn axis(&self) -> &Vector<N, D, S> {
|
|
|
|
&self.axis
|
|
|
|
}
|
|
|
|
|
2018-09-24 12:48:42 +08:00
|
|
|
// FIXME: naming convention: reflect_to, reflect_assign ?
|
2017-08-03 01:37:44 +08:00
|
|
|
/// Applies the reflection to the columns of `rhs`.
|
|
|
|
pub fn reflect<R2: Dim, C2: Dim, S2>(&self, rhs: &mut Matrix<N, R2, C2, S2>)
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
ShapeConstraint: SameNumberOfRows<R2, D>,
|
|
|
|
{
|
|
|
|
for i in 0..rhs.ncols() {
|
2017-08-03 01:37:44 +08:00
|
|
|
// NOTE: we borrow the column twice here. First it is borrowed immutably for the
|
|
|
|
// dot product, and then mutably. Somehow, this allows significantly
|
|
|
|
// better optimizations of the dot product from the compiler.
|
|
|
|
let m_two: N = ::convert(-2.0f64);
|
2018-02-02 19:26:35 +08:00
|
|
|
let factor = (rhs.column(i).dot(&self.axis) - self.bias) * m_two;
|
2017-08-03 01:37:44 +08:00
|
|
|
rhs.column_mut(i).axpy(factor, &self.axis, N::one());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Applies the reflection to the rows of `rhs`.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub fn reflect_rows<R2: Dim, C2: Dim, S2, S3>(
|
|
|
|
&self,
|
|
|
|
rhs: &mut Matrix<N, R2, C2, S2>,
|
|
|
|
work: &mut Vector<N, R2, S3>,
|
|
|
|
) where
|
|
|
|
S2: StorageMut<N, R2, C2>,
|
|
|
|
S3: StorageMut<N, R2>,
|
|
|
|
ShapeConstraint: DimEq<C2, D> + AreMultipliable<R2, C2, D, U1>,
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
rhs.mul_to(&self.axis, work);
|
|
|
|
|
|
|
|
if !self.bias.is_zero() {
|
|
|
|
work.add_scalar_mut(-self.bias);
|
|
|
|
}
|
|
|
|
|
|
|
|
let m_two: N = ::convert(-2.0f64);
|
|
|
|
rhs.ger(m_two, &work, &self.axis, N::one());
|
|
|
|
}
|
|
|
|
}
|