MeshLib C++ Docs
Loading...
Searching...
No Matches
MRClosestPointInTriangle.h
Go to the documentation of this file.
1
16#pragma once
17
18#include "MRVector3.h"
19#include "MRTriPoint.h"
20#include "MRPch/MRBindingMacros.h"
21
22namespace MR
23{
26
27
28template <typename T>
29std::pair<Vector3<T>, TriPoint<T>> closestPointInTriangle( const Vector3<T>& p, const Vector3<T>& a, const Vector3<T>& b, const Vector3<T>& c )
30{
32 const Vector3<T> ab = b - a;
33 const Vector3<T> ac = c - a;
34 const Vector3<T> ap = p - a;
35
36 const T d1 = dot( ab, ap );
37 const T d2 = dot( ac, ap );
38 if ( d1 <= 0 && d2 <= 0 )
39 return { a, { 0, 0 } };
40
41 const Vector3<T> bp = p - b;
42 const T d3 = dot( ab, bp );
43 const T d4 = dot( ac, bp );
44 if ( d3 >= 0 && d4 <= d3 )
45 return { b, { 1, 0 } };
46
47 const Vector3<T> cp = p - c;
48 const T d5 = dot( ab, cp );
49 const T d6 = dot( ac, cp );
50 if ( d6 >= 0 && d5 <= d6 )
51 return { c, { 0, 1 } };
52
53 const T vc = d1 * d4 - d3 * d2;
54 if ( vc <= 0 && d1 >= 0 && d3 <= 0 )
55 {
56 const T v = d1 / ( d1 - d3 );
57 return { a + v * ab, { v, 0 } };
58 }
59
60 const T vb = d5 * d2 - d1 * d6;
61 if ( vb <= 0 && d6 <= 0 && d2 >= 0 )
62 {
63 const T v = d2 / ( d2 - d6 );
64 return { a + v * ac, { 0, v } };
65 }
66
67 const T va = d3 * d6 - d5 * d4;
68 if ( va <= 0 )
69 {
71 if ( d4 < d3 )
72 return { b, { 1, 0 } };
73
75 if ( d5 < d6 )
76 return { c, { 0, 1 } };
77
79 const T v = ( d4 - d3 ) / ( ( d4 - d3 ) + ( d5 - d6 ) );
80 return { b + v * ( c - b ), { 1 - v, v } };
81 }
82
83 assert( va > 0 && vb > 0 && vc > 0 );
84 const T denom = 1 / ( va + vb + vc );
85 const T v = vb * denom;
86 const T w = vc * denom;
87 return { a + v * ab + w * ac, { v, w } };
88}
89
90MR_BIND_TEMPLATE( std::pair<Vector3f, TriPointf> closestPointInTriangle( const Vector3f& p, const Vector3f& a, const Vector3f& b, const Vector3f& c ) );
91MR_BIND_TEMPLATE( std::pair<Vector3d, TriPointd> closestPointInTriangle( const Vector3d& p, const Vector3d& a, const Vector3d& b, const Vector3d& c ) );
92
93}
auto dot(const Matrix2< T > &a, const Matrix2< T > &b) -> decltype(dot(a.x, b.x))
double-dot product: x = a : b
Definition MRMatrix2.h:142
MR_BIND_TEMPLATE(std::pair< Vector3f, TriPointf > closestPointInTriangle(const Vector3f &p, const Vector3f &a, const Vector3f &b, const Vector3f &c))
std::pair< Vector3< T >, TriPoint< T > > closestPointInTriangle(const Vector3< T > &p, const Vector3< T > &a, const Vector3< T > &b, const Vector3< T > &c)
Definition MRClosestPointInTriangle.h:29
only for bindings generation
Definition MRCameraOrientationPlugin.h:8
encodes a point inside a triangle using barycentric coordinates
Definition MRTriPoint.h:19
Definition MRVector3.h:33