Lines Matching refs:bounds

3894 	      bounds = [[], []],
3951bounds[0][j] = (mt * mt * mt * x0) + (3 * mt * mt * t * x1) + (3 * mt * t * t * x2) + (t * t * t *…
3952bounds[1][j] = (mt * mt * mt * y0) + (3 * mt * mt * t * y1) + (3 * mt * t * t * y2) + (t * t * t *…
3955 bounds[0][jlen] = x0;
3956 bounds[1][jlen] = y0;
3957 bounds[0][jlen + 1] = x3;
3958 bounds[1][jlen + 1] = y3;
3959 bounds[0].length = bounds[1].length = jlen + 2;
3962 x0: mmin.apply(0, bounds[0]),
3963 y0: mmin.apply(0, bounds[1]),
3964 x1: mmax.apply(0, bounds[0]),
3965 y1: mmax.apply(0, bounds[1])
4110 function roundBounds(bounds) { argument
4112 x: Math.round(bounds.x),
4113 y: Math.round(bounds.y),
4114 width: Math.round(bounds.width),
4115 height: Math.round(bounds.height)
4136 function asTRBL(bounds) { argument
4138 top: bounds.y,
4139 right: bounds.x + (bounds.width || 0),
4140 bottom: bounds.y + (bounds.height || 0),
4141 left: bounds.x
4170 function getMid(bounds) { argument
4172 x: bounds.x + (bounds.width || 0) / 2,
4173 y: bounds.y + (bounds.height || 0) / 2
18982 this.getExternalLabelBounds = function(bounds, text) { argument
18988 x: bounds.width / 2 + bounds.x,
18989 y: bounds.height / 2 + bounds.y
18996 x: Math.round(bounds.x + bounds.width / 2 - layoutedDimensions.width / 2),
18997 y: Math.round(bounds.y),
19012 this.getTextAnnotationBounds = function(bounds, text) { argument
19015 box: bounds,
19022 x: bounds.x,
19023 y: bounds.y,
19024 width: bounds.width,
19689 bounds,
19693 if (label && label.bounds) {
19694 bounds = label.bounds;
19697 width: Math.max(DEFAULT_LABEL_SIZE.width, bounds.width),
19698 height: bounds.height
19702 x: bounds.x + bounds.width / 2,
19703 y: bounds.y + bounds.height / 2
19815 var bounds = semantic.di.bounds;
19820 x: Math.round(bounds.x),
19821 y: Math.round(bounds.y),
19822 width: Math.round(bounds.width),
19823 height: Math.round(bounds.height),
19839 if (!isPointInsideBBox$1(parentElement, getMid(bounds))) {
19936 var bounds,
19940 bounds = getExternalLabelBounds(semantic, element);
19947 bounds = this._textRenderer.getExternalLabelBounds(bounds, text);
19955 x: Math.round(bounds.x),
19956 y: Math.round(bounds.y),
19957 width: Math.round(bounds.width),
19958 height: Math.round(bounds.height)
20632 function createOutline(gfx, bounds) { argument
22315 function center(bounds) { argument
22317 x: bounds.x + (bounds.width / 2),
22318 y: bounds.y + (bounds.height / 2)
26007 var bounds = { class in getConnectedAtPosition
26022 var orientation = getOrientation(target, bounds, PLACEMENT_DETECTION_PAD);
29624 function topLeft(bounds) { argument
29626 x: bounds.x,
29627 y: bounds.y
29631 function bottomRight(bounds) { argument
29633 x: bounds.x + bounds.width,
29634 y: bounds.y + bounds.height
29638 function mid$2(bounds, defaultValue) { argument
29640 if (!bounds || isNaN(bounds.x) || isNaN(bounds.y)) {
29645 x: round$7(bounds.x + bounds.width / 2),
29646 y: round$7(bounds.y + bounds.height / 2)
30536 TextBox.prototype.create = function(bounds, style, value, options) { argument
30567 width: bounds.width + 'px',
30568 height: bounds.height + 'px',
30569 maxWidth: bounds.maxWidth + 'px',
30570 maxHeight: bounds.maxHeight + 'px',
30571 minWidth: bounds.minWidth + 'px',
30572 minHeight: bounds.minHeight + 'px',
30573 left: bounds.x + 'px',
30574 top: bounds.y + 'px',
30752 var bounds = parent.getBoundingClientRect();
30758 width: bounds.width,
30759 height: bounds.height,
30761 dy: height - bounds.height
30794 var bounds = parent.getBoundingClientRect();
30796 startWidth = bounds.width;
30797 startHeight = bounds.height;
30997 previousBounds = active.context.bounds,
31075 context.bounds,
35750 function resizeBounds$1(bounds, direction, delta) { argument
35755 x: bounds.x,
35756 y: bounds.y,
35757 width: bounds.width,
35758 height: bounds.height
35762 newBounds.y = bounds.y + dy;
35763 newBounds.height = bounds.height - dy;
35765 newBounds.height = bounds.height + dy;
35769 newBounds.width = bounds.width + dx;
35771 newBounds.x = bounds.x + dx;
35772 newBounds.width = bounds.width - dx;
35788 function resizeTRBL(bounds, resize) { argument
35790 x: bounds.x + (resize.left || 0),
35791 y: bounds.y + (resize.top || 0),
35792 width: bounds.width - (resize.left || 0) + (resize.right || 0),
35793 height: bounds.height - (resize.top || 0) + (resize.bottom || 0)
38833 bounds = context.newBounds,
38842 if (bounds.width > 5) {
38843 attr(frame, { x: bounds.x, width: bounds.width });
38846 if (bounds.height > 5) {
38847 attr(frame, { y: bounds.y, height: bounds.height });
39230 var bounds = this.getEditingBBox(element);
39232 assign(context, bounds);
39295 var bounds = { x: bbox.x, y: bbox.y }; class in AnonymousFunctionf8d14cd140200
39316 assign(bounds, {
39341 assign(bounds, {
39359 assign(bounds, {
39380 assign(bounds, {
39411 assign(bounds, {
39428 assign(bounds, {
39446 return { bounds: bounds, style: style };
39452 activeContextText, bounds) { argument
39464 width: element.width / bbox.width * bounds.width,
39465 height: element.height / bbox.height * bounds.height
42677 bounds: bpmnFactory.create('dc:Bounds')
42681 assign(di.label.bounds, {
42840 function asEdges(bounds) { argument
42844 x: bounds.x,
42845 y: bounds.y
42848 x: bounds.x + (bounds.width || 0),
42849 y: bounds.y
42854 x: bounds.x + (bounds.width || 0),
42855 y: bounds.y
42858 x: bounds.x + (bounds.width || 0),
42859 y: bounds.y + (bounds.height || 0)
42864 x: bounds.x,
42865 y: bounds.y + (bounds.height || 0)
42868 x: bounds.x + (bounds.width || 0),
42869 y: bounds.y + (bounds.height || 0)
42874 x: bounds.x,
42875 y: bounds.y
42878 x: bounds.x,
42879 y: bounds.y + (bounds.height || 0)
42958 function subtract(bounds, delta) { argument
42960 x: bounds.x - delta.x,
42961 y: bounds.y - delta.y,
42962 width: bounds.width,
42963 height: bounds.height
42986 function getWaypointsInsideBounds(waypoints, bounds) { argument
42990 return isInsideBounds(waypoint, bounds);
43000 function isInsideBounds(point, bounds) { argument
43001 return getOrientation(bounds, point, 1) === 'intersect';
47185 function resizeBounds(bounds, direction, delta) { argument
47186 var x = bounds.x,
47187 y = bounds.y,
47188 width = bounds.width,
47189 height = bounds.height,
48051 bounds: this.createDiBounds()
48056 BpmnFactory.prototype.createDiShape = function(semantic, bounds, attrs) { argument
48060 bounds: this.createDiBounds(bounds)
48065 BpmnFactory.prototype.createDiBounds = function(bounds) { argument
48066 return this.create('dc:Bounds', bounds);
48416 var bounds = target.bounds;
48418 if (!bounds) {
48419 bounds = this._bpmnFactory.createDiBounds();
48420 target.set('bounds', bounds);
48423 assign(bounds, {