OCCNurbsCurve.closest_parameters_curve

OCCNurbsCurve.closest_parameters_curve(curve, return_distance=False)[source]

Computes the curve parameters where the curve is the closest to another given curve.

Parameters
  • curve (compas_occ.geometry.OCCNurbsCurve) – The curve to find the closest distance to.

  • return_distance (bool, optional) – Return the parameters as well as the minimum distance of the two curves.

Returns

  • (float, float) – The parameters on (curve, given curve) as tuple, if return_distance is false.

  • ((float, float), float) – The (parameters on (curve, given curve), distance) tuple, if return_distance is true.