For example, if I draw this circle

clearly inaccurate and ugly. Is there a way to adjust the sensitivity of a draw?
edit:
I can generalize to:
self.da = wx.Panel(self, -1, size=(-1, 800))
self.da.Bind(wx.EVT_PAINT, self.paint)
self._buffer = wx.EmptyBitmap(500,500)
dc = wx.MemoryDC(self._buffer)
dc.SetBackground( wx.Brush("White") )
dc.DrawCircle(50,40,100)
def paint(self, evt):
dc = wx.BufferedPaintDC(self.da, self._buffer)
source
share