Creates a surface by extruding a curve along a path curve.
rhinoscriptsyntax.ExtrudeCurve( curve_id, path_id )
rhinoscript.surface.ExtrudeCurve( curve_id, path_id )
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. |
Guid |
The identifier of the new object if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
curve = rs.AddCircle(rs.WorldXYPlane(), 5)
path = rs.AddLine([5,0,0], [10,0,10])
rs.ExtrudeCurve( curve, path )