- 授权协议: LGPL
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: http://pymt.eu/
- 软件文档: http://pymt.eu/wiki/
软件介绍
PyMT 是一个 Python多点触摸用户界面库。
示例代码:
from pymt import *
class CircleDrawer(MTWidget):
'''Draw a circle at the position of all touches.'''
def draw(self):
set_color(1, 0, 0)
for touch in getCurrentTouches():
drawCircle(touch.pos, 50)
runTouchApp(CircleDrawer()