ジャンプ先: 概要. 戻り値. フラグ. Python 例.
bevel(
[object]
, [bevelShapeType=int], [caching=boolean], [constructionHistory=boolean], [cornerType=int], [depth=linear], [extrudeDepth=linear], [joinSurfaces=boolean], [name=string], [nodeState=int], [numberOfSides=int], [object=boolean], [polygon=int], [range=boolean], [tolerance=linear], [width=linear])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
bevel は、取り消し可能、照会可能、および編集可能です。
bevel コマンドは、指定したカーブに対して新しいベベル サーフェスを作成します。カーブには NURBS カーブを指定できます。| string[] | オブジェクト名とノード名 |
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
| ロング ネーム(ショート ネーム) | 引数タイプ | プロパティ | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
bevelShapeType(bst)
|
int
|
|
||||||||||
|
||||||||||||
caching(cch)
|
boolean
|
|
||||||||||
|
||||||||||||
cornerType(ct)
|
int
|
|
||||||||||
|
||||||||||||
depth(d)
|
linear
|
|
||||||||||
|
||||||||||||
extrudeDepth(ed)
|
linear
|
|
||||||||||
|
||||||||||||
nodeState(nds)
|
int
|
|
||||||||||
|
||||||||||||
tolerance(tol)
|
linear
|
|
||||||||||
|
||||||||||||
width(w)
|
linear
|
|
||||||||||
|
||||||||||||
| 共通のフラグ | ||||||||||||
constructionHistory(ch)
|
boolean
|
|
||||||||||
|
||||||||||||
joinSurfaces(js)
|
boolean
|
|
||||||||||
|
||||||||||||
name(n)
|
string
|
|
||||||||||
|
||||||||||||
numberOfSides(ns)
|
int
|
|
||||||||||
|
||||||||||||
object(o)
|
boolean
|
|
||||||||||
|
||||||||||||
polygon(po)
|
int
|
|
||||||||||
|
||||||||||||
range(rn)
|
boolean
|
|
||||||||||
|
||||||||||||
import maya.cmds as cmds # Bevel (one) active curve with a width and depth of 1.5: cmds.bevel( w=1.5, d=1.5 ) # Create a single-sided bevel (at start) surface using the specified # curve (with the default dimensions): cmds.bevel( 'curve1', ns=2 )