Lines Matching refs:bbox

672                 var bbox = el._getBBox();
673 return rectPath(bbox.x, bbox.y, bbox.width, bbox.height);
676 var bbox = el._getBBox();
677 return rectPath(bbox.x, bbox.y, bbox.width, bbox.height);
1658 var bbox = curveDim.apply(null, p1x);
1660 x: bbox.min.x,
1661 y: bbox.min.y,
1662 x2: bbox.max.x,
1663 y2: bbox.max.y,
1664 width: bbox.max.x - bbox.min.x,
1665 height: bbox.max.y - bbox.min.y
1681 R.isPointInsideBBox = function (bbox, x, y) { argument
1682 return x >= bbox.x && x <= bbox.x2 && y >= bbox.y && y <= bbox.y2;
1942 var bbox = R.pathBBox(path);
1943 return R.isPointInsideBBox(bbox, x, y) &&
1944 interPathHelper(path, [["M", x, y], ["H", bbox.x2 + 10]], 1) % 2 == 1;
1974 if (pth.bbox) {
1975 return clone(pth.bbox);
2017 pth.bbox = clone(bb);
2675 if (sx == 1 && sy == 1 && !deg && _.bbox) {
2676 _.bbox.x += +dx;
2677 _.bbox.y += +dy;
3967 paperproto.getElementsByBBox = function (bbox) { argument
3970 if (R.isBBoxIntersect(el.getBBox(), bbox)) {
4105 if (_.dirty || _.dirtyT || !_.bbox) {
4110 _.bbox = pathDimensions(mapPath(this.realPath, this.matrix));
4111 _.bbox.toString = x_y_w_h;
4114 return _.bbox;
5554 var bb = font.face.bbox[split](separator),
5896 var bbox = o.getBBox(1);
5897 … $(o.pattern, {patternTransform: o.matrix.invert() + " translate(" + bbox.x + "," + bbox.y + ")"});
6482 var bbox = this.getBBox(1);
6483 cx = bbox.x + bbox.width / 2;
6484 cy = bbox.y + bbox.height / 2;
6518 var bbox = this.getBBox(1);
6520 cx = cx == null ? bbox.x + bbox.width / 2 : cx;
6521 cy = cy == null ? bbox.y + bbox.height / 2 : cy;
6658 var bbox = {};
6660 bbox = this.node.getBBox();
6664 bbox = bbox || {};
6667 return bbox;
7383 var bbox = o.getBBox(1);
7384 fill.position = bbox.x + S + bbox.y;
7385 o._.fillpos = [bbox.x, bbox.y];
7644 var bbox = this.getBBox(1);
7645 cx = bbox.x + bbox.width / 2;
7646 cy = bbox.y + bbox.height / 2;
7662 if (this._.bbox) {
7663 this._.bbox.x += dx;
7664 this._.bbox.y += dy;
7685 var bbox = this.getBBox(1);
7687 cx = cx == null ? bbox.x + bbox.width / 2 : cx;
7688 cy = cy == null ? bbox.y + bbox.height / 2 : cy;