v1.0
オペレータ デフォメーション
スプラインによるデフォメーションを適用します。これにより、オブジェクトおよび(または)クラスタは 1 つまたは複数のカーブのデフォメーションに応じてデフォームされます。
oReturn = SIApplyDeformBySpine( [ConnectionSet], [Interactive], [ConstructionMode] ); |
新しく作成されたスパインの WeightMap オペレータのオブジェクト名を戻します。
パラメータ | タイプ | 詳細 |
---|---|---|
ConnectionSet | ConnectionSet | オペレータに接続されるオブジェクトを指定します。 ConnectionSet の第 1 のグループには、頂点ベースのオブジェクトが含まれます。 ConnectionSet の第 2 のグループには、NURBS カーブ オブジェクトが含まれます。 コマンドが実行されると、この引数は取得された ConnectionSet を戻します(たとえば、Interactive が TRUE である場合は、選択されているオブジェクトが戻される ConnectionSet に含まれます)。 デフォルト値:現在選択されているオブジェクトをメイン グループとして使用 |
Interactive | ブール | 2 番目のグループが ConnectionSet に含まれていないときにオブジェクトを選択するように要求する場合は True。
デフォルト値: False |
ConstructionMode | siConstructionMode | オペレータを適用するコンストラクション モードを指定します。
デフォルト値:現在のコンストラクション モードを使用 |
'This example shows how to deform a grid using a circle. 'The circle is the curve spine used to deform the grid. newscene dim obj, crv set obj = CreatePrim( "Grid", "MeshSurface" ) set crv = CreatePrim( "Circle", "NurbsCurve" ) Rotate crv, 90, 0, 0, siAbsolute, siParent, siObj, siX Scale crv, 0.75, 0.75, 0.75, siAbsolute, siParent, siObj, siX SIApplyDeformBySpine obj & ";" & crv 'moving the circle will deform the grid Translate crv, 0, 5, 0, siAbsolute, siParent, siObj, siY |
' Create a Mesh Grid and Nurbs circle objects: set CircleObj = CreatePrim( "Circle", "NurbsCurve" ) set GridObj = CreatePrim( "Grid", "MeshSurface" ) Rotate , 90, 0, 0 ' Apply a Spine deform on the Grid, using the circle as deformer: DeformSpineOp = SIApplyDeformBySpine( GridObj & ";" & CircleObj ) Application.LogMessage DeformSpineOp ' Now translate the circle and notice the deformation: Translate CircleObj, 0, 0, 3 '======================================================== 'OUTPUT: 'INFO : "grid.polymsh.cls.DeformBySpineWeightCls.Envelope_Weights.spinewgtmapop" |