Hello,
I have a script to clean up imported objects from AutoCAD. I wanted to add an addition to weld the vertices and add an auto smooth of 30 after it removes the isolated vertices in the scripts below.
any assistance would be appreciated!
Thanks,
Eric
sel = getCurrentSelection()
for obj in objects do
(
if iskindof obj Editable_Mesh do (
select obj
meshOps.removeIsolatedVerts(obj)
)
)
clearSelection()
selectmore sel
barigazy · 2012-10-22