nalgebra/src/geometry/translation_coordinates.rs

40 lines
1.0 KiB
Rust
Raw Normal View History

use std::ops::{Deref, DerefMut};
2019-03-23 21:29:07 +08:00
use crate::base::coordinates::{X, XY, XYZ, XYZW, XYZWA, XYZWAB};
use crate::base::Scalar;
2019-03-23 21:29:07 +08:00
use crate::geometry::Translation;
/*
*
* Give coordinates to Translation{1 .. 6}
*
*/
macro_rules! deref_impl(
($D: expr, $Target: ident $(, $comps: ident)*) => {
2021-04-11 17:00:38 +08:00
impl<T: Scalar> Deref for Translation<T, $D> {
type Target = $Target<T>;
#[inline]
fn deref(&self) -> &Self::Target {
2021-06-18 15:45:37 +08:00
unsafe { &*(self as *const Translation<T, $D> as *const Self::Target) }
}
}
2021-06-18 15:45:37 +08:00
impl<T: Scalar> DerefMut for Translation<T, $D> {
#[inline]
fn deref_mut(&mut self) -> &mut Self::Target {
2021-06-18 15:45:37 +08:00
unsafe { &mut *(self as *mut Translation<T, $D> as *mut Self::Target) }
}
}
}
);
deref_impl!(1, X, x);
deref_impl!(2, XY, x, y);
deref_impl!(3, XYZ, x, y, z);
deref_impl!(4, XYZW, x, y, z, w);
deref_impl!(5, XYZWA, x, y, z, w, a);
deref_impl!(6, XYZWAB, x, y, z, w, a, b);