On Mar 18, 2007, at 3:09 PM, Maximilian Matthé wrote: > Calling fltk::flush() works fine. Almost :) Maybe its a feature, but: > fltk::flush() changes the current transformation. I have to enclose > fltk::flush in to push_matrix and pop_matrix. Is this usual?
The matrix is not preserved across multiple ::draw() calls. You may have been lucky that it worked for you, but that would only be a side effect. There is only a single matrix for one instance of FLTK, but not for every widget. ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

