Lines Matching refs:bounds

15809 …    var bounds = _util.Util.getAxialAlignedBoundingBox(group.bbox, currentCtx.mozCurrentTransform);
15812 bounds = _util.Util.intersect(bounds, canvasBounds) || [0, 0, 0, 0];
15813 var offsetX = Math.floor(bounds[0]);
15814 var offsetY = Math.floor(bounds[1]);
15815 var drawnWidth = Math.max(Math.ceil(bounds[2]) - offsetX, 1);
15816 var drawnHeight = Math.max(Math.ceil(bounds[3]) - offsetY, 1);
16382 …function createMeshCanvas(bounds, combinesScale, coords, colors, figures, backgroundColor, cachedC…
16386 var offsetX = Math.floor(bounds[0]);
16387 var offsetY = Math.floor(bounds[1]);
16388 var boundsWidth = Math.ceil(bounds[2]) - offsetX;
16389 var boundsHeight = Math.ceil(bounds[3]) - offsetY;
16458 var bounds = raw[5];
16478 …var temporaryPatternCanvas = createMeshCanvas(bounds, scale, coords, colors, figures, shadingFill …
18955 var bounds = task._bounds;
18957 var expanded = expandBounds(viewport.width, viewport.height, bounds);
18960 var div = bounds[i].div;
18965 divProperties.paddingLeft = bounds[i].left - expanded[i].left;
18966 divProperties.paddingTop = bounds[i].top - expanded[i].top;
18967 divProperties.paddingRight = expanded[i].right - bounds[i].right;
18968 divProperties.paddingBottom = expanded[i].bottom - bounds[i].bottom;
18976 b = bounds[i];
19028 var bounds = boxes.map(function (box, i) {
19039 expandBoundsLTR(width, bounds);
19041 bounds.forEach(function (b) {
19052 b = bounds[i];
19061 expandBoundsLTR(height, bounds);
19062 bounds.forEach(function (b) {
19070 function expandBoundsLTR(width, bounds) {
19071 bounds.sort(function (a, b) {
19088 bounds.forEach(function (boundary) {