CADability dotNET
The 2d-simple shape is assumed to reside in plane "fromPlane". It will be projected perpendicular onto the plane "toPlane". If the planes are perpendicular, the result will be am empty shape.

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

Syntax

C#
public SimpleShape Project(
	Plane fromPlane,
	Plane toPlane
)
Visual Basic
Public Function Project ( _
	fromPlane As Plane, _
	toPlane As Plane _
) As SimpleShape
Visual C++
public:
SimpleShape^ Project(
	Plane fromPlane, 
	Plane toPlane
)

Parameters

fromPlane
Type: CADability..::..Plane
the containing plane
toPlane
Type: CADability..::..Plane
the projection plane

Return Value

the projected shape

See Also