CADability dotNET
Determines the commomn plane of a point and a curve. Returns the common plane in the parameter and true if there is such a plane. Returns false, if the point lies not in the plane.

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

Syntax

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

Parameters

p
Type: CADability..::..GeoPoint
The point
c2
Type: CADability.GeoObject..::..ICurve
The curve
CommonPlane
Type: CADability..::..Plane%
The common plane

Return Value

true, if there is a common plane, else false

See Also