Home
last modified time | relevance | path

Searched refs:IsSamePoint (Results 1 – 3 of 3) sorted by relevance

/dports/graphics/blender/blender-2.91.0/release/scripts/addons/curve_tools/
H A Dintersections.py104 if (mathematics.IsSamePoint(P0, worldPoint1, limitDistance)) or \
105 (mathematics.IsSamePoint(P1, worldPoint1, limitDistance)):
115 if (mathematics.IsSamePoint(Q0, worldPoint2, limitDistance)) or \
116 (mathematics.IsSamePoint(Q1, worldPoint2, limitDistance)):
193 if (mathematics.IsSamePoint(P0, worldPoint1, limitDistance)) or \
194 (mathematics.IsSamePoint(P1, worldPoint1, limitDistance)):
204 if (mathematics.IsSamePoint(Q0, worldPoint2, limitDistance)) or \
205 (mathematics.IsSamePoint(Q1, worldPoint2, limitDistance)):
282 if (mathematics.IsSamePoint(P0, worldPoint1, limitDistance)) or \
283 (mathematics.IsSamePoint(P1, worldPoint1, limitDistance)):
[all …]
H A Dcurves.py562 …if mathematics.IsSamePoint(currEndPoint, nextStartPoint, threshold): return [currentSpline, nextSp…
566 …if mathematics.IsSamePoint(nextEndPoint, currStartPoint, threshold): return [nextSpline, currentSp…
578 …if mathematics.IsSamePoint(currEndPoint, nextStartPoint, threshold): return [currentSpline, nextSp…
582 …if mathematics.IsSamePoint(nextEndPoint, currStartPoint, threshold): return [nextSpline, currentSp…
584 if mathematics.IsSamePoint(currEndPoint, nextEndPoint, threshold):
589 if mathematics.IsSamePoint(currStartPoint, nextStartPoint, threshold):
H A Dmathematics.py4 def IsSamePoint(v31, v32, limitDistance): function
89 if not IsSamePoint(pointP, pointQ, limitDistance): return None