Home | History | Annotate | Download | only in camera

Lines Matching refs:hysteresis

181         final float hysteresis = 20F;
191 if (Math.abs(delta) <= hysteresis) {
213 boolean verticalCheck = (y >= r.top - hysteresis)
214 && (y < r.bottom + hysteresis);
215 boolean horizCheck = (x >= r.left - hysteresis)
216 && (x < r.right + hysteresis);
219 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck) {
222 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) {
225 if ((Math.abs(r.top - y) < hysteresis) && horizCheck) {
228 if ((Math.abs(r.bottom - y) < hysteresis) && horizCheck) {