CADability dotNET
Returns the intersection curve(s) of this surface with the given plane. The curve is returned in the parameter space of the plane. An empty array is returned if there is no intersection.

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

Syntax

C#
IDualSurfaceCurve[] GetPlaneIntersection(
	PlaneSurface pl,
	double umin,
	double umax,
	double vmin,
	double vmax,
	double precision
)
Visual Basic
Function GetPlaneIntersection ( _
	pl As PlaneSurface, _
	umin As Double, _
	umax As Double, _
	vmin As Double, _
	vmax As Double, _
	precision As Double _
) As IDualSurfaceCurve()
Visual C++
array<IDualSurfaceCurve^>^ GetPlaneIntersection(
	PlaneSurface^ pl, 
	double umin, 
	double umax, 
	double vmin, 
	double vmax, 
	double precision
)

Parameters

pl
Type: CADability.GeoObject..::..PlaneSurface
plane to intersect with
umin
Type: System..::..Double
umax
Type: System..::..Double
vmin
Type: System..::..Double
vmax
Type: System..::..Double
precision
Type: System..::..Double

Return Value

intersection curves

See Also