Curve.ComputeClosestPoints Method

CurveComputeClosestPoints Method


Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public void ComputeClosestPoints(
	Curve otherCurve,
	bool withinThisCurveBounds,
	bool withinOtherCurveBounds,
	bool returnAllCriticalPnts,
	out IList<ClosestPointsPairBetweenTwoCurves> resultList
)
Public Sub ComputeClosestPoints ( 
	otherCurve As Curve,
	withinThisCurveBounds As Boolean,
	withinOtherCurveBounds As Boolean,
	returnAllCriticalPnts As Boolean,
	<OutAttribute> ByRef resultList As IList(Of ClosestPointsPairBetweenTwoCurves)
)
public:
void ComputeClosestPoints(
	Curve^ otherCurve, 
	bool withinThisCurveBounds, 
	bool withinOtherCurveBounds, 
	bool returnAllCriticalPnts, 
	[OutAttribute] IList<ClosestPointsPairBetweenTwoCurves^>^% resultList
)
member ComputeClosestPoints : 
        otherCurve : Curve * 
        withinThisCurveBounds : bool * 
        withinOtherCurveBounds : bool * 
        returnAllCriticalPnts : bool * 
        resultList : IList<ClosestPointsPairBetweenTwoCurves> byref -> unit 

Parameters

otherCurve  Curve
 
withinThisCurveBounds  Boolean
 
withinOtherCurveBounds  Boolean
 
returnAllCriticalPnts  Boolean
 
resultList  IListClosestPointsPairBetweenTwoCurves
 
See Also