CADability dotNET
Returns a list of all intersectionpoints of this border with the given curve. Some intersectionpoints may be found twice, if the Curve passes through a vertex of this border. The par1 member of the intersectionpoint is the parameter of this border (0.0<=par1<=this.Count) the par2 member is the parameter of the curve (0.0<=par1<=1.0).

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

Syntax

C#
public GeoPoint2DWithParameter[] GetIntersectionPoints(
	ICurve2D IntersectWith
)
Visual Basic
Public Function GetIntersectionPoints ( _
	IntersectWith As ICurve2D _
) As GeoPoint2DWithParameter()
Visual C++
public:
array<GeoPoint2DWithParameter>^ GetIntersectionPoints(
	ICurve2D^ IntersectWith
)

Parameters

IntersectWith
Type: CADability.Curve2D..::..ICurve2D
curve to intersect this border with

Return Value

list of intersection points

See Also