移動先: 概要 戻り値 関連項目. フラグ. MEL 例.
nurbsPlane [-axis float float float] [-caching boolean] [-constructionHistory boolean] [-degree int] [-lengthRatio float] [-name string] [-nodeState int] [-object boolean] [-patchesU int] [-patchesV int] [-pivot float float float] [-polygon int] [-width linear]
nurbsPlane は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
nurbsPlane コマンドは、新しい NURBS プレーンを作成し、その新規のサーフェス名を返します。ユニット プレーンが作成され、その中心はデフォルトでは原点になっています。
戻り値の型は照会モードでは照会フラグが基になります。
cone, cylinder, nurbsPlane, sphere, torus
axis, caching, constructionHistory, degree, lengthRatio, name, nodeState, object, patchesU, patchesV, pivot, polygon, width
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// Create default plane
nurbsPlane;
// Create a degree 3 plane with 4 spans in each direction
nurbsPlane -d 3 -u 4 -v 4;
// Create plane that is twice as long as it is wide
nurbsPlane -w 3 -lr 2;