Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Solid3D Class / ExtrudeWithTwist Method / ExtrudeWithTwist(ICurve,Vector3D,Point3D,Double,Double,Boolean) Method
The curve to extrude
Extrusion direction, normal to the plane of the curve
Point of application for the direction, on the plane of the curve
Twist angle in radians
Tolerance
If true, creates a closed Solid3D

In This Topic
    ExtrudeWithTwist(ICurve,Vector3D,Point3D,Double,Double,Boolean) Method
    In This Topic
    Creates a solid3D extruding and twisting a planar curve..
    Syntax
    'Declaration
     
    Public Overloads Shared Function ExtrudeWithTwist( _
       ByVal curve As ICurve, _
       ByVal direction As Vector3D, _
       ByVal center As Point3D, _
       ByVal angle As Double, _
       ByVal tol As Double, _
       Optional ByVal endCaps As Boolean _
    ) As Solid3D
    public static Solid3D ExtrudeWithTwist( 
       ICurve curve,
       Vector3D direction,
       Point3D center,
       double angle,
       double tol,
       bool endCaps
    )

    Parameters

    curve
    The curve to extrude
    direction
    Extrusion direction, normal to the plane of the curve
    center
    Point of application for the direction, on the plane of the curve
    angle
    Twist angle in radians
    tol
    Tolerance
    endCaps
    If true, creates a closed Solid3D

    Return Value

    The resulting Solid3D if the operation succeeds, null/Nothing otherwise.
    See Also