26 lines
458 B
Rust
26 lines
458 B
Rust
use std::mem;
|
|
use std::ops::{Deref, DerefMut};
|
|
|
|
use alga::general::Real;
|
|
|
|
use core::coordinates::IJKW;
|
|
|
|
use geometry::Quaternion;
|
|
|
|
|
|
impl<N: Real> Deref for Quaternion<N> {
|
|
type Target = IJKW<N>;
|
|
|
|
#[inline]
|
|
fn deref(&self) -> &Self::Target {
|
|
unsafe { mem::transmute(self) }
|
|
}
|
|
}
|
|
|
|
impl<N: Real> DerefMut for Quaternion<N> {
|
|
#[inline]
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
unsafe { mem::transmute(self) }
|
|
}
|
|
}
|