Creates a surface by extruding a curve to a point.
rhinoscriptsyntax.ExtrudeCurvePoint (curve_id, point)
rhinoscript.surface.ExtrudeCurvePoint (curve_id, point)
curve_id |
Required. String or Guid. The identifier of the curve object to extrude. |
point |
Required. List of 3 numbers of Point3d. A 3-D point. |
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)
point = (0,0,10)
rs.ExtrudeCurvePoint( curve, point )