CADability dotNET
Returns the parameters for all intersection point of this curve with other curves in the model. The curve must be planar. To get the 3D intersection point call PointAt(Double). If CheckExtension is true, there will also be intersection parameters in the extension of the curve (if the curve can extend)

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public double[] GetIntersectionParameters(
	ICurve Curve,
	ProjectedModel..::..IntersectionMode mode
)
Visual Basic
Public Function GetIntersectionParameters ( _
	Curve As ICurve, _
	mode As ProjectedModel..::..IntersectionMode _
) As Double()
Visual C++
public:
array<double>^ GetIntersectionParameters(
	ICurve^ Curve, 
	ProjectedModel..::..IntersectionMode mode
)

Parameters

Curve
Type: CADability.GeoObject..::..ICurve
Curve to test for intersection points
mode
Type: CADability..::..ProjectedModel..::..IntersectionMode

Return Value

Array of parameters

See Also