jagua_rs/geometry/
d_transformation.rsuse std::borrow::Borrow;
use std::fmt::Display;
use ordered_float::NotNan;
use crate::fsize;
use crate::geometry::transformation::Transformation;
#[derive(Clone, Debug, PartialEq, Eq, Hash, Copy)]
pub struct DTransformation {
pub rotation: NotNan<fsize>,
pub translation: (NotNan<fsize>, NotNan<fsize>),
}
impl DTransformation {
pub fn new(rotation: fsize, translation: (fsize, fsize)) -> Self {
Self {
rotation: NotNan::new(rotation).expect("rotation is NaN"),
translation: (
NotNan::new(translation.0).expect("translation.0 is NaN"),
NotNan::new(translation.1).expect("translation.1 is NaN"),
),
}
}
pub const fn empty() -> Self {
const _0: NotNan<fsize> = unsafe { NotNan::new_unchecked(0.0) };
Self {
rotation: _0,
translation: (_0, _0),
}
}
pub fn rotation(&self) -> fsize {
self.rotation.into()
}
pub fn translation(&self) -> (fsize, fsize) {
(self.translation.0.into(), self.translation.1.into())
}
pub fn compose(&self) -> Transformation {
Transformation::from_dt(self)
}
}
impl<T> From<T> for DTransformation
where
T: Borrow<Transformation>,
{
fn from(t: T) -> Self {
t.borrow().decompose()
}
}
impl Display for DTransformation {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"r: {:.3}°, t: ({:.3}, {:.3})",
self.rotation.to_degrees(),
self.translation.0.into_inner(),
self.translation.1.into_inner()
)
}
}