进行多点触控绘图时如何忽略手掌?
一些多点触控绘图应用程序已实现了一些功能,可以防止用户在绘图时将手掌放在屏幕上时发生干扰。
它们如何过滤掉手掌的触摸事件,但允许绘图手指或手写笔的正确输入?
Several multitouch drawing applications have implemented features that prevent interference when a user rests their palm on the screen while drawing.
How do they filter out touch events from the palm of the hand, but allow the correct input from the drawing finger or stylus?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
忽略任何彼此靠近的多点触控输入,仅从单点(手指)获取数据。
Ignore any multi-touch inputs that are close to each other, only taking the data from the single point (the finger).
从触摸组中取出顶部 y 分量。
Take the top y component from the group of touches.