SISetCurvePoints

詳細

カーブ上のポイントを設定します。

スクリプト構文

SISetCurvePoints( InputObj, [Points], [Local] );

パラメータ

パラメータ タイプ 説明
InputObj 文字列 ポイントを設定するカーブ
Points 文字列 カンマで区切られたポイントのリスト。 例: (0,1,0),(0,2,0),(3,3,0)
Local Boolean ポイントがローカル座標にある場合は True、グローバル座標にある場合は False。

デフォルト値: False

VBScript の例

'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"

関連項目

CreateCurve SICreateCurve SIAddPointOnCurve SIAddPointOnCurveAtStart SIAddPointOnCurveAtEnd GetCurveLength EvaluateCurveAt