v1.0
Selects geometry components (such as points, polygons, edges).
SelectGeometryComponents( SelectionList ); |
' The following creates two meshes, translate them apart, then uses SelectGeometryComponents ' to select some points on one and select some polygons on the other NewScene CreatePrim "Cone", "MeshSurface" CreatePrim "Cylinder", "MeshSurface" Translate , 6.53800806588704, 0.470281530755438, -4.70281530755438E-02, _ siRelative, siView, siObj, siXYZ SelectGeometryComponents "cone.pnt[14,17],cylinder.poly[2,6]" logMessage "points 14 and 17 should now be selected (red) on the cone" logMessage "polygons 2 and 6 should now be selected (red) on the cylinder" |