use crate::math::{Isometry, Point, Vector};
use crate::shape::Segment;
use crate::shape::SupportMap;
#[cfg(feature = "dim3")]
use crate::shape::{ConvexPolygonalFeature, ConvexPolyhedron, FeatureId};
use na::RealField;
use na::{self, Unit};
#[cfg(feature = "dim3")]
use std::f64;
use std::mem;
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[repr(C)]
#[derive(PartialEq, Debug, Copy, Clone)]
pub struct Triangle<N: RealField> {
pub a: Point<N>,
pub b: Point<N>,
pub c: Point<N>,
}
#[derive(Copy, Clone, Debug)]
pub enum TrianglePointLocation<N: RealField> {
OnVertex(usize),
OnEdge(usize, [N; 2]),
OnFace(usize, [N; 3]),
OnSolid,
}
impl<N: RealField> TrianglePointLocation<N> {
pub fn barycentric_coordinates(&self) -> Option<[N; 3]> {
let mut bcoords = [N::zero(); 3];
match self {
TrianglePointLocation::OnVertex(i) => bcoords[*i] = N::one(),
TrianglePointLocation::OnEdge(i, uv) => {
let idx = match i {
0 => (0, 1),
1 => (1, 2),
2 => (0, 2),
_ => unreachable!(),
};
bcoords[idx.0] = uv[0];
bcoords[idx.1] = uv[1];
}
TrianglePointLocation::OnFace(_, uvw) => {
bcoords[0] = uvw[0];
bcoords[1] = uvw[1];
bcoords[2] = uvw[2];
}
TrianglePointLocation::OnSolid => {
return None;
}
}
Some(bcoords)
}
pub fn is_on_face(&self) -> bool {
if let TrianglePointLocation::OnFace(..) = *self {
true
} else {
false
}
}
}
impl<N: RealField> Triangle<N> {
#[inline]
pub fn new(a: Point<N>, b: Point<N>, c: Point<N>) -> Triangle<N> {
Triangle { a, b, c }
}
pub fn from_array(arr: &[Point<N>; 3]) -> &Triangle<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]
pub fn vertices(&self) -> &[Point<N>; 3] {
unsafe { mem::transmute(self) }
}
#[inline]
pub fn normal(&self) -> Option<Unit<Vector<N>>> {
Unit::try_new(self.scaled_normal(), N::default_epsilon())
}
#[inline]
pub fn edges(&self) -> [Segment<N>; 3] {
[
Segment::new(self.a, self.b),
Segment::new(self.b, self.c),
Segment::new(self.c, self.a),
]
}
#[inline]
pub fn transformed(&self, m: &Isometry<N>) -> Self {
Triangle::new(m * self.a, m * self.b, m * self.c)
}
#[inline]
pub fn edges_scaled_directions(&self) -> [Vector<N>; 3] {
[self.b - self.a, self.c - self.b, self.a - self.c]
}
#[inline]
pub fn scaled_normal(&self) -> Vector<N> {
let ab = self.b - self.a;
let ac = self.c - self.a;
ab.cross(&ac)
}
#[inline]
pub fn extents_on_dir(&self, dir: &Unit<Vector<N>>) -> (N, N) {
let a = self.a.coords.dot(dir);
let b = self.b.coords.dot(dir);
let c = self.c.coords.dot(dir);
if a > b {
if b > c {
(c, a)
} else if a > c {
(b, a)
} else {
(b, c)
}
} else {
if a > c {
(c, b)
} else if b > c {
(a, b)
} else {
(a, c)
}
}
}
#[cfg(feature = "dim3")]
#[inline]
pub fn tangent_cone_contains_dir(
&self,
feature: FeatureId,
m: &Isometry<N>,
dir: &Unit<Vector<N>>,
) -> bool {
let ls_dir = m.inverse_transform_vector(dir);
if let Some(normal) = self.normal() {
match feature {
FeatureId::Vertex(_) => {
false
}
FeatureId::Edge(_) => {
false
}
FeatureId::Face(0) => ls_dir.dot(&normal) <= N::zero(),
FeatureId::Face(1) => ls_dir.dot(&normal) >= N::zero(),
_ => panic!("Invalid feature ID."),
}
} else {
false
}
}
#[cfg(feature = "dim3")]
fn support_feature_id_toward(&self, local_dir: &Unit<Vector<N>>, eps: N) -> FeatureId {
if let Some(normal) = self.normal() {
let (seps, ceps) = eps.sin_cos();
let normal_dot = local_dir.dot(&*normal);
if normal_dot >= ceps {
FeatureId::Face(0)
} else if normal_dot <= -ceps {
FeatureId::Face(1)
} else {
let edges = self.edges();
let mut dots = [N::zero(); 3];
let dir1 = edges[0].direction();
if let Some(dir1) = dir1 {
dots[0] = dir1.dot(local_dir);
if dots[0].abs() < seps {
return FeatureId::Edge(0);
}
}
let dir2 = edges[1].direction();
if let Some(dir2) = dir2 {
dots[1] = dir2.dot(local_dir);
if dots[1].abs() < seps {
return FeatureId::Edge(1);
}
}
let dir3 = edges[2].direction();
if let Some(dir3) = dir3 {
dots[2] = dir3.dot(local_dir);
if dots[2].abs() < seps {
return FeatureId::Edge(2);
}
}
if dots[0] > N::zero() && dots[1] < N::zero() {
FeatureId::Vertex(1)
} else if dots[1] > N::zero() && dots[2] < N::zero() {
FeatureId::Vertex(2)
} else {
FeatureId::Vertex(0)
}
}
} else {
FeatureId::Vertex(0)
}
}
}
impl<N: RealField> SupportMap<N> for Triangle<N> {
#[inline]
fn local_support_point(&self, dir: &Vector<N>) -> Point<N> {
let d1 = self.a.coords.dot(dir);
let d2 = self.b.coords.dot(dir);
let d3 = self.c.coords.dot(dir);
if d1 > d2 {
if d1 > d3 {
self.a
} else {
self.c
}
} else {
if d2 > d3 {
self.b
} else {
self.c
}
}
}
}
#[cfg(feature = "dim3")]
impl<N: RealField> ConvexPolyhedron<N> for Triangle<N> {
fn vertex(&self, id: FeatureId) -> Point<N> {
match id.unwrap_vertex() {
0 => self.a,
1 => self.b,
2 => self.c,
_ => panic!("Triangle vertex index out of bounds."),
}
}
fn edge(&self, id: FeatureId) -> (Point<N>, Point<N>, FeatureId, FeatureId) {
match id.unwrap_edge() {
0 => (self.a, self.b, FeatureId::Vertex(0), FeatureId::Vertex(1)),
1 => (self.b, self.c, FeatureId::Vertex(1), FeatureId::Vertex(2)),
2 => (self.c, self.a, FeatureId::Vertex(2), FeatureId::Vertex(0)),
_ => panic!("Triangle edge index out of bounds."),
}
}
fn face(&self, id: FeatureId, face: &mut ConvexPolygonalFeature<N>) {
face.clear();
if let Some(normal) = self.normal() {
face.set_feature_id(id);
match id.unwrap_face() {
0 => {
face.push(self.a, FeatureId::Vertex(0));
face.push(self.b, FeatureId::Vertex(1));
face.push(self.c, FeatureId::Vertex(2));
face.push_edge_feature_id(FeatureId::Edge(0));
face.push_edge_feature_id(FeatureId::Edge(1));
face.push_edge_feature_id(FeatureId::Edge(2));
face.set_normal(normal);
}
1 => {
face.push(self.a, FeatureId::Vertex(0));
face.push(self.c, FeatureId::Vertex(2));
face.push(self.b, FeatureId::Vertex(1));
face.push_edge_feature_id(FeatureId::Edge(2));
face.push_edge_feature_id(FeatureId::Edge(1));
face.push_edge_feature_id(FeatureId::Edge(0));
face.set_normal(-normal);
}
_ => unreachable!(),
}
face.recompute_edge_normals();
} else {
face.push(self.a, FeatureId::Vertex(0));
face.set_feature_id(FeatureId::Vertex(0));
}
}
fn feature_normal(&self, _: FeatureId) -> Unit<Vector<N>> {
if let Some(normal) = self.normal() {
normal
} else {
Vector::y_axis()
}
}
fn support_face_toward(
&self,
m: &Isometry<N>,
dir: &Unit<Vector<N>>,
face: &mut ConvexPolygonalFeature<N>,
) {
let normal = self.scaled_normal();
if normal.dot(&*dir) >= na::zero() {
ConvexPolyhedron::<N>::face(self, FeatureId::Face(0), face);
} else {
ConvexPolyhedron::<N>::face(self, FeatureId::Face(1), face);
}
face.transform_by(m)
}
fn support_feature_toward(
&self,
transform: &Isometry<N>,
dir: &Unit<Vector<N>>,
eps: N,
out: &mut ConvexPolygonalFeature<N>,
) {
out.clear();
let tri = self.transformed(transform);
let feature = tri.support_feature_id_toward(dir, eps);
match feature {
FeatureId::Vertex(_) => {
let v = tri.vertex(feature);
out.push(v, feature);
out.set_feature_id(feature);
}
FeatureId::Edge(_) => {
let (a, b, fa, fb) = tri.edge(feature);
out.push(a, fa);
out.push(b, fb);
out.push_edge_feature_id(feature);
out.set_feature_id(feature);
}
FeatureId::Face(_) => tri.face(feature, out),
_ => unreachable!(),
}
}
fn support_feature_id_toward(&self, local_dir: &Unit<Vector<N>>) -> FeatureId {
self.support_feature_id_toward(local_dir, na::convert(f64::consts::PI / 180.0))
}
}