移動先: 概要 戻り値 関連項目 フラグ MEL の例
projectCurve [-caching boolean] [-constructionHistory boolean] [-direction float float float] [-directionX linear] [-directionY linear] [-directionZ linear] [-name string] [-nodeState int] [-object boolean] [-range boolean] [-tolerance linear] [-useNormal boolean]
[curve] [surface]
projectCurve は「元に戻す」が可能、「照会」が可能、「編集」が可能です。
projectCurve コマンドはカーブをサーフェス上に作成し、
すべての選択したカーブは選択したサーフェスに投影されます。投影はサーフェス法線を使って行うか、投影するベクトル方向を指定して行うことができます。注: コマンド ラインで、カーブおよびサーフェスを特定の順番に指定する必要はありません。
戻り値の型は照会モードでは照会フラグが基になります。
curveOnSurface, duplicateCurve, intersect
caching, constructionHistory, direction, directionX, directionY, directionZ, name, nodeState, object, range, tolerance, useNormal
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// Project the active curve onto the active surface using the surface
// normals:
projectCurve -un yes;
// Project this curve onto the nurbs sphere using the specified direction:
projectCurve -d 0.0 6.0 0.0 curve1 nurbsSphere1;