0

我正在尝试为 2d 对象设置动画(绘制为路径),因此需要重新绘制。在没有闪烁对象的情况下重绘它的最佳方法是什么?

在调用 onIdle-Event 时重绘它之后self.Refresh(),我使用了一个具有固定时间的计时器来调用self.Refresh(),这样效果更好。但我仍然有一个闪烁的对象的问题。

import wx
import math
import time

class ObjectDrawer(wx.Frame):

    def __init__(self, *args, **kw):
        # Initialize vars
        self.dc = None
        self.gc = None
        self.lastTime = time.time()
        super(ObjectDrawer, self).__init__(*args, **kw)
        self.InitUI()

    def InitUI(self):
        self.timer = wx.Timer(self)
        # Initialize the GUI
        self.Bind(wx.EVT_PAINT, self.OnPaint)
        self.Bind(wx.EVT_TIMER, self.evt_timer)
        self.ShowFullScreen(True)
        self.SetBackgroundColour('white')

    def evt_timer(self, event):
        self.Refresh()

    def drawObjects(self):
        path = self.gc.CreatePath()
        #Add Something to the path e.g. a circle
        path.AddCircle(100,100,50)
        self.gc.StrokePath(path)
        path = None

    def OnPaint(self, e):
        dc = wx.PaintDC(self)
        self.gc = wx.GraphicsContext.Create(dc)
        self.gc.SetPen(wx.Pen('#e8b100', 5, wx.LONG_DASH))
        self.drawObjects()
        self.timer.Start(1000/60)


app = wx.App()
window = ObjectDrawer(None)
window.Show()
app.MainLoop()
4

1 回答 1

0

如果设置self.Refresh()self.Refresh(False)闪烁消失。您也可以使用 wx.AutoBufferedPaintDC 代替 wx.PaintDC。查看 wxpython wiki 中的这个示例,了解更复杂的示例。

于 2019-04-04T16:00:04.313 回答