作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试学习PyMT库,并试图实现一个我在网上找到的简单程序。但是,每次我在PyMT中打开脚本时,一旦打开它都会崩溃,我的代码中是否有任何不正确的东西会导致它崩溃?
from pymt import *
class Tracer(MTWidget):
def init(self):
self.lines = []
def on_touch_down(self, touch):
touch.userdata['line'] = list(touch.pos)
self.lines.append (touch.userdata['line'])
def on_touch_move(self, touch):
touch.userdata['line'].extend(touch.pos)
def draw(self) :
for touch in getAvailableTouchs():
drawLine(line)
w = MTWindow()
canvas = MTScatterPlane()
canvas.add_widget(Tracer())
w.add_widget(canvas)
runTouchApp()
最佳答案
因此,显然,如果您要导入的是.py文件,那是PyMT,您将无法创建ui...。有人知道我将如何设置UI吗?
关于python - Python PyMT脚本在打开时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4356827/
我是一名优秀的程序员,十分优秀!