Lines Matching refs:touch
108 """A touch sequence from beginning to end"""
126 def append(self, touch):
128 self.points.append(touch)
129 self.prange.update(touch.pressure)
131 if touch.pressure < self.device.up:
133 elif touch.pressure > self.device.down:
137 self.is_palm = touch.pressure > self.device.palm
141 self.is_thumb = touch.pressure > self.device.thumb
342 print("If the touch states do not match the interaction, re-run")
343 print("with --touch-thresholds=down:up using observed pressure values.")
386 "--touch-thresholds",
389 help="Thresholds when a touch is logically down or up",
395 help="Threshold when a touch is a palm",
401 help="Threshold when a touch is a thumb",
426 "This device does not have the capabilities for pressure-based touch detection."