Click or drag to resize

CurveClosestPoints Method (Curve, Point3d, Point3d)

Gets closest points between this and another curves.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public bool ClosestPoints(
	Curve otherCurve,
	out Point3d pointOnThisCurve,
	out Point3d pointOnOtherCurve
)

Parameters

otherCurve
Type: Rhino.GeometryCurve
The other curve.
pointOnThisCurve
Type: Rhino.GeometryPoint3d
The point on this curve. This out parameter is assigned during this call.
pointOnOtherCurve
Type: Rhino.GeometryPoint3d
The point on other curve. This out parameter is assigned during this call.

Return Value

Type: Boolean
true on success; false on error.
See Also