On 23/12/2017 at 03:24, xxxxxxxx wrote:
Hello Plugincafe!
I'm using MCOMMAND_UNTRIANGULATE in my code but by default, it has Evaluate Angle checkbox enabled.
I need to uncheck this option from its base container but I'm getting this error:
AttributeError: 'module' object has no attribute 'IDC_UNTRIANGULATE_ANGLE'
#Untriangulate
untriangulate_settings = c4d.BaseContainer()
**untriangulate_settings[c4d.IDC_UNTRIANGULATE_ANGLE] = False**
res = c4d.utils.SendModelingCommand (command = c4d.MCOMMAND_UNTRIANGULATE,
list = [poly],
mode = c4d.MODELINGCOMMANDMODE_POLYGONSELECTION,
**bc = untriangulate_settings,**
doc = doc)
is it possible to execute this command with disabled 'Evaluate Angle'?
Cheers! :)
-Merk