use std::mem; use std::ops::{Deref, DerefMut}; use crate::base::coordinates::{X, XY, XYZ, XYZW, XYZWA, XYZWAB}; use crate::base::Scalar; use crate::geometry::Translation; /* * * Give coordinates to Translation{1 .. 6} * */ macro_rules! deref_impl( ($D: expr, $Target: ident $(, $comps: ident)*) => { impl Deref for Translation // where DefaultAllocator: Allocator { type Target = $Target; #[inline] fn deref(&self) -> &Self::Target { unsafe { mem::transmute(self) } } } impl DerefMut for Translation // where DefaultAllocator: Allocator { #[inline] fn deref_mut(&mut self) -> &mut Self::Target { unsafe { mem::transmute(self) } } } } ); 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);