v1.0
ユーザが選択した位置に、プリミティブを作成します。
DrawPrimitiveTool( PresetObj, GeometryType, [Name], [Parent] ); |
パラメータ | タイプ | 説明 | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
PresetObj | String またはプリセット オブジェクト(「SIGetPreset」を参照) | ジオメトリ プリミティブ プリセットの名前。 サポートされているプリセット名のリストについては、「ジオメトリ プリミティブ」を参照してください。 | ||||||||
GeometryType | 文字列 |
要求するジオメトリ タイプ
|
||||||||
Name | 文字列 | 新規プリミティブの基本名 | ||||||||
Parent | 文字列 | 既存のオブジェクトの名前。新しいプリミティブの親として使用されます。 |
'This example shows how to activate the interactive command DrawPrimitiveTool newscene 'Activate. Click to create NURBS discs with default name under scene root DrawPrimitiveTool"Disc", "NurbsSurface" |
'This example shows how to activate the interactive command DrawPrimitiveTool newscene CreatePrim "Sphere", "MeshSurface" 'Activate. Click to create NURBS discs with name prefix MyDisc 'Each new primitive is parented under the object named sphere. DrawPrimitiveTool"Disc", "NurbsSurface", "MyDisc", "sphere" |
'This example shows how to activate the interactive command DrawPrimitiveTool newscene CreatePrim "Sphere", "MeshSurface" 'Activate. Click to create NURBS discs with default name under sphere object DrawPrimitiveTool"Disc", "NurbsSurface",,"sphere" |