Metasequoia BBS

| New message | Normal | Tree |
Status
Tag
Keyword
[9669] i cant find Join closed vertices Code / material poperty parameters
Done [Request,help! ] Response
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...
2023-02-12 10:16
[9671] Re: i cant find Join closed vertices Code / Administrator
MQObject.optimizeVertex() joins vertices within a specified distance. Is this function what you are looking for?
2023-02-13 10:58
[9673] Re: i cant find Join closed vertices Code / material poperty parameters
>MQObject.optimizeVertex() joins vertices within a specified distance. Is this function what you are looking for?

yes thnx!
2023-02-13 13:35