CADability dotNET
Calculates intersection objects. The objects in the list toIntersect are intersected with the plane intersectWith.

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

Syntax

C#
public static GeoObjectList Intersect(
	GeoObjectList toIntersect,
	Plane intersectWith
)
Visual Basic
Public Shared Function Intersect ( _
	toIntersect As GeoObjectList, _
	intersectWith As Plane _
) As GeoObjectList
Visual C++
public:
static GeoObjectList^ Intersect(
	GeoObjectList^ toIntersect, 
	Plane intersectWith
)

Parameters

toIntersect
Type: CADability.GeoObject..::..GeoObjectList
list of objects to intersect
intersectWith
Type: CADability..::..Plane
plane to intersect with

Return Value

intersection objects

See Also