Hi,
in matplotlib 0.91 there was a function draw_point for the backends.
This seems to be gone (except for backend_agg2.py and backend_emf.py
!?). I guess it wasn't used very often; instead I see that there is now
a function draw_point in lines.py. Is it possible to re-add this
functionality t
On Thu, Apr 3, 2008 at 8:40 AM, Manuel Metz <[EMAIL PROTECTED]> wrote:
> Hi,
>
> in matplotlib 0.91 there was a function draw_point for the backends.
> This seems to be gone (except for backend_agg2.py and backend_emf.py
> !?). I guess it wasn't used very often; instead I see that there is now
>
A few weeks ago I reported a double draw problem in the qt backends. They
both have a draw() method that looked like this:
def draw( self ):
self.replot = True
FigureCanvasAgg.draw(self)
self.repaint( False )
It turned out that FCA::draw() and self.repaint() both did