v1.0
選択
3D オブジェクトをアクティブ エレメントのリストに追加します。
アクティブ エレメントとは、選択可能なコンポーネントを持つオブジェクトです(ポイント、ポリゴン、エッジなど)。
アクティブ エレメントは特殊な色で強調表示されます(たとえば、黄色).
注: SelectionList 引数にエラーが含まれる場合、コマンドは失敗します。
ActivateElements( [SelectionList] ); |
' This example uses ActivateElements to make selection of components ' (in this case points) possible on the cylinder called "cylinder". NewScene CreatePrim "Cylinder", "MeshSurface" CreatePrim "Cylinder", "MeshSurface" Translate , 3.48352677058841, 0.127331217177334, -1.27331217177334E-02, _ siRelative, siView, siObj, siXYZ SetSelFilter "point" ActivateElements "cylinder" logMessage "cylinder should now be highlighted in yellow" logMessage "and ready to accept selection of points components" |