Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / ExtrudeWithTwist Method / ExtrudeWithTwist(ICurve,Vector3D,Point3D,Double,Double) 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

In This Topic
    ExtrudeWithTwist(ICurve,Vector3D,Point3D,Double,Double) Method
    In This Topic
    Extrudes and twists 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 _
    ) As Surface()
    public static Surface[] ExtrudeWithTwist( 
       ICurve curve,
       Vector3D direction,
       Point3D center,
       double angle,
       double tol
    )

    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

    Return Value

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