速いKivyキャンバスに描画、私は非常に急性得れば非常に遅い描く場合、 ポリラインの図は、しかし、その後、私は滑らかなラインを取得し、私にしてください教えてください。Kivyキャンバス - 高速描画 - ポリライン
...
def on_touch_down(self, touch):
if Widget.on_touch_down(self, touch):
return True
print(touch.x, touch.y)
with self.canvas.before:
Color(*get_color_from_hex('#0080FF80'))
Line(circle=(touch.x, touch.y, 2), width=2)
touch.ud['current_line'] = Line(points=(touch.x, touch.y), width=2)
def on_touch_move(self, touch):
if 'current_line' in touch.ud:
touch.ud['current_line'].points += (touch.x, touch.y)
...
これは私の例です:
私はそれを修正できるかを知っている? Kivyで素早く滑らかに描くことができますか?
私は多くの異なるデバイス上でテストされ、そして多分私は誇張少しだけど、本当に絵がより良いとは限りません - [別のPICリンク](のhttp:// I。 stack.imgur.com/n3jqw.png) –