Hi, is anyone here can help me with a script to remove isolated vertices on selected objects? (mesh objects... but it would be great if it could work with mesh or/and poly)
thank you
Forum topic · Scripts Wanted
By thgthgthg · 2015-08-08
Hi, is anyone here can help me with a script to remove isolated vertices on selected objects? (mesh objects... but it would be great if it could work with mesh or/and poly)
thank you
Thanks!
PaleBlue.Design · 2018-04-23
Great workaround, thank you! :)
workaround
vusta · 2015-08-12
what about this ? I don't know how to do it for Mesh, so workaround is to convert them all to Polys then remove the iso verts.
for obj in (selection as array) do ( convertTo obj PolyMeshObject obj.EditablePoly.deleteIsoVerts () )
Update, how about this: works for either Mesh or Polys
for obj in (selection as array) do
( if classOf obj == editable_mesh then
meshop.deleteIsoVerts obj
else if classOf obj == editable_poly then
obj.EditablePoly.deleteIsoVerts () )
thgthgthg · 2015-08-12
It worked!!!
Thank you very much!
Thanks!
PaleBlue.Design · 2018-04-23
Great workaround, thank you! :)