在Kivy上制作帆布线

时间:2014-10-07 17:50:49

标签: python animation canvas line kivy

我有一个x和y位置的数组。我想显示这些点连续为每个点连接一条线,然后创建一个动画。它就像路径跟踪,其路径就是线路。我正在使用python-kivy尝试显示它。

我在google上找不到任何帮助。

有一个触发此动画的按钮。

from kivy.app import App
from kivy.uix.widget import Widget
from kivy.graphics.vertex_instructions import Line
from kivy.graphics.context_instructions import Color
from time import sleep

x_moves = [250, 250.4305, 249.8804, 246.0923, 239.7496, 233.8188, 225.7797, 215.8385, 205.8413, 196.6497, 189.7026, 181.2445, 174.9816, 171.9882, 166.1171, 161.6505, 159.9929, 161.1338, 164.853, 168.2874, 170.768, 178.6918, 184.5233, 190.0262, 195.607, 202.0255, 210.5954, 216.1031, 219.6285, 224.9134, 230.2314, 237.7017, 243.7408, 250.5839, 256.2949]
y_moves = [250, 240.0093, 230.0244, 220.7697, 213.0386, 204.9872, 199.0396, 197.9567, 197.7209, 201.6598, 208.8527, 214.1875, 221.9834, 231.5249, 239.62, 248.567, 258.4287, 268.3634, 277.6461, 287.0379, 296.7253, 302.8256, 310.9492, 319.299, 327.5969, 335.2652, 340.4185, 348.7651, 358.1231, 366.6125, 375.0812, 381.7291, 389.6996, 396.9915, 405.2003]

class my_App(App):
    def build(self):
        self.widget = Widget()
        self.widget.on_touch_down = self.touch
        with self.widget.canvas:
            Color(0, 1, 0, 1) #just initial config
            Line(points = [0,0,500,0,500,500,0,500], close = True) #just initial config
        return self.widget

    def touch(self, touch): #executes the animation
        pts = []
        for i in range(len(x_moves)):
            pts.append(x_moves[i])
            pts.append(y_moves[i])
            self.widget.canvas.add(Line(points = pts))
            sleep(0.1)

if __name__ == '__main__':
    obj = my_App()
    obj.run()

这是我的代码不起作用。但这就是想法。

1 个答案:

答案 0 :(得分:2)

您阻止用户界面更新,因为您的功能无法返回并且您使用sleep()。出于显而易见的原因,Kivy在您的代码运行时无法执行任何操作。如果您想在运行更多代码之前等待,可以使用Kivy的Clock进行此操作。然后Kivy将能够更新屏幕。

但你应该只看一下Kivy的Animation,这是为了更好地做到这一点。