Hello,
I want to ask your opinion about how safe it is to do this on a python tag.
I want to create a minimal polygon object like this
var = c4d.PolygonObject(3, 1)
and then read data from it, without inserting it in the scene.
Is this safe to run that on an expression at every frame?
Could this cause a memory leak? Should I delete it from the memory at the end of the expression?
Also, is it necessary that I use 3 points for a PolygonObject? Could I just make it:
var = c4d.PolygonObject(1, 1)
Thanks