2021-10-19 20:05:51 +08:00
|
|
|
use approx::{AbsDiffEq, RelativeEq, UlpsEq};
|
|
|
|
use num::{One, Zero};
|
|
|
|
use std::fmt;
|
|
|
|
use std::hash;
|
|
|
|
#[cfg(feature = "abomonation-serialize")]
|
|
|
|
use std::io::{Result as IOResult, Write};
|
|
|
|
|
|
|
|
#[cfg(feature = "serde-serialize-no-std")]
|
|
|
|
use serde::{Deserialize, Deserializer, Serialize, Serializer};
|
|
|
|
|
|
|
|
#[cfg(feature = "abomonation-serialize")]
|
|
|
|
use abomonation::Abomonation;
|
|
|
|
|
|
|
|
use crate::base::allocator::Allocator;
|
|
|
|
use crate::base::dimension::{DimNameAdd, DimNameSum, U1};
|
|
|
|
use crate::base::storage::Owned;
|
2021-10-19 21:55:06 +08:00
|
|
|
use crate::base::{Const, DefaultAllocator, OMatrix, OVector, SVector, Scalar};
|
|
|
|
use crate::{ClosedAdd, ClosedDiv};
|
2021-10-19 21:02:50 +08:00
|
|
|
use crate::ClosedMul;
|
2021-10-19 20:05:51 +08:00
|
|
|
|
|
|
|
use crate::geometry::Point;
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
/// A scale which supports non-uniform scaling.
|
2021-10-19 20:05:51 +08:00
|
|
|
#[repr(C)]
|
2021-10-19 20:21:26 +08:00
|
|
|
pub struct Scale<T, const D: usize> {
|
|
|
|
/// The scale coordinates, i.e., how much is multiplied to a point's coordinates when it is
|
|
|
|
/// scaled.
|
2021-10-19 20:05:51 +08:00
|
|
|
pub vector: SVector<T, D>,
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: fmt::Debug, const D: usize> fmt::Debug for Scale<T, D> {
|
2021-10-19 20:05:51 +08:00
|
|
|
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
|
|
|
self.vector.as_slice().fmt(formatter)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + hash::Hash, const D: usize> hash::Hash for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
Owned<T, Const<D>>: hash::Hash,
|
|
|
|
{
|
|
|
|
fn hash<H: hash::Hasher>(&self, state: &mut H) {
|
|
|
|
self.vector.hash(state)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + Copy, const D: usize> Copy for Scale<T, D> {}
|
2021-10-19 20:05:51 +08:00
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar, const D: usize> Clone for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
Owned<T, Const<D>>: Clone,
|
|
|
|
{
|
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> Self {
|
2021-10-19 20:21:26 +08:00
|
|
|
Scale::from(self.vector.clone())
|
2021-10-19 20:05:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "bytemuck")]
|
2021-10-19 20:21:26 +08:00
|
|
|
unsafe impl<T, const D: usize> bytemuck::Zeroable for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
T: Scalar + bytemuck::Zeroable,
|
|
|
|
SVector<T, D>: bytemuck::Zeroable,
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "bytemuck")]
|
2021-10-19 20:21:26 +08:00
|
|
|
unsafe impl<T, const D: usize> bytemuck::Pod for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
T: Scalar + bytemuck::Pod,
|
|
|
|
SVector<T, D>: bytemuck::Pod,
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "abomonation-serialize")]
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T, const D: usize> Abomonation for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
T: Scalar,
|
|
|
|
SVector<T, D>: Abomonation,
|
|
|
|
{
|
|
|
|
unsafe fn entomb<W: Write>(&self, writer: &mut W) -> IOResult<()> {
|
|
|
|
self.vector.entomb(writer)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extent(&self) -> usize {
|
|
|
|
self.vector.extent()
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn exhume<'a, 'b>(&'a mut self, bytes: &'b mut [u8]) -> Option<&'b mut [u8]> {
|
|
|
|
self.vector.exhume(bytes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "serde-serialize-no-std")]
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar, const D: usize> Serialize for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
Owned<T, Const<D>>: Serialize,
|
|
|
|
{
|
|
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
|
|
where
|
|
|
|
S: Serializer,
|
|
|
|
{
|
|
|
|
self.vector.serialize(serializer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "serde-serialize-no-std")]
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<'a, T: Scalar, const D: usize> Deserialize<'a> for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
Owned<T, Const<D>>: Deserialize<'a>,
|
|
|
|
{
|
|
|
|
fn deserialize<Des>(deserializer: Des) -> Result<Self, Des::Error>
|
|
|
|
where
|
|
|
|
Des: Deserializer<'a>,
|
|
|
|
{
|
|
|
|
let matrix = SVector::<T, D>::deserialize(deserializer)?;
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
Ok(Scale::from(matrix))
|
2021-10-19 20:05:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "rkyv-serialize-no-std")]
|
|
|
|
mod rkyv_impl {
|
2021-10-19 20:21:26 +08:00
|
|
|
use super::Scale;
|
2021-10-19 20:05:51 +08:00
|
|
|
use crate::base::SVector;
|
|
|
|
use rkyv::{offset_of, project_struct, Archive, Deserialize, Fallible, Serialize};
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Archive, const D: usize> Archive for Scale<T, D> {
|
|
|
|
type Archived = Scale<T::Archived, D>;
|
2021-10-19 20:05:51 +08:00
|
|
|
type Resolver = <SVector<T, D> as Archive>::Resolver;
|
|
|
|
|
|
|
|
fn resolve(
|
|
|
|
&self,
|
|
|
|
pos: usize,
|
|
|
|
resolver: Self::Resolver,
|
|
|
|
out: &mut core::mem::MaybeUninit<Self::Archived>,
|
|
|
|
) {
|
|
|
|
self.vector.resolve(
|
|
|
|
pos + offset_of!(Self::Archived, vector),
|
|
|
|
resolver,
|
|
|
|
project_struct!(out: Self::Archived => vector),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Serialize<S>, S: Fallible + ?Sized, const D: usize> Serialize<S> for Scale<T, D> {
|
2021-10-19 20:05:51 +08:00
|
|
|
fn serialize(&self, serializer: &mut S) -> Result<Self::Resolver, S::Error> {
|
|
|
|
self.vector.serialize(serializer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Archive, _D: Fallible + ?Sized, const D: usize> Deserialize<Scale<T, D>, _D>
|
|
|
|
for Scale<T::Archived, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
T::Archived: Deserialize<T, _D>,
|
|
|
|
{
|
2021-10-19 20:21:26 +08:00
|
|
|
fn deserialize(&self, deserializer: &mut _D) -> Result<Scale<T, D>, _D::Error> {
|
|
|
|
Ok(Scale {
|
2021-10-19 20:05:51 +08:00
|
|
|
vector: self.vector.deserialize(deserializer)?,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar, const D: usize> Scale<T, D> {
|
2021-10-19 20:05:51 +08:00
|
|
|
/// Inverts `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
2021-10-19 20:21:26 +08:00
|
|
|
/// # use nalgebra::{Scale2, Scale3};
|
|
|
|
/// let t = Scale3::new(1.0, 2.0, 3.0);
|
|
|
|
/// assert_eq!(t * t.inverse(), Scale3::identity());
|
|
|
|
/// assert_eq!(t.inverse() * t, Scale3::identity());
|
2021-10-19 20:05:51 +08:00
|
|
|
///
|
|
|
|
/// // Work in all dimensions.
|
2021-10-19 20:21:26 +08:00
|
|
|
/// let t = Scale2::new(1.0, 2.0);
|
|
|
|
/// assert_eq!(t * t.inverse(), Scale2::identity());
|
|
|
|
/// assert_eq!(t.inverse() * t, Scale2::identity());
|
2021-10-19 20:05:51 +08:00
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
#[must_use = "Did you mean to use inverse_mut()?"]
|
2021-10-19 20:21:26 +08:00
|
|
|
pub fn inverse(&self) -> Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
2021-10-19 21:02:50 +08:00
|
|
|
T: ClosedDiv + One,
|
2021-10-19 20:05:51 +08:00
|
|
|
{
|
2021-10-19 21:02:50 +08:00
|
|
|
let useless: SVector<T, D> = SVector::from_element(T::one());
|
|
|
|
return useless.component_div(&self.vector).into();
|
2021-10-19 20:05:51 +08:00
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
/// Converts this Scale into its equivalent homogeneous transformation matrix.
|
2021-10-19 20:05:51 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
2021-10-19 20:21:26 +08:00
|
|
|
/// # use nalgebra::{Scale2, Scale3, Matrix3, Matrix4};
|
|
|
|
/// let t = Scale3::new(10.0, 20.0, 30.0);
|
2021-10-19 20:05:51 +08:00
|
|
|
/// let expected = Matrix4::new(1.0, 0.0, 0.0, 10.0,
|
|
|
|
/// 0.0, 1.0, 0.0, 20.0,
|
|
|
|
/// 0.0, 0.0, 1.0, 30.0,
|
|
|
|
/// 0.0, 0.0, 0.0, 1.0);
|
|
|
|
/// assert_eq!(t.to_homogeneous(), expected);
|
|
|
|
///
|
2021-10-19 20:21:26 +08:00
|
|
|
/// let t = Scale2::new(10.0, 20.0);
|
2021-10-19 20:05:51 +08:00
|
|
|
/// let expected = Matrix3::new(1.0, 0.0, 10.0,
|
|
|
|
/// 0.0, 1.0, 20.0,
|
|
|
|
/// 0.0, 0.0, 1.0);
|
|
|
|
/// assert_eq!(t.to_homogeneous(), expected);
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
#[must_use]
|
|
|
|
pub fn to_homogeneous(&self) -> OMatrix<T, DimNameSum<Const<D>, U1>, DimNameSum<Const<D>, U1>>
|
|
|
|
where
|
2021-10-19 21:55:06 +08:00
|
|
|
T: Zero + One + ClosedAdd + Clone,
|
2021-10-19 20:05:51 +08:00
|
|
|
Const<D>: DimNameAdd<U1>,
|
2021-10-19 21:55:06 +08:00
|
|
|
DefaultAllocator: Allocator<T, DimNameSum<Const<D>, U1>, DimNameSum<Const<D>, U1>> + Allocator<T, DimNameSum<Const<D>, U1>, U1>,
|
2021-10-19 20:05:51 +08:00
|
|
|
{
|
2021-10-19 21:55:06 +08:00
|
|
|
let mut v = OVector::<T, DimNameSum<Const<D>, U1>>::zero();
|
|
|
|
for i in 0..D {
|
|
|
|
v[(i, 0)] = self.vector[(i, 0)].clone();
|
|
|
|
}
|
|
|
|
v[(D, 0)] = T::one();
|
|
|
|
return OMatrix::<T, DimNameSum<Const<D>, U1>, DimNameSum<Const<D>, U1>>::from_diagonal(&v);
|
2021-10-19 20:05:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Inverts `self` in-place.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
2021-10-19 20:21:26 +08:00
|
|
|
/// # use nalgebra::{Scale2, Scale3};
|
|
|
|
/// let t = Scale3::new(1.0, 2.0, 3.0);
|
|
|
|
/// let mut inv_t = Scale3::new(1.0, 2.0, 3.0);
|
2021-10-19 20:05:51 +08:00
|
|
|
/// inv_t.inverse_mut();
|
2021-10-19 20:21:26 +08:00
|
|
|
/// assert_eq!(t * inv_t, Scale3::identity());
|
|
|
|
/// assert_eq!(inv_t * t, Scale3::identity());
|
2021-10-19 20:05:51 +08:00
|
|
|
///
|
|
|
|
/// // Work in all dimensions.
|
2021-10-19 20:21:26 +08:00
|
|
|
/// let t = Scale2::new(1.0, 2.0);
|
|
|
|
/// let mut inv_t = Scale2::new(1.0, 2.0);
|
2021-10-19 20:05:51 +08:00
|
|
|
/// inv_t.inverse_mut();
|
2021-10-19 20:21:26 +08:00
|
|
|
/// assert_eq!(t * inv_t, Scale2::identity());
|
|
|
|
/// assert_eq!(inv_t * t, Scale2::identity());
|
2021-10-19 20:05:51 +08:00
|
|
|
/// ```
|
|
|
|
#[inline]
|
|
|
|
pub fn inverse_mut(&mut self)
|
|
|
|
where
|
2021-10-19 21:02:50 +08:00
|
|
|
T: ClosedDiv + One,
|
2021-10-19 20:05:51 +08:00
|
|
|
{
|
2021-10-19 21:02:50 +08:00
|
|
|
self.vector = self.inverse().vector;
|
2021-10-19 20:05:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 21:02:50 +08:00
|
|
|
impl<T: Scalar + ClosedMul, const D: usize> Scale<T, D> {
|
2021-10-19 20:05:51 +08:00
|
|
|
/// Translate the given point.
|
|
|
|
///
|
|
|
|
/// This is the same as the multiplication `self * pt`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
2021-10-19 20:21:26 +08:00
|
|
|
/// # use nalgebra::{Scale3, Point3};
|
|
|
|
/// let t = Scale3::new(1.0, 2.0, 3.0);
|
2021-10-19 20:05:51 +08:00
|
|
|
/// let transformed_point = t.transform_point(&Point3::new(4.0, 5.0, 6.0));
|
|
|
|
/// assert_eq!(transformed_point, Point3::new(5.0, 7.0, 9.0));
|
|
|
|
#[inline]
|
|
|
|
#[must_use]
|
|
|
|
pub fn transform_point(&self, pt: &Point<T, D>) -> Point<T, D> {
|
2021-10-19 21:02:50 +08:00
|
|
|
return self * pt;
|
2021-10-19 20:05:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 21:02:50 +08:00
|
|
|
impl<T: Scalar + ClosedDiv + ClosedMul + One, const D: usize> Scale<T, D> {
|
2021-10-19 20:21:26 +08:00
|
|
|
/// Translate the given point by the inverse of this Scale.
|
2021-10-19 20:05:51 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
2021-10-19 20:21:26 +08:00
|
|
|
/// # use nalgebra::{Scale3, Point3};
|
|
|
|
/// let t = Scale3::new(1.0, 2.0, 3.0);
|
2021-10-19 20:05:51 +08:00
|
|
|
/// let transformed_point = t.inverse_transform_point(&Point3::new(4.0, 5.0, 6.0));
|
|
|
|
/// assert_eq!(transformed_point, Point3::new(3.0, 3.0, 3.0));
|
|
|
|
#[inline]
|
|
|
|
#[must_use]
|
|
|
|
pub fn inverse_transform_point(&self, pt: &Point<T, D>) -> Point<T, D> {
|
2021-10-19 21:02:50 +08:00
|
|
|
return self.inverse() * pt;
|
2021-10-19 20:05:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + Eq, const D: usize> Eq for Scale<T, D> {}
|
2021-10-19 20:05:51 +08:00
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + PartialEq, const D: usize> PartialEq for Scale<T, D> {
|
2021-10-19 20:05:51 +08:00
|
|
|
#[inline]
|
2021-10-19 20:21:26 +08:00
|
|
|
fn eq(&self, right: &Scale<T, D>) -> bool {
|
2021-10-19 20:05:51 +08:00
|
|
|
self.vector == right.vector
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + AbsDiffEq, const D: usize> AbsDiffEq for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
T::Epsilon: Clone,
|
|
|
|
{
|
|
|
|
type Epsilon = T::Epsilon;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn default_epsilon() -> Self::Epsilon {
|
|
|
|
T::default_epsilon()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
|
|
|
|
self.vector.abs_diff_eq(&other.vector, epsilon)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + RelativeEq, const D: usize> RelativeEq for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
T::Epsilon: Clone,
|
|
|
|
{
|
|
|
|
#[inline]
|
|
|
|
fn default_max_relative() -> Self::Epsilon {
|
|
|
|
T::default_max_relative()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn relative_eq(
|
|
|
|
&self,
|
|
|
|
other: &Self,
|
|
|
|
epsilon: Self::Epsilon,
|
|
|
|
max_relative: Self::Epsilon,
|
|
|
|
) -> bool {
|
|
|
|
self.vector
|
|
|
|
.relative_eq(&other.vector, epsilon, max_relative)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + UlpsEq, const D: usize> UlpsEq for Scale<T, D>
|
2021-10-19 20:05:51 +08:00
|
|
|
where
|
|
|
|
T::Epsilon: Clone,
|
|
|
|
{
|
|
|
|
#[inline]
|
|
|
|
fn default_max_ulps() -> u32 {
|
|
|
|
T::default_max_ulps()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
|
|
|
|
self.vector.ulps_eq(&other.vector, epsilon, max_ulps)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Display
|
|
|
|
*
|
|
|
|
*/
|
2021-10-19 20:21:26 +08:00
|
|
|
impl<T: Scalar + fmt::Display, const D: usize> fmt::Display for Scale<T, D> {
|
2021-10-19 20:05:51 +08:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
let precision = f.precision().unwrap_or(3);
|
|
|
|
|
2021-10-19 20:21:26 +08:00
|
|
|
writeln!(f, "Scale {{")?;
|
2021-10-19 20:05:51 +08:00
|
|
|
write!(f, "{:.*}", precision, self.vector)?;
|
|
|
|
writeln!(f, "}}")
|
|
|
|
}
|
|
|
|
}
|