Lines Matching defs:maxx

169 		maxx: mx0 + mw0, maxy: my0 + toolButtonInterval + toolButtonInterval*i+mh0};
183 ctx.fillRect(r.minx, r.miny, r.maxx - r.minx, r.maxy - r.miny);
251 ret.maxx += offset.x;
261 maxx: r.maxx + offset, maxy: r.maxy + offset};
266 return r.minx < x && x < r.maxx && r.miny < y && y < r.maxy;
271 return r1.minx < r2.maxx && r2.minx < r1.maxx && r1.miny < r2.maxy && r2.miny < r1.maxy;
512 if(1 <= Math.abs(bounds.maxx - bounds.minx) && 1 <= Math.abs(bounds.maxy - bounds.miny)){
590 var xscale = ux === 0 ? 1 : (ux === 1 ? mx - bounds.minx : bounds.maxx - mx) / (bounds.maxx - bounds.minx);
604 (pt[prop] - bounds.maxx) * xscale + bounds.maxx;
635 maxx: Math.max(dragstart[0], mx),
826 case 1: x = (bounds.minx+bounds.maxx)/2, y = bounds.miny; break;
827 case 2: x = bounds.maxx, y = bounds.miny; break;
828 case 3: x = bounds.maxx, y = (bounds.miny+bounds.maxy)/2; break;
829 case 4: x = bounds.maxx, y = bounds.maxy; break;
830 case 5: x = (bounds.minx+bounds.maxx)/2, y = bounds.maxy; break;
840 return {minx: x - handleSize, miny: y - handleSize, maxx: x + handleSize, maxy: y + handleSize};
870 ctx.fillRect(r.minx, r.miny, r.maxx - r.minx, r.maxy-r.miny);
874 ctx.arc((r.minx + r.maxx) / 2., (r.miny + r.maxy) / 2, handleSize, 0, 2 * Math.PI, false);
878 ctx.rect(r.minx, r.miny, r.maxx - r.minx, r.maxy-r.miny);
1052 var maxx, maxy, minx, miny;
1055 if(maxx === undefined || maxx < x)
1056 maxx = x;
1065 return {minx: minx, miny: miny, maxx: maxx, maxy: maxy};
1083 maxx: this.points[0].x + width, maxy: this.points[0].y + height};
1119 maxx: this.points[0].x + width, maxy: this.points[0].y};
1653 function Button(minx, miny, maxx, maxy, ondraw, onclick){
1656 this.maxx = maxx;
1922 ctx.rect(bounds.minx, bounds.miny, bounds.maxx-bounds.minx, bounds.maxy-bounds.miny);
1931 ctx.fillRect(r.minx, r.miny, r.maxx - r.minx, r.maxy-r.miny);
1932 ctx.rect(r.minx, r.miny, r.maxx - r.minx, r.maxy-r.miny);