CADability dotNET
Extrudes the provided object faceShellPathCurve along the extension.

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

Syntax

C#
public static IGeoObject Extrude(
	IGeoObject faceShellPathCurve,
	GeoVector extension,
	Project project
)
Visual Basic
Public Shared Function Extrude ( _
	faceShellPathCurve As IGeoObject, _
	extension As GeoVector, _
	project As Project _
) As IGeoObject
Visual C++
public:
static IGeoObject^ Extrude(
	IGeoObject^ faceShellPathCurve, 
	GeoVector extension, 
	Project^ project
)

Parameters

faceShellPathCurve
Type: CADability.GeoObject..::..IGeoObject
Object to extrude, may be a Face, Shell, Path or ICurve object
extension
Type: CADability..::..GeoVector
Direction and length of extension
project
Type: CADability..::..Project
A project which is used to set default attributes to the result, may be null

Return Value

The extruded face, shell or solid, null if extrusion not possible

See Also