CADability dotNET
Creates a new plane with the given parameters. Throws a PlaneException, if the three points are colinear

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

Syntax

C#
public Plane(
	GeoPoint Location,
	GeoPoint p1,
	GeoPoint p2
)
Visual Basic
Public Sub New ( _
	Location As GeoPoint, _
	p1 As GeoPoint, _
	p2 As GeoPoint _
)
Visual C++
public:
Plane(
	GeoPoint Location, 
	GeoPoint p1, 
	GeoPoint p2
)

Parameters

Location
Type: CADability..::..GeoPoint
location of the plane
p1
Type: CADability..::..GeoPoint
specifies the direction of the x-axis
p2
Type: CADability..::..GeoPoint
specifies the direction of the y-axis, wich will be perpendicular to the x-axis

See Also