CADability dotNET
Enum type to specify the position of an object relative to a plane
Creates a new plane with the given parameters. Throws a PlaneException, if DirectionX and DirectionY have the same direction.

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

Syntax

C#
public Plane(
	GeoPoint Location,
	GeoVector DirectionX,
	GeoVector DirectionY
)
Visual Basic
Public Sub New ( _
	Location As GeoPoint, _
	DirectionX As GeoVector, _
	DirectionY As GeoVector _
)
Visual C++
public:
Plane(
	GeoPoint Location, 
	GeoVector DirectionX, 
	GeoVector DirectionY
)

Parameters

Location
Type: CADability..::..GeoPoint
location of the plane
DirectionX
Type: CADability..::..GeoVector
direction of the x-axis
DirectionY
Type: CADability..::..GeoVector
direction of the y-axis, will be adapted if not perpendicular to the x-axis

See Also