def setUseStabilizedPalm(self, useStabilized): self.leftHand.setUseStabilizedPalm(useStabilized) self.rightHand.setUseStabilizedPalm(useStabilized) settings.setGestureValue('useStabilizedPalm', useStabilized)
def setSmoothRange(self, windowSize): self.leftHand.setSmoothRange(windowSize) self.rightHand.setSmoothRange(windowSize) settings.setGestureValue('smoothRange', windowSize)
def setDwellRange(self, rangeInPixels): self.leftHand.setDwellRange(rangeInPixels) self.rightHand.setDwellRange(rangeInPixels) settings.setGestureValue('dwellRange', rangeInPixels)
def setAttentionStalePeriod(self, duration): self.leftHand.setAttentionStalePeriod(duration) self.rightHand.setAttentionStalePeriod(duration) settings.setGestureValue('attentionPeriod', duration)
def setDwellDuration(self, duration): self.leftHand.setDwellDuration(duration) self.rightHand.setDwellDuration(duration) settings.setGestureValue('dwellDuration', duration)
def setAcceleration(self, acceleration): self.acceleration = acceleration settings.setGestureValue('acceleration', acceleration)
def setPrescale(self, prescale): self.prescale = prescale settings.setGestureValue('prescale', prescale)
def setReleaseThreshold(self, threshold): self.releaseThreshold = threshold settings.setGestureValue('releaseThreshold', threshold)
def setGrabThreshold(self, threshold): self.grabThreshold = threshold settings.setGestureValue('grabThreshold', threshold)