カーブ上のポイントを設定します。
SISetCurvePoints( InputObj, [Points], [Local] ); |
パラメータ | タイプ | 説明 |
---|---|---|
InputObj | 文字列 | ポイントを設定するカーブ。 |
Points | 文字列 | カンマで区切られたポイントのリスト。 例: (0,1,0),(0,2,0),(3,3,0) |
Local | Boolean |
ポイントがローカル座標にある場合は True、グローバル座標にある場合は False。 デフォルト値: False |
'This example creates a curve by setting points on the curve... newscene 'Create a cubic NURBS curve. Set the four CVs of the cubic curve set l_pCurve = SICreateCurve ("MyCurve",3,0) SISetCurvePoints l_pCurve, "(0,0,0),(2,1,2),(1,2,3),(3,4,5)", 0 SelectObj l_pCurve, , True SetSelFilter "Point" |