Notifications
Clear all
[Closed] How get the script of the function "Remove Isolated Vertices" in max2009?
Jul 30, 2009 5:58 pm
Hi guys.
How get the script of the function “Remove Isolated Vertices” in max2009?
Thanks!
2 Replies
Jul 30, 2009 5:58 pm
Something like this will do it for you:
macroScript ClearIsoVerts
category:"Craft Tools"
toolTip:"Clear Isolated Vertices"
(
objArr = selection as array
for i in 1 to objArr.count do (
case (classof objArr[i]) of (
Editable_mesh: meshop.deleteIsoVertsl objArr[i].baseobject
Editable_poly: objArr[i].EditablePoly.DeleteIsoVerts()
PolyMesh: objArr[i].EditablePoly.DeleteIsoVerts()
default: messageBox "Please Select an Editable Poly or Mesh Object."
)
)
)
This requires an Editable Mesh/poly object, it is not designed to work with the Edit modifiers.
-Eric