| BrepCreateFromTaperedExtrude Method (Curve, Double, Vector3d, Point3d, Double, ExtrudeCornerType) | 
 Note: This API is now obsolete.
            Extrude a curve to a taper making a brep (potentially more than 1)
            
 
    Namespace: 
   Rhino.Geometry
    Assembly:
   RhinoCommon (in RhinoCommon.dll)
Since: 5.1
 Syntax
Syntax[ObsoleteAttribute("Use version that takes tolerance as input")]
public static Brep[] CreateFromTaperedExtrude(
	Curve curveToExtrude,
	double distance,
	Vector3d direction,
	Point3d basePoint,
	double draftAngleRadians,
	ExtrudeCornerType cornerType
)<ObsoleteAttribute("Use version that takes tolerance as input")>
Public Shared Function CreateFromTaperedExtrude ( 
	curveToExtrude As Curve,
	distance As Double,
	direction As Vector3d,
	basePoint As Point3d,
	draftAngleRadians As Double,
	cornerType As ExtrudeCornerType
) As Brep()Parameters
- curveToExtrude
- Type: Rhino.GeometryCurve
 the curve to extrude
- distance
- Type: SystemDouble
 the distance to extrude
- direction
- Type: Rhino.GeometryVector3d
 the direction of the extrusion
- basePoint
- Type: Rhino.GeometryPoint3d
 the base point of the extrusion
- draftAngleRadians
- Type: SystemDouble
 angle of the extrusion
- cornerType
- Type: Rhino.GeometryExtrudeCornerType
 [Missing <param name="cornerType"/> documentation for "M:Rhino.Geometry.Brep.CreateFromTaperedExtrude(Rhino.Geometry.Curve,System.Double,Rhino.Geometry.Vector3d,Rhino.Geometry.Point3d,System.Double,Rhino.Geometry.ExtrudeCornerType)"] 
Return Value
Type: 
Breparray of breps on success
 Remarks
Remarkstolerances used are based on the active doc tolerance
 See Also
See Also