Lines Matching full:hysteresis
156 final float hysteresis = 20F;
165 if (Math.abs(delta) <= hysteresis) {
187 boolean verticalCheck = (y >= r.top - hysteresis) && (y < r.bottom + hysteresis);
188 boolean horizCheck = (x >= r.left - hysteresis) && (x < r.right + hysteresis);
191 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck) {
194 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) {
197 if ((Math.abs(r.top - y) < hysteresis) && horizCheck) {
200 if ((Math.abs(r.bottom - y) < hysteresis) && horizCheck) {