ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
polyBevel [-angleTolerance float] [-autoFit boolean] [-caching boolean] [-constructionHistory boolean] [-mergeVertexTolerance linear] [-mergeVertices boolean] [-miteringAngle float] [-name string] [-nodeState int] [-offset linear] [-offsetAsFraction boolean] [-roundness float] [-segments int] [-smoothingAngle float] [-subdivideNgons boolean] [-useLegacyBevelAlgorithm boolean] [-uvAssignment int] [-worldSpace boolean]
polyBevel は、取り消し可能、照会可能、および編集可能です。
エッジをベベルします。string | ノード名 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Common poly modifier operation flags | ||||||||||||
-angleTolerance(-at)
|
float
|
|||||||||||
|
||||||||||||
-autoFit(-af)
|
boolean
|
|||||||||||
|
||||||||||||
-caching(-cch)
|
boolean
|
|||||||||||
|
||||||||||||
-constructionHistory(-ch)
|
boolean
|
|||||||||||
|
||||||||||||
-mergeVertexTolerance(-mvt)
|
linear
|
|||||||||||
|
||||||||||||
-mergeVertices(-mv)
|
boolean
|
|||||||||||
|
||||||||||||
-miteringAngle(-ma)
|
float
|
|||||||||||
|
||||||||||||
-name(-n)
|
string
|
|||||||||||
|
||||||||||||
-nodeState(-nds)
|
int
|
|||||||||||
|
||||||||||||
-offset(-o)
|
linear
|
|||||||||||
|
||||||||||||
-offsetAsFraction(-oaf)
|
boolean
|
|||||||||||
|
||||||||||||
-roundness(-r)
|
float
|
|||||||||||
|
||||||||||||
-segments(-sg)
|
int
|
|||||||||||
|
||||||||||||
-smoothingAngle(-sa)
|
float
|
|||||||||||
|
||||||||||||
-subdivideNgons(-sn)
|
boolean
|
|||||||||||
|
||||||||||||
-useLegacyBevelAlgorithm(-com)
|
boolean
|
|||||||||||
|
||||||||||||
-uvAssignment(-ua)
|
int
|
|||||||||||
|
||||||||||||
-worldSpace(-ws)
|
boolean
|
|||||||||||
|
フラグはコマンドの作成モードで表示できます | フラグはコマンドの編集モードで表示できます |
フラグはコマンドの照会モードで表示できます | コマンド内でフラグを複数回使用できます。 |
// Replace an edge by 1 face, the width of the new face is given by the offset value. polyCube -n plg; polyBevel -offset 0.2 plg.e[7]; delete plg; // Replace an edge by 4 faces, the new faces are rounding a smooth angle. polyCube -n plg; polyBevel -segments 4 -offset 0.4 plg.e[7]; delete plg; // Replace an edge by 4 faces, the new faces are rounding an angle specified by the default value of roundness (i.e 0.5). polyCube -n plg; polyBevel -segments 4 -autoFit off plg.e[7]; delete plg;