CADability dotNET
The 2d-compund 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 CompoundShape Project(
	Plane fromPlane,
	Plane toPlane
)
Visual Basic
Public Function Project ( _
	fromPlane As Plane, _
	toPlane As Plane _
) As CompoundShape
Visual C++
public:
CompoundShape^ 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