use crate::math::{Matrix, Point};
use crate::shape::{Segment, Triangle};
use na::RealField;
use std::mem;
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct Tetrahedron<N: RealField> {
pub a: Point<N>,
pub b: Point<N>,
pub c: Point<N>,
pub d: Point<N>,
}
#[derive(Copy, Clone, Debug)]
pub enum TetrahedronPointLocation<N: RealField> {
OnVertex(usize),
OnEdge(usize, [N; 2]),
OnFace(usize, [N; 3]),
OnSolid,
}
impl<N: RealField> TetrahedronPointLocation<N> {
pub fn barycentric_coordinates(&self) -> Option<[N; 4]> {
let mut bcoords = [N::zero(); 4];
match self {
TetrahedronPointLocation::OnVertex(i) => bcoords[*i] = N::one(),
TetrahedronPointLocation::OnEdge(i, uv) => {
let idx = Tetrahedron::<N>::edge_ids(*i);
bcoords[idx.0] = uv[0];
bcoords[idx.1] = uv[1];
}
TetrahedronPointLocation::OnFace(i, uvw) => {
let idx = Tetrahedron::<N>::face_ids(*i);
bcoords[idx.0] = uvw[0];
bcoords[idx.1] = uvw[1];
bcoords[idx.2] = uvw[2];
}
TetrahedronPointLocation::OnSolid => {
return None;
}
}
Some(bcoords)
}
pub fn same_feature_as(&self, other: &TetrahedronPointLocation<N>) -> bool {
match (*self, *other) {
(TetrahedronPointLocation::OnVertex(i), TetrahedronPointLocation::OnVertex(j)) => {
i == j
}
(TetrahedronPointLocation::OnEdge(i, _), TetrahedronPointLocation::OnEdge(j, _)) => {
i == j
}
(TetrahedronPointLocation::OnFace(i, _), TetrahedronPointLocation::OnFace(j, _)) => {
i == j
}
(TetrahedronPointLocation::OnSolid, TetrahedronPointLocation::OnSolid) => true,
_ => false,
}
}
}
impl<N: RealField> Tetrahedron<N> {
#[inline]
pub fn new(a: Point<N>, b: Point<N>, c: Point<N>, d: Point<N>) -> Tetrahedron<N> {
Tetrahedron { a, b, c, d }
}
pub fn from_array(arr: &[Point<N>; 4]) -> &Tetrahedron<N> {
unsafe { mem::transmute(arr) }
}
#[inline]
#[deprecated(note = "use the `self.a` public field directly.")]
pub fn a(&self) -> &Point<N> {
&self.a
}
#[inline]
#[deprecated(note = "use the `self.b` public field directly.")]
pub fn b(&self) -> &Point<N> {
&self.b
}
#[inline]
#[deprecated(note = "use the `self.c` public field directly.")]
pub fn c(&self) -> &Point<N> {
&self.c
}
#[inline]
#[deprecated(note = "use the `self.d` public field directly.")]
pub fn d(&self) -> &Point<N> {
&self.d
}
pub fn face(&self, i: usize) -> Triangle<N> {
match i {
0 => Triangle::new(self.a, self.b, self.c),
1 => Triangle::new(self.a, self.b, self.d),
2 => Triangle::new(self.a, self.c, self.d),
3 => Triangle::new(self.b, self.c, self.d),
_ => panic!("Tetrahedron face index out of bounds (must be < 4."),
}
}
pub fn face_ids(i: usize) -> (usize, usize, usize) {
match i {
0 => (0, 1, 2),
1 => (0, 1, 3),
2 => (0, 2, 3),
3 => (1, 2, 3),
_ => panic!("Tetrahedron face index out of bounds (must be < 4."),
}
}
pub fn edge(&self, i: usize) -> Segment<N> {
match i {
0 => Segment::new(self.a, self.b),
1 => Segment::new(self.a, self.c),
2 => Segment::new(self.a, self.d),
3 => Segment::new(self.b, self.c),
4 => Segment::new(self.b, self.d),
5 => Segment::new(self.c, self.d),
_ => panic!("Tetrahedron edge index out of bounds (must be < 6)."),
}
}
pub fn edge_ids(i: usize) -> (usize, usize) {
match i {
0 => (0, 1),
1 => (0, 2),
2 => (0, 3),
3 => (1, 2),
4 => (1, 3),
5 => (2, 3),
_ => panic!("Tetrahedron edge index out of bounds (must be < 6)."),
}
}
pub fn barycentric_coordinates(&self, p: &Point<N>) -> Option<[N; 4]> {
let ab = self.b - self.a;
let ac = self.c - self.a;
let ad = self.d - self.a;
let m = Matrix::new(ab.x, ac.x, ad.x, ab.y, ac.y, ad.y, ab.z, ac.z, ad.z);
m.try_inverse().map(|im| {
let bcoords = im * (p - self.a);
[
N::one() - bcoords.x - bcoords.y - bcoords.z,
bcoords.x,
bcoords.y,
bcoords.z,
]
})
}
}