Lines Matching refs:threshold

24489 	        threshold: 10,
24527 return hasMoved && distance > options.threshold && direction & options.direction;
24566 threshold: 0,
24576 (Math.abs(input.scale - 1) > this.options.threshold || this.state & STATE_BEGAN);
24610 threshold: 9 // a minimal movement is ok, but keep it low
24620 var validMovement = input.distance < options.threshold;
24676 threshold: 0,
24686 (Math.abs(input.rotation) > this.options.threshold || this.state & STATE_BEGAN);
24707 threshold: 10,
24731 input.distance > this.options.threshold &&
24780 threshold: 9, // a minimal movement is ok, but keep it low
24792 var validMovement = input.distance < options.threshold;
25443 var pan = new Hammer.Pan({ threshold: 10 });
27374 threshold: 5, property in Dragging.defaultOptions
27443 if (!context.active && (activate || getLength(globalDelta) > context.threshold)) {
28425 relevantSegment, alignment, segmentLength, threshold;
28450 threshold = calculateSegmentMoveRegion(segmentLength) / 2;
28452 return threshold;
28458 threshold;
28464 threshold = calculateIntersectionThreshold(connection, intersection);
28466 if (isIntersectionMiddle(intersection, waypoints, threshold)) {
52947 var threshold = ORIENTATION_THRESHOLD[preferredLayout] || 0;
52949 var orientation = getOrientation(source, target, threshold);
53689 var threshold = BOUNDARY_TO_HOST_THRESHOLD$1;
53692 areCloseOnAxis(axis, end, target, threshold) ||
53696 }, threshold) ||
53697 areCloseOnAxis(axis, end, getMid(source), threshold)
53701 function areCloseOnAxis(axis, a, b, threshold) { argument
53702 return Math.abs(a[ axis ] - b[ axis ]) < threshold;