ジャンプ先: 概要. 戻り値. フラグ. Python 例.
illustratorCurves(
[string]
, [constructionHistory=boolean], [illustratorFilename=string], [name=string], [object=boolean], [scaleFactor=float])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
illustratorCurves は、取り消し可能、照会可能、および編集可能です。
illustratorCurves コマンドは、入力された Adobe(R) Illustrator(R)ファイルから NURBS カーブを作成します。
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
constructionHistory, illustratorFilename, name, object, scaleFactor
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。
|
import maya.cmds as cmds
# Create curves from an input Adobe(R) Illustrator(R) file d:/sample.ai
# and scale factor 2.54
cmds.illustratorCurves( ifn='d:/sample.ai', sf=2.54 )