Hello;
looking at the functions of PolygonObject
, I notice that two obvious C++ functions have made it into the Python interface: GetPolygonW
and GetPolygonR
.
Both functions return a PyCObject
, which to my knowledge is a connector object between Python data and C++ data. But it's not included in the API documentation.
We also do not have examples for these functions in the Python code samples, and they aren't mentioned in a Python context on the Café. So, the question beckons: What can you use them for?
And is the actual way to set all polygons in a PolygonObject
really a loop over SetPolygon
, or am I missing something? There is no method SetAllPolygons
as equivalent for SetAllPoints
in PointObject
. (Of course I can program such a function as a loop, but I feel as if I'm missing a trick here...)