Hello,
I wander what is the easiest way of dumping a lot of values to the screen. I've got a vector of 20-30 float values which change every frame, and want to be able to see them on screen real-time.
I tried to use ofxGui with ofParameter but this seems to work if ofParameters are declared as class members (If ofParameters are stored as vector or even dynamic array the values don't update and the gui panel is glitched) And I have a variable number of this parameters.
Is there any pre-defined class or addon which helps in that matter? Or do I have to implement my own using ofDrawBitmapString?
Thanks