On 30/06/2013 at 15:51, xxxxxxxx wrote:
Hello,
I am trying to remove N-gons, but the only command I found is ID_NGON_REMOVE_MENU who don't seems to work :
import c4d
def main() :
print c4d.utils.SendModelingCommand(command = c4d.ID_NGON_REMOVE_MENU,
list = [op],
mode = c4d.MODELINGCOMMANDMODE_POLYGONSELECTION,
doc = doc)
if __name__=='__main__':
main()
The function return False, so I guess there is a problem somewhere... By the way all the « modeling library menu commands » return False. Is there something I am doing wrong ?