You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/analysis/interpolation/DualEdgeTriangulation.sip
+3-3
Original file line number
Diff line number
Diff line change
@@ -87,10 +87,10 @@ class DualEdgeTriangulation: Triangulation
87
87
/**returns the number of a HalfEdge from a triangle in which 'point' is in. If the number -10 is returned, this means, that 'point' is outside the convex hull. If -5 is returned, then numerical problems with the leftOfTest occured (and the value of the possible edge is stored in the variable 'mUnstableEdge'. -20 means, that the inserted point is exactly on an edge (the number is stored in the variable 'mEdgeWithPoint'). -25 means, that the point is already in the triangulation (the number of the point is stored in the member 'mTwiceInsPoint'. If -100 is returned, this means that something else went wrong*/
88
88
int baseEdgeOfTriangle( Point3D* point );
89
89
/**Checks, if 'edge' has to be swapped because of the empty circle criterion. If so, doSwap(...) is called.*/
90
-
bool checkSwap( unsigned int edge, unsigned int recursivDeep );
90
+
bool checkSwap( unsigned int edge, unsigned int recursiveDeep );
91
91
/**Swaps 'edge' and test recursively for other swaps (delaunay criterion)*/
92
-
void doSwap( unsigned int edge, unsigned int recursivDeep );
93
-
/**Swaps 'edge' and does no recursiv testing*/
92
+
void doSwap( unsigned int edge, unsigned int recursiveDeep );
93
+
/**Swaps 'edge' and does no recursive testing*/
94
94
void doOnlySwap( unsigned int edge );
95
95
/**Returns true, if it is possible to swap an edge, otherwise false(concave quad or edge on (or outside) the convex hull)*/
0 commit comments