Join Closed Vertices:
Any vertices in the current object, which are close to each other, are joined together. (A dialog box appears, which you use to specify how close together the vertices need to be.)
i cant find Join closed vertices Code
import MQSystem
doc = MQSystem.getDocument()
objnum = doc.numObject
for oi in range(0, objnum):
obj = doc.object[oi]
if obj is None:
continue
if obj.name == "obj":
obj.select = 1
break
for oi in range(0, objnum):
Show more...
obj = doc.object[oi]
if obj is None:
continue
if obj.name == "obj":
for v in obj.vertex:
v.select = 1
for f in obj.face:
f.select = 1