v1.0
選択
3D オブジェクトを無効にします。
アクティブ エレメントとは、選択可能なコンポーネントを持つオブジェクトです(ポイント、ポリゴン、エッジなど)。 アクティブ
エレメントは特殊な色で強調表示されます。
注: SelectionList 引数にエラーが含まれる場合、コマンドは失敗します。
DeactivateElements( [SelectionList] ); |
' The following uses "DeactivateElements" so that selection of points
' components is no longer possible on the object called "cylinder"
NewScene
CreatePrim "Cylinder", "MeshSurface"
CreatePrim "Cone", "MeshSurface"
Translate , 3.48352677058841, 0.127331217177334, -1.27331217177334E-02, _
siRelative, siView, siObj, siXYZ
AddToSelection "cylinder"
SetSelFilter "point"
DeactivateElements "cylinder"
logMessage "cylinder should no longer be active"
logMessage "i.e.: selection of points components should no longer be possible on it."
|