基本コード
surfaceをcurveに沿って押し出した立体を作成する
rs.ExtrudeSurface(surface, curve, cap=True)
API ExtrudeSurface
サンプルコード
三角形 tri をz軸に垂直な方向に押し出す
import rhinoscriptsyntax as rs
tri = rs.AddSrfPt([[0,0,0], [100,0,0], [50, 100, 0]])
a = rs.ExtrudeSurface(tri, rs.AddLine([0,0,0],[0,0,100]))
実行結果