MeshLib
 
Loading...
Searching...
No Matches
MRTriangleIntersection.h
Go to the documentation of this file.
1#pragma once
2
3#include "MRVector3.h"
5#include "MRTriPoint.h"
6
7#include <algorithm>
8#include <optional>
9
10namespace MR
11{
12
16
18{
19 // barycentric representation
20 TriPointf bary;
21 // distance from ray origin to p in dir length units
22 float t = 0;
23 TriIntersectResult(float U, float V, float dist)
24 {
25 bary.a = U; bary.b = V; t = dist;
26 }
27};
28
31template <typename T>
35)
36{
37 const auto abcd = mixed( a - d, b - d, c - d );
38 const auto abce = mixed( a - e, b - e, c - e );
39 const auto abcf = mixed( a - f, b - f, c - f );
40 const auto abc_de = abcd * abce >= 0; // segment DE is located at one side of the plane ABC
41 const auto abc_fd = abcf * abcd >= 0; // segment FD is located at one side of the plane ABC
42
43 if ( abc_de && abc_fd && abce * abcf >= 0 )
44 return false; // triangle DEF is located at one side of the plane ABC
45
46 const auto defa = mixed( d - a, e - a, f - a );
47 const auto defb = mixed( d - b, e - b, f - b );
48 const auto defc = mixed( d - c, e - c, f - c );
49 const auto def_ab = defa * defb >= 0; // segment AB is located at one side of the plane DEF
50 const auto def_ca = defc * defa >= 0; // segment CA is located at one side of the plane DEF
51
52 if ( def_ab && def_ca && defb * defc >= 0 )
53 return false; // triangle ABC is located at one side of the plane DEF
54
55 if ( abc_de )
56 std::swap( d, f );
57 else if( abc_fd )
58 std::swap( d, e );
59 // now segments DE and FD are crossed by the plane ABC: D at one side and EF at the other
60
61 if ( def_ab )
62 std::swap( a, c );
63 else if ( def_ca )
64 std::swap( a, b );
65 // now segments AB and CA are crossed by the plane DEF: A at one side and BC at the other
66
67 const auto abde = mixed( a - e, b - e, d - e );
68 const auto abdf = mixed( a - f, b - f, d - f );
69
70 if ( abde * abdf < 0 )
71 return true; // AB segment penetrates triangle DEF since points E and F are at distinct sides of ABD
72
73 const auto acde = mixed( a - e, c - e, d - e );
74
75 if ( abde * acde < 0 )
76 return true; // DE segment penetrates triangle ABC since points B and C are at distinct sides of ADE
77
78 if ( abdf == 0 && acde == 0 )
79 return true; // AB and DF segments are in the same plane, and AC and DE segments are in other same plane => triangles intersect, but no edge intersect the interior of other triangle
80
81 const auto acdf = mixed( a - f, c - f, d - f );
82
83 if ( acde * acdf < 0 )
84 return true; // AC segment penetrates triangle DEF since points E and F are at distinct sides of ACD
85
86 if ( abdf * acdf < 0 )
87 return true; // DF segment penetrates triangle ABC since points B and C are at distinct sides of ADF
88
89 if ( abde == 0 && acdf == 0 )
90 return true; // AB and DE segments are in the same plane, and AC and DF segments are in other same plane => triangles intersect, but no edge intersect the interior of other triangle
91
92 return false;
93}
94
96template <typename T>
98 const Vector3<T> & x, const Vector3<T> & y, const Vector3<T> & z,
99 const Vector3<T> & u, const Vector3<T> & v, const Vector3<T> & w,
100 Vector3<T> d // approximate normal of the plane
101)
102{
103 const auto xy = ( y - x ).normalized();
104 d = ( d - xy * dot( xy, d ) ).normalized();
105 // now d is orthogonal to xy
106 const auto dz = dot( d, z - x );
107 return
108 dz * dot( d, u - x ) < 0 &&
109 dz * dot( d, v - x ) < 0 &&
110 dz * dot( d, w - x ) < 0;
111}
112
115template <typename T>
117 const Vector3<T> & a, const Vector3<T> & b, const Vector3<T> & c,
118 const Vector3<T> & d, const Vector3<T> & e, const Vector3<T> & f
119)
120{
121 if ( !doTrianglesIntersect( a, b, c, d, e, f ) )
122 return false;
123
124 // direction from center to center
125 const auto dir = a + b + c - d - e - f;
126
127 return
128 !doesEdgeXySeparate( a, b, c, d, e, f, dir ) &&
129 !doesEdgeXySeparate( b, c, a, d, e, f, dir ) &&
130 !doesEdgeXySeparate( c, a, b, d, e, f, dir ) &&
131 !doesEdgeXySeparate( d, e, f, a, b, c, dir ) &&
132 !doesEdgeXySeparate( e, f, d, a, b, c, dir ) &&
133 !doesEdgeXySeparate( f, d, e, a, b, c, dir );
134}
135
137template <typename T>
139 const Vector3<T> & a, const Vector3<T> & b, const Vector3<T> & c,
140 const Vector3<T> & d, const Vector3<T> & e
141)
142{
143 const auto dabe = mixed( d - e, a - e, b - e );
144 const auto dbce = mixed( d - e, b - e, c - e );
145 if ( dabe * dbce <= 0 )
146 return false; // segment AC is located at one side of the plane DEB
147
148 const auto dcae = mixed( d - e, c - e, a - e );
149 if ( dbce * dcae <= 0 )
150 return false; // segment AB is located at one side of the plane DEC
151
152 if ( dcae * dabe <= 0 )
153 return false; // segment BC is located at one side of the plane DEA
154
155 return true;
156}
157
159template <typename T>
161 const Vector3<T> & a, const Vector3<T> & b, const Vector3<T> & c,
162 const Vector3<T> & d, const Vector3<T> & e
163)
164{
165 const auto abcd = mixed( a - d, b - d, c - d );
166 const auto abce = mixed( a - e, b - e, c - e );
167 if ( abcd * abce >= 0 )
168 return false; // segment DE is located at one side of the plane ABC
169 return doTriangleLineIntersect( a, b, c, d, e );
170}
171
173template <typename T>
175 const Vector3<T>& a, const Vector3<T>& b, const Vector3<T>& c,
176 const Vector3<T>& d, const Vector3<T>& e
177)
178{
179 const auto abcd = std::abs( mixed( a - d, b - d, c - d ) );
180 const auto abce = std::abs( mixed( a - e, b - e, c - e ) );
181 auto r = std::clamp( abcd / ( abcd + abce ), T( 0 ), T( 1 ) );
182 return r * e + ( 1 - r ) * d;
183}
184
185template <typename T>
186std::optional<TriIntersectResult> rayTriangleIntersect_( const Vector3<T>& oriA, const Vector3<T>& oriB, const Vector3<T>& oriC,
187 const IntersectionPrecomputes<T>& prec )
188{
189 const T& Sx = prec.Sx;
190 const T& Sy = prec.Sy;
191 const T& Sz = prec.Sz;
192
193 const T Ax = oriA[prec.idxX] - Sx * oriA[prec.maxDimIdxZ];
194 const T Ay = oriA[prec.idxY] - Sy * oriA[prec.maxDimIdxZ];
195 const T Bx = oriB[prec.idxX] - Sx * oriB[prec.maxDimIdxZ];
196 const T By = oriB[prec.idxY] - Sy * oriB[prec.maxDimIdxZ];
197 const T Cx = oriC[prec.idxX] - Sx * oriC[prec.maxDimIdxZ];
198 const T Cy = oriC[prec.idxY] - Sy * oriC[prec.maxDimIdxZ];
199
200 // due to fused multiply-add (FMA): (A*B-A*B) can be different from zero, so we need epsilon
201 const T eps = std::numeric_limits<T>::epsilon() * std::max( { Ax, Bx, Cx, Ay, By, Cy } );
202 T U = Cx * By - Cy * Bx;
203 T V = Ax * Cy - Ay * Cx;
204 T W = Bx * Ay - By * Ax;
205
206 if( U < -eps || V < -eps || W < -eps )
207 {
208 if( U > eps || V > eps || W > eps )
209 {
210 // U,V,W have clearly different signs, so the ray misses the triangle
211 return std::nullopt;
212 }
213 }
214
215 T det = U + V + W;
216 if( det == T( 0 ) )
217 return std::nullopt;
218 const T Az = Sz * oriA[prec.maxDimIdxZ];
219 const T Bz = Sz * oriB[prec.maxDimIdxZ];
220 const T Cz = Sz * oriC[prec.maxDimIdxZ];
221 const T t = U * Az + V * Bz + W * Cz;
222
223 auto invDet = T( 1 ) / det;
224 return TriIntersectResult( float( V * invDet ), float( W * invDet ), float( t * invDet ) );
225}
226
227inline std::optional<TriIntersectResult> rayTriangleIntersect( const Vector3f& oriA, const Vector3f& oriB, const Vector3f& oriC,
229{
230 return rayTriangleIntersect_( oriA, oriB, oriC, prec );
231}
232inline std::optional<TriIntersectResult> rayTriangleIntersect( const Vector3f& oriA, const Vector3f& oriB, const Vector3f& oriC,
233 const Vector3f& dir )
234{
235 const IntersectionPrecomputes<float> prec( dir );
236 return rayTriangleIntersect_( oriA, oriB, oriC, prec );
237}
238
239inline std::optional<TriIntersectResult> rayTriangleIntersect( const Vector3d& oriA, const Vector3d& oriB, const Vector3d& oriC,
241{
242 return rayTriangleIntersect_( oriA, oriB, oriC, prec );
243}
244
245inline std::optional<TriIntersectResult> rayTriangleIntersect( const Vector3d& oriA, const Vector3d& oriB, const Vector3d& oriC,
246 const Vector3d& dir )
247{
248 const IntersectionPrecomputes<double> prec( dir );
249 return rayTriangleIntersect_( oriA, oriB, oriC, prec );
250}
251
253
254} // namespace MR
represents a 3-dimentional float-typed vector
Definition MRDotNet/MRVector3.h:8
int idxY
Definition MRIntersectionPrecomputes.h:123
T Sx
precomputed factors
Definition MRIntersectionPrecomputes.h:129
int idxX
Definition MRIntersectionPrecomputes.h:122
T Sz
Definition MRIntersectionPrecomputes.h:129
T Sy
Definition MRIntersectionPrecomputes.h:129
int maxDimIdxZ
Definition MRIntersectionPrecomputes.h:121
MRMESH_API TriangleSegmentIntersectResult doTriangleSegmentIntersect(const std::array< PreciseVertCoords, 5 > &vs)
bool doTrianglesIntersect(Vector3< T > a, Vector3< T > b, Vector3< T > c, Vector3< T > d, Vector3< T > e, Vector3< T > f)
Definition MRTriangleIntersection.h:32
bool doesEdgeXySeparate(const Vector3< T > &x, const Vector3< T > &y, const Vector3< T > &z, const Vector3< T > &u, const Vector3< T > &v, const Vector3< T > &w, Vector3< T > d)
returns true if a plane containing edge XY separates point Z from triangle UVW
Definition MRTriangleIntersection.h:97
std::optional< TriIntersectResult > rayTriangleIntersect(const Vector3f &oriA, const Vector3f &oriB, const Vector3f &oriC, const IntersectionPrecomputes< float > &prec)
Definition MRTriangleIntersection.h:227
std::optional< TriIntersectResult > rayTriangleIntersect_(const Vector3< T > &oriA, const Vector3< T > &oriB, const Vector3< T > &oriC, const IntersectionPrecomputes< T > &prec)
Definition MRTriangleIntersection.h:186
bool doTriangleLineIntersect(const Vector3< T > &a, const Vector3< T > &b, const Vector3< T > &c, const Vector3< T > &d, const Vector3< T > &e)
checks whether triangle ABC and infinite line DE intersect
Definition MRTriangleIntersection.h:138
Vector3< T > findTriangleSegmentIntersection(const Vector3< T > &a, const Vector3< T > &b, const Vector3< T > &c, const Vector3< T > &d, const Vector3< T > &e)
this function input should have intersection
Definition MRTriangleIntersection.h:174
bool doTrianglesIntersectExt(const Vector3< T > &a, const Vector3< T > &b, const Vector3< T > &c, const Vector3< T > &d, const Vector3< T > &e, const Vector3< T > &f)
Definition MRTriangleIntersection.h:116
Definition MRCameraOrientationPlugin.h:8
Definition MRMesh/MRMeshFwd.h:373
Definition MRTriangleIntersection.h:18
TriIntersectResult(float U, float V, float dist)
Definition MRTriangleIntersection.h:23
float t
Definition MRTriangleIntersection.h:22
TriPointf bary
Definition MRTriangleIntersection.h:20
Definition MRMesh/MRVector3.h:19