38 #ifndef COAL_INTERSECT_H
39 #define COAL_INTERSECT_H
50 static bool buildTrianglePlane(
const Vec3s& v1,
const Vec3s& v2,
55 template <
typename _Scalar>
59 typedef Eigen::Matrix<Scalar, 3, 1> Vec3;
61 struct ProjectResult {
64 Scalar parameterization[4];
72 ProjectResult() : sqr_distance(-1), encode(0) {}
76 static ProjectResult projectLine(
const Vec3& a,
const Vec3& b,
const Vec3& p);
79 static ProjectResult projectTriangle(
const Vec3& a,
const Vec3& b,
80 const Vec3& c,
const Vec3& p);
83 static ProjectResult projectTetrahedra(
const Vec3& a,
const Vec3& b,
84 const Vec3& c,
const Vec3& d,
88 static ProjectResult projectLineOrigin(
const Vec3& a,
const Vec3& b);
91 static ProjectResult projectTriangleOrigin(
const Vec3& a,
const Vec3& b,
95 static ProjectResult projectTetrahedraOrigin(
const Vec3& a,
const Vec3& b,
96 const Vec3& c,
const Vec3& d);
#define COAL_DLLAPI
Definition: config.hh:88
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
Eigen::Matrix< Scalar, 3, 3 > Matrix3s
Definition: data_types.h:74