CADability dotNET
Returns the intersection curves between this surface and the provided other surface. Both surfaces are bound by rectangles.

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

Syntax

C#
ICurve[] Intersect(
	BoundingRect thisBounds,
	ISurface other,
	BoundingRect otherBounds
)
Visual Basic
Function Intersect ( _
	thisBounds As BoundingRect, _
	other As ISurface, _
	otherBounds As BoundingRect _
) As ICurve()
Visual C++
array<ICurve^>^ Intersect(
	BoundingRect thisBounds, 
	ISurface^ other, 
	BoundingRect otherBounds
)

Parameters

thisBounds
Type: CADability..::..BoundingRect
Bounds for this surface
other
Type: CADability.GeoObject..::..ISurface
Other surface
otherBounds
Type: CADability..::..BoundingRect
Bounds of other surface

Return Value

Array of intersection curves

See Also