On 19/08/2017 at 06:56, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R18
Platform: Windows ;
Language(s) : PYTHON ;
---------
Hello,
About the SelectAll() method of the BaseSelect class, the "max" value is "the last element in the range to select".
So to select all polygons, for example, it will logically be :
SelectAll(op.GetPolygonCount() - 1)
But in the Python documentation, the example for the edges show :
edges.SelectAll(nbr.GetEdgeCount()) # Select all edges in the range [0, nbr.GetEdgeCount()]
Is it not nbr.GetEdgeCount() - 1, instead ?