Lines Matching refs:s

329 				var s = this.view.scale;
378 if ((mxUtils.intersects(box, new mxRectangle(state.x, state.y - 2, g.width * s, 3)) &&
381 (mxUtils.intersects(box, new mxRectangle(state.x - 2, state.y, 2, g.height * s)) &&
383 state.x + g.width * s - 2, state.y, 2, g.height * s)))
415 current.x + (offset.x - offset.width - 1) * s + ((offset.x == 0) ? current.width : 0),
418 offset.height - 1) * s + ((offset.y == 0) ? current.height : 0), current.width, 1))))
687 var s = this.view.scale;
690 … current.x + (offset.x - offset.width - 1) * s + ((offset.x == 0) ? current.width * s : 0),
696 …current.x, current.y + (offset.y - offset.height - 1) * s + ((offset.y == 0) ? current.height : 0),
798 var s = this.graph.view.scale;
804 guides.push(new mxRectangle(((layout.x + i) * pw + t.x) * s,
805 (layout.y * ph + t.y) * s, pw * s, ph * s));
810 guides.push(new mxRectangle((layout.x * pw + t.x) * s,
811 ((layout.y + j) * ph + t.y) * s, pw * s, ph * s));
2522 var s = this.currentScale;
2524 r = new mxRectangle((r.x + 2 * t.x) * s - t.x,
2525 (r.y + 2 * t.y) * s - t.y,
2526 r.width * s, r.height * s);
2539 var s = this.strokeWidth;
2543 s /= this.graph.currentScale;
2546 return s;
2561 var s = this.graph.currentScale;
2564 (b.x + t.x) * s, (b.y + t.y) * s,
2565 b.width * s, b.height * s);
2686 var s = Math.round(this.currentScale * 100) / 100;
2689 g.setAttribute('transform', 'scale(' + s + ',' + s + ')' +
3589 s = date[_ + "Seconds"](), variable
3609 s: s, property in flags
3610 ss: pad(s),
3938 var s = this.view.scale;
3940 var dx = t.x * s;
3941 var dy = t.y * s;
3957 var rect = (!ignoreCellAt) ? new mxRectangle(dx + pt.x * s, dy + pt.y * s).grow(40 * s) : null;
4147 createTarget(dx + pt.x * s, dy + pt.y * s, execute);
5866 var s = 'collapsible=0;recursiveResize=0;expand=0;pointerEvents=0;';
5869 ((title == null) ? 'fillColor=none;' : '') + s;
5872 'portConstraint=eastwest;startSize=' + startSize + ';' + s;
5873 …CellStyle = (firstCellStyle != null) ? firstCellStyle : 'swimlane;connectable=0;startSize=40;' + s;
5875 ((title == null) ? '40' : '0') + ';' + s;
9342 var s = this.gridSize;
9359 var child = this.moveCells([clones[i]], s, s, false)[0];
9576 var s = this.view.scale;
9578 min = min / s - ((horizontal) ? t.x : t.y);
9579 max = max / s - ((horizontal) ? t.x : t.y);
9763 var s = scale / vs;
9764 var w = Math.max(1, Math.ceil(bounds.width * s) + 2 * border) +
9766 var h = Math.max(1, Math.ceil(bounds.height * s) + 2 * border) +
9878 svgCanvas.scale(s);
11636 var s = this.graph.view.scale;
11637 var x = this.roundLength((this.bounds.x + this.currentDx) / s - t.x);
11638 var y = this.roundLength((this.bounds.y + this.currentDy) / s - t.y);
12287 var s = this.state.view.scale;
12289 this.hint.innerHTML = formatHintText(this.roundLength(this.bounds.width / s), unit) + ' x ' +
12290 formatHintText(this.roundLength(this.bounds.height / s), unit);
12367 var s = this.graph.view.scale;
12368 var x = this.roundLength(point.x / s - t.x);
12369 var y = this.roundLength(point.y / s - t.y);
12836 var s = mxConstants.HANDLE_SIZE;
12840 s -= 1;
12843 …return new mxRectangleShape(new mxRectangle(0, 0, s, s), mxConstants.HANDLE_FILLCOLOR, mxConstants…