ExtrudeCurve

Creates a surface by extruding a curve along a path curve.

Syntax

rhinoscriptsyntax.ExtrudeCurve( curve_id, path_id )

rhinoscript.surface.ExtrudeCurve( curve_id, path_id )

Parameters

Parameters

curve_id

Required.  String or Guid.  The identifier of the curve object to extrude.

path_id

Required.  String or Guid.  The identifier of the path curve.

Returns

Guid

The identifier of the new object if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

curve = rs.AddCircle(rs.WorldXYPlane(), 5)

path = rs.AddLine([5,0,0], [10,0,10])

rs.ExtrudeCurve( curve, path )

Also See

ExtrudeCurvePoint

ExtrudeCurveStraight

ExtrudeCurveTapered

ExtrudeSurface