OCCNurbsCurve.closest_points_curve
- OCCNurbsCurve.closest_points_curve(curve, return_distance=False)[source]
Computes the points on curves where the curve is the closest to another given curve.
- Parameters
curve (NurbsCurve) – The curve to find the closest distance to.
return_distance (bool, optional) – Return the points as well as the minimum distance of the two curves.
- Returns
(
compas.geometry.Point
,compas.geometry.Point
) – The points on (curve, given curve) as tuple, ifreturn_distance
is false.((
compas.geometry.Point
,compas.geometry.Point
),float
) – The (points on (curve, given curve), distance) tuple, ifreturn_distance
is true.