CADability dotNET
Determines the common plane of the two curves. If there is a common plane, the Parameter CommonPlane gets the result ant the function returns true. Otherwise the function returns false.

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

Syntax

C#
public static bool GetCommonPlane(
	ICurve c1,
	ICurve c2,
	out Plane CommonPlane
)
Visual Basic
Public Shared Function GetCommonPlane ( _
	c1 As ICurve, _
	c2 As ICurve, _
	<OutAttribute> ByRef CommonPlane As Plane _
) As Boolean
Visual C++
public:
static bool GetCommonPlane(
	ICurve^ c1, 
	ICurve^ c2, 
	[OutAttribute] Plane% CommonPlane
)

Parameters

c1
Type: CADability.GeoObject..::..ICurve
first curve
c2
Type: CADability.GeoObject..::..ICurve
second curve
CommonPlane
Type: CADability..::..Plane%
the resulting common plane

Return Value

See Also