Python doesn't have pointers, but does seem that arrays can be shared as variables. Where setting variables to arrays will inherit changes from the former.
I'm calling many MANY pixmap.toImage(pixmap) series.
ToDo-
- Test variable 'instancing' with Lists, Sets, & Dictionaries
- Find the break down between PyQt and general Python instancing.
- Are pixmaps considered arrays even as their own object?
- Is
pixmap.toImage(pixmap) the same thing as pixmap.clone()?
- If seemingly the same, run timers on
pixmap.toImage(pixmap) vs pixmap.clone()
- Optimize
TextViewer, TextBed, and Page Output definitions with findings.