Hello,
I have made a graph plotting widget for wxPython
select points using LMB or click and drag a selection box around points
when you have points selected you can either (G)rab them, or Delete Them (X)
If you are moving a point and decide against it you can press escape.
pressing spacebar on a selected point will toggle interpolation with the next
point off.
You can also move a point by clicking and dragging it using the LMB.
RMB creates a new point on the graph.
Now, any of you that run it will notice horrible flickering as you move the
mouse, drag a selection box .etc
In the Draw function I have done this
if abs(time.time() - self.last_time) 0.1:
return
But it only does little to aleviate the problem. I am guessing I need double
buffering. How can I modify this app to be able add double buffering to the
drawing canvas?
Thank you for your time.
To unsubscribe, e-mail: wxPython-users-unsubscribe (AT) lists (DOT) wxwidgets.org
For additional commands, e-mail: wxPython-users-help (AT) lists (DOT) wxwidgets.org