| /plugin/diagramsnet/lib/shapes/ |
| D | mxBasic.js | 18 this.dx = 0.5; 37 var dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 40 c.moveTo(w * 0.5 + dx, 0); 41 c.lineTo(w * 0.5 + dx, h * 0.5 - dx); 42 c.lineTo(w, h * 0.5 - dx); 43 c.lineTo(w, h * 0.5 + dx); 44 c.lineTo(w * 0.5 + dx, h * 0.5 + dx); 45 c.lineTo(w * 0.5 + dx, h); 46 c.lineTo(w * 0.5 - dx, h); 47 c.lineTo(w * 0.5 - dx, h * 0.5 + dx); [all …]
|
| D | mxArrows.js | 20 this.dx = 0.5; 51 var dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 58 c.lineTo(w - dx, dy); 59 c.lineTo(w - dx, 0); 61 c.lineTo(w - dx, h); 62 c.lineTo(w - dx, h - dy); 73 c.moveTo(w - dx, dy); 74 c.lineTo(w - dx, h - dy); 94 var dy, dx; 117 dx = Math.max(0, Math.min(h, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); [all …]
|
| D | mxInfographic.js | 260 this.dx = 10; 283 var dx = Math.max(0, Math.min(w * 0.5, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 287 c.lineTo(2 * dx, 0); 289 c.lineTo(w - 2 * dx, h); 300 …var dx = Math.max(0, Math.min(bounds.width / 2, parseFloat(mxUtils.getValue(this.state.style, 'dx'… 302 return new mxPoint(bounds.x + dx, bounds.y + bounds.height / 2); 314 var dx = Math.max(0, Math.min(w * 0.5, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 315 var w2 = w - 2 * dx; 318 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 2 * dx, 0)); 319 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 2 * dx + w2 * 0.5, 0)); [all …]
|
| D | mxFloorplan.js | 778 this.dx = 0.3; 807 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 813 c.moveTo(dx, 0); 814 c.lineTo(dx, 5); 815 c.arcTo(dx, dx, 0, 0, 1, 0, 5 + dx); 817 c.moveTo(dx, 5); 818 c.arcTo(w - dx, w - dx, 0, 0, 0, w, 5 + w - dx); 829 … var dx = Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.state.style, 'dx', this.dx)))); 831 return new mxPoint(bounds.x + dx * bounds.width, bounds.y + 5); 853 this.dx = 0.3; [all …]
|
| D | mxNetworks.js | 82 var dx = pe.x - p0.x; 85 p0.x = p0.x + dx * 0.05; 87 pe.x = pe.x - dx * 0.05; 89 dx = pe.x - p0.x; 92 var dist = Math.sqrt(dx * dx + dy * dy); 93 var nx = dx / dist; 95 var midX = p0.x + dx * 0.5;
|
| D | mxBootstrap.js | 1149 this.dx = 0.3; 1180 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 1232 c.rect(dx - hw * 0.5, 0, hw, h); 1236 c.moveTo(dx - hw * 0.25, h * 0.3); 1237 c.lineTo(dx + hw * 0.25, h * 0.3); 1238 c.moveTo(dx - hw * 0.25, h * 0.5); 1239 c.lineTo(dx + hw * 0.25, h * 0.5); 1240 c.moveTo(dx - hw * 0.25, h * 0.7); 1241 c.lineTo(dx + hw * 0.25, h * 0.7); 1247 c.ellipse(dx - barH, 0, 2 * barH, 2 * barH); [all …]
|
| D | mxAndroid.js | 992 this.dx = 0.3; 1015 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 1033 c.ellipse(dx - r, h * 0.5 - r, 2 * r, 2 * r); 1040 c.ellipse(dx - r, h * 0.5 - r, 2 * r, 2 * r); 1053 … var dx = Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.state.style, 'dx', this.dx)))); 1055 return new mxPoint(bounds.x + dx * bounds.width, bounds.y + bounds.height / 2); 1077 this.dx = 0.3; 1100 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx)))); 1118 c.ellipse(dx - r, h * 0.5 - r, 2 * r, 2 * r); 1127 c.lineTo(dx, h * 0.5); [all …]
|
| D | mxUML25.js | 11 this.dx = 0.5; 58 this.dx = 0.5; 146 this.dx = 0.5; 208 this.dx = 0.5;
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | DistanceGuides.js | 79 var dx = 0; 187 dx = midDx; 188 fixedDx = dx; 203 if (dx == 0 && eqCx == 0) 205 dx = curDx; 208 … else if (Math.abs(dx - curDx) <= (isMovingOne || (i == 1 && newStatePassed)? tolerance : 0)) 220 dx = midDx != 0? midDx : 0; 221 fixedDx = dx; 234 dx = fixedDx; 246 var dx = 0 [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/util/ |
| D | mxJsCanvas.js | 148 mxJsCanvas.prototype.translate = function(dx, dy) argument 150 this.state.dx += dx; 152 this.ctx.translate(dx, dy); 159 cx -= this.state.dx; 425 mxJsCanvas.prototype.setShadowOffset = function(dx, dy) argument 427 this.state.shadowDx = dx; 432 this.ctx.shadowOffsetX = dx; 490 mxJsCanvas.prototype.roundrect = function(x, y, w, h, dx, dy) argument 493 this.moveTo(x + dx, y); 494 this.lineTo(x + w - dx, y); [all …]
|
| /plugin/editonlink/ |
| D | script.js | 19 dx = e.offsetX + xya.left - x, // how far the click was from the button? 22 if ((dx*dx + dy*dy) < r*r) {
|
| /plugin/sequencediagram/bower_components/raphael/dev/ |
| D | raphael.vml.js | 62 compensation = function (deg, dx, dy) { argument 66 dx: m.x(dx, dy), 67 dy: m.y(dx, dy) 70 setCoords = function (p, sx, sy, dx, dy, deg) { argument 88 var c = compensation(deg, dx, dy); 89 dx = c.dx; 95 o.coordorigin = (dx * -kx) + S + (dy * -ky); 102 fill.position = c.dx * y + S + c.dy * y; 438 dx: 0, property 459 vbt = vbs ? "s" + [vbs.scale, vbs.scale] + "-1-1t" + [vbs.dx, vbs.dy] : E, [all …]
|
| /plugin/dx/ |
| D | plugin.info.txt | 1 base dx 7 url https://dokuwiki.org/plugin:dx
|
| /plugin/diagramsnet/lib/js/diagramly/graphml/ |
| D | mxGraphMlCodec.js | 40 var dx = edgesObj.dx, dy = edgesObj.dy; 44 this.importEdge(edges[j], graph, parent, dx, dy); 85 var dx = pe.x - p0.x 88 var x = p0.x + ratio * dx; 91 var d = Math.sqrt(dx*dx + dy*dy); 92 dx /= d; 96 y += dist * dx; 503 var dx = 0, dy = 0; 506 dx += p.geometry.x; 514 this.importNode(nodes[i], graph, parent, dx, dy); [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | output.png.class.php | 355 $dx = $sx*$scale_x; 357 $this->_fixSizes($dx, $dy); 362 $dx, $dy, 374 $dx = $this->_fixSizeX($sx * $scale); 383 $dx, $dy, 397 $dx = $this->_fixSizeX($sx * $scale); 408 $dx, $dy, 425 $dx = $this->_fixSizeX($sx * $scale); 437 $dx, $dy,
|
| D | box.inline.php | 26 function offset($dx, $dy) { argument 29 $this->left += $dx; 30 $this->right += $dx; 484 function offset($dx, $dy) { argument 487 $this->_lines[$i]->offset($dx, $dy); 489 GenericInlineBox::offset($dx, $dy);
|
| D | box.note-call.class.php | 17 function offset($dx, $dy) { argument 18 parent::offset($dx, $dy); 19 $this->_note_call_box->offset($dx, $dy);
|
| /plugin/diagramsnet/lib/js/grapheditor/ |
| D | Shapes.js | 782 …var dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'tabWidth', this.tabWidth… 796 dx = Math.max(dx, arcSize); 797 dx = Math.min(w - arcSize, dx); 810 c.lineTo(dx, 0); 811 c.lineTo(dx, dy); 816 c.moveTo(w - dx, dy); 817 c.lineTo(w - dx, 0); 936 var dx = 0; 940 dx = 10; 944 c.moveTo(dx, arcSize); [all …]
|
| /plugin/sketchcanvas/script/ |
| D | SketchCanvas.js | 445 if("dx" in p && "dy" in p && hitRect(pointHandle(p.dx, p.dy), mx - offset.x, my - offset.y)){ 563 var dx = mx - movebase[0]; 569 pt.x += dx; 573 pt.cx += dx, pt.cy += dy; 575 pt.dx += dx, pt.dy += dy; 665 var relmove = function(name, idx, dx, dy){ argument 669 if((name + "x") in p1) p1[name + "x"] += dx; 677 var dx = mx - pointMoving.points[pointMovingIdx].x; 683 relmove("c", 1, dx, dy); 684 relmove("d", 0, dx, dy); [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/vsdx/ |
| D | mxVsdxCanvas2D.js | 241 x = ((x - geo.x + s.dx) * s.scale); 256 mxVsdxCanvas2D.prototype.roundrect = function(x, y, w, h, dx, dy) argument 260 this.shape.appendChild(this.createCellElemScaled("Rounding", dx)); 279 x = (x - geo.x + s.dx) * s.scale; 315 x = (x - geo.x + s.dx) * s.scale; 340 x = (x - geo.x + s.dx) * s.scale; 371 x1 = (x1 - geo.x + s.dx) * s.scale; 374 x2 = (x2 - geo.x + s.dx) * s.scale; 410 x1 = (x1 - geo.x + s.dx) * s.scale; 413 x2 = (x2 - geo.x + s.dx) * s.scale; [all …]
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
| D | dhtmlxgantt_quick_info.js | 253 …qi.style.left = Math.min(Math.max(scrolls.x, pos.left - pos.dx*(width - pos.width)), screenWidth) … 257 if (pos.dx == 1){ 272 qi.className += " gantt_qi_"+(pos.dx == 1 ? "left" : "right"); 388 var dx = (left + domEv.offsetWidth/2) - scroll.x > (gantt.$container.offsetWidth/2) ? 1 : 0; 391 return { left:left, top:top, dx:dx, dy:dy,
|
| /plugin/refnotes/ |
| D | script.js | 56 move(event, dx, dy) { argument 60 offset : dx + ' ' + dy,
|
| /plugin/stlviewer/stlviewer/ |
| D | OrbitControls.js | 499 var dx = event.touches[ 0 ].pageX - event.touches[ 1 ].pageX; 501 var distance = Math.sqrt( dx * dx + dy * dy ); 558 var dx = event.touches[ 0 ].pageX - event.touches[ 1 ].pageX; 560 var distance = Math.sqrt( dx * dx + dy * dy );
|
| D | TrackballControls.js | 508 var dx = event.touches[ 0 ].pageX - event.touches[ 1 ].pageX; 510 _touchZoomDistanceEnd = _touchZoomDistanceStart = Math.sqrt( dx * dx + dy * dy ); 539 var dx = event.touches[ 0 ].pageX - event.touches[ 1 ].pageX; 541 _touchZoomDistanceEnd = Math.sqrt( dx * dx + dy * dy );
|
| /plugin/diagramsnet/lib/plugins/trees/ |
| D | trees.js | 312 graph.moveCells = function(cells, dx, dy, clone, target, evt, mapping) argument 349 dx = state2.getCenterX() - state1.getCenterX(); 554 var dx = 0; 572 dx = spacing + Math.max(dx, (Math.min(bbox.x + bbox.width, 588 dx = 0; 618 graph.moveCells(subtree, ((after) ? 1 : -1) * dx, ((after) ? 1 : -1) * dy); 661 var dx = cell.geometry.width + level; 666 dx = 0; 670 dx = 0; 675 dx = -level; [all …]
|