PyMTPython的多点触摸界面库

联合创作 · 2023-09-28 07:50

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()
浏览 6
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报