Lines Matching refs:w

40 mxFloorplanWall.prototype.paintVertexShape = function(c, x, y, w, h)  argument
43 this.background(c, x, y, w, h);
46 mxFloorplanWall.prototype.background = function(c, x, y, w, h) argument
49 c.rect(0, h * 0.5 - wallTh * 0.5, w, wallTh);
89 mxFloorplanWallCorner.prototype.paintVertexShape = function(c, x, y, w, h) argument
92 this.background(c, x, y, w, h);
95 mxFloorplanWallCorner.prototype.background = function(c, x, y, w, h) argument
102 c.lineTo(w, 0);
103 c.lineTo(w, wallTh);
146 mxFloorplanWallU.prototype.paintVertexShape = function(c, x, y, w, h) argument
149 this.background(c, x, y, w, h);
152 mxFloorplanWallU.prototype.background = function(c, x, y, w, h) argument
159 c.lineTo(w, 0);
160 c.lineTo(w, h);
161 c.lineTo(w - wallTh, h);
162 c.lineTo(w - wallTh, wallTh);
205 mxFloorplanRoom.prototype.paintVertexShape = function(c, x, y, w, h) argument
208 this.background(c, x, y, w, h);
211 mxFloorplanRoom.prototype.background = function(c, x, y, w, h) argument
218 c.lineTo(w, 0);
219 c.lineTo(w, h);
223 c.lineTo(w - wallTh, h - wallTh);
224 c.lineTo(w - wallTh, wallTh);
265 mxFloorplanWindow.prototype.paintVertexShape = function(c, x, y, w, h) argument
268 this.background(c, x, y, w, h);
271 mxFloorplanWindow.prototype.background = function(c, x, y, w, h) argument
274 c.rect(0, h * 0.5 - wallTh * 0.5, w, wallTh);
279 c.lineTo(w, h * 0.5);
318 mxFloorplanDimension.prototype.paintVertexShape = function(c, x, y, w, h) argument
321 this.background(c, x, y, w, h);
324 mxFloorplanDimension.prototype.background = function(c, x, y, w, h) argument
328 c.lineTo(w, 20);
332 c.moveTo(w - 10, 15);
333 c.lineTo(w, 20);
334 c.lineTo(w - 10, 25);
337 c.moveTo(w, 15);
338 c.lineTo(w, h);
373 mxFloorplanDimensionBottom.prototype.paintVertexShape = function(c, x, y, w, h) argument
376 this.background(c, x, y, w, h);
379 mxFloorplanDimensionBottom.prototype.background = function(c, x, y, w, h) argument
383 c.lineTo(w, h - 20);
387 c.moveTo(w - 10, h - 15);
388 c.lineTo(w, h - 20);
389 c.lineTo(w - 10, h - 25);
392 c.moveTo(w, h - 15);
393 c.lineTo(w, 0);
428 mxFloorplanStairs.prototype.paintVertexShape = function(c, x, y, w, h) argument
431 var minW = Math.max(w, 50);
435 mxFloorplanStairs.prototype.background = function(c, x, y, w, h) argument
437 c.rect(0, 0, w, h);
445 for (var i = 25; i < w; i = i + step)
455 c.lineTo(w, h * 0.5);
456 c.moveTo(w - step, 0);
457 c.lineTo(w, h * 0.5);
458 c.lineTo(w - step, h);
568 mxFloorplanStairsRest.prototype.paintVertexShape = function(c, x, y, w, h) argument
571 var minW = Math.max(w, 50, h);
572 var minH = Math.min(w, h);
576 mxFloorplanStairsRest.prototype.background = function(c, x, y, w, h) argument
578 c.rect(0, 0, w, h);
586 for (var i = 25; i < w - h * 0.5; i = i + step)
596 c.lineTo(w, h * 0.5);
598 c.moveTo(w, 0);
599 c.lineTo(w - h * 0.5, h * 0.5);
600 c.lineTo(w, h);
602 c.moveTo(w - h * 0.5, 0);
603 c.lineTo(w - h * 0.5, h);
606 c.lineTo(w, h * 0.5);
641 mxFloorplanDoorLeft.prototype.paintVertexShape = function(c, x, y, w, h) argument
644 this.background(c, x, y, w, h);
647 mxFloorplanDoorLeft.prototype.background = function(c, x, y, w, h) argument
649 c.rect(0, 0, w, 5);
653 c.moveTo(w, 5);
654 c.arcTo(w, w, 0, 0, 1, 0, 5 + w);
690 mxFloorplanDoorRight.prototype.paintVertexShape = function(c, x, y, w, h) argument
693 this.background(c, x, y, w, h);
696 mxFloorplanDoorRight.prototype.background = function(c, x, y, w, h) argument
698 c.rect(0, 0, w, 5);
703 c.arcTo(w, w, 0, 0, 0, w, 5 + w);
704 c.lineTo(w, 5);
739 mxFloorplanDoorDouble.prototype.paintVertexShape = function(c, x, y, w, h) argument
742 this.background(c, x, y, w, h);
745 mxFloorplanDoorDouble.prototype.background = function(c, x, y, w, h) argument
747 var halfW = w * 0.5;
748 c.rect(0, 0, w, 5);
758 c.arcTo(halfW, halfW, 0, 0, 0, w, 5 + halfW);
759 c.lineTo(w, 5);
799 mxFloorplanDoorUneven.prototype.paintVertexShape = function(c, x, y, w, h) argument
802 this.background(c, x, y, w, h);
805 mxFloorplanDoorUneven.prototype.background = function(c, x, y, w, h) argument
807 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
809 c.rect(0, 0, w, 5);
818 c.arcTo(w - dx, w - dx, 0, 0, 0, w, 5 + w - dx);
819 c.lineTo(w, 5);
874 mxFloorplanDoorOpposing.prototype.paintVertexShape = function(c, x, y, w, h) argument
877 this.background(c, x, y, w, h);
880 mxFloorplanDoorOpposing.prototype.background = function(c, x, y, w, h) argument
882 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
884 c.rect(0, dx, w, 5);
893 c.arcTo(w - dx, w - dx, 0, 0, 0, w, 5 + w);
894 c.lineTo(w, dx + 5);
944 mxFloorplanDoorRevolving.prototype.paintVertexShape = function(c, x, y, w, h) argument
947 this.background(c, x, y, w, h);
950 mxFloorplanDoorRevolving.prototype.background = function(c, x, y, w, h) argument
952 var d = Math.min(w, h);
953 c.rect((w - d) * 0.5 , h * 0.5 - 2.5, d, 5);
956 c.rect(w * 0.5 - 2.5, (h - d) * 0.5, 5, d);
960 c.ellipse((w - d) * 0.5, (h - d) * 0.5, d, d);
1000 mxFloorplanDoorPocket.prototype.paintVertexShape = function(c, x, y, w, h) argument
1002 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
1009 c.rect(w - 5, h * 0.5 - 5, 5, 10);
1012 c.rect(0, h * 0.5 - 2.5, w - dx, 5);
1067 mxFloorplanDoorDoublePocket.prototype.paintVertexShape = function(c, x, y, w, h) argument
1069 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
1076 c.rect(w - dx - 5, h * 0.5 - 5, 5, 10);
1079 c.rect(0, h * 0.5 - 2.5, w * 0.5 - dx, 5);
1082 c.rect(w * 0.5 + dx, h * 0.5 - 2.5, w * 0.5 - dx, 5);
1137 mxFloorplanDoorBypass.prototype.paintVertexShape = function(c, x, y, w, h) argument
1139 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
1146 c.rect(w - 5, h * 0.5 - 5, 5, 10);
1149 c.rect(0, h * 0.5, w * 0.5, 5);
1152 c.rect(dx, h * 0.5 - 5, w * 0.5, 5);
1207 mxFloorplanDoorBifold.prototype.paintVertexShape = function(c, x, y, w, h) argument
1209 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
1217 c.rect(w - 5, h - 10, 5, 10);
1226 c.moveTo(w - 5, h - 10);
1227 c.lineTo(w - Math.max((dx - 10) * 0.5 + 5, 5), 0);
1228 c.lineTo(w - Math.max(dx, 5), h - 10);
1283 mxFloorplanDoorSlidingGlass.prototype.paintVertexShape = function(c, x, y, w, h) argument
1285 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
1292 c.rect(w - 5, h * 0.5 - 5, 5, 10);
1295 c.rect(0, h * 0.5, w * 0.5, 2);
1298 c.rect(dx, h * 0.5 - 2, w * 0.5, 2);
1349 mxFloorplanOverhead.prototype.paintVertexShape = function(c, x, y, w, h) argument
1356 c.rect(w - 5, h - 10, 5, 10);
1359 c.rect(5, 0, w - 10, h - 5);
1396 mxFloorplanOpening.prototype.paintVertexShape = function(c, x, y, w, h) argument
1403 c.rect(w - 5, 0, 5, h);
1444 mxFloorplanWindowGlider.prototype.paintVertexShape = function(c, x, y, w, h) argument
1446 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
1450 c.rect(0, h * 0.5 - 5, w, 10);
1453 c.rect(0, h * 0.5, w * 0.5, 1);
1456 c.rect(dx, h * 0.5 - 1, w * 0.5, 1);
1511 mxFloorplanWindowGarden.prototype.paintVertexShape = function(c, x, y, w, h) argument
1516 var paneW = (w - 14 - (windowPanes - 1) * d) / windowPanes;
1521 c.rect(w - 5, h - 10, 5, 10);
1527 c.lineTo(w - 5, 0);
1528 c.lineTo(w - 5, h);
1529 c.lineTo(w - 5 - d, h);
1530 c.lineTo(w - 5 - d, d);
1534 c.lineTo(w - 5 - d - i * paneW - (i - 1) * d, d);
1535 c.lineTo(w - 5 - d - i * paneW - (i - 1) * d, h);
1536 c.lineTo(w - 5 - 2 * d - (i - 1) * d - i * paneW, h);
1537 c.lineTo(w - 5 - 2 * d - (i - 1) * d - i * paneW, d);
1578 mxFloorplanWindowBow.prototype.paintVertexShape = function(c, x, y, w, h) argument
1582 var d = Math.min(w * 0.5, h);
1587 c.lineTo(w - d, (h + d) * 0.5);
1588 c.lineTo(w, (h - d) * 0.5);
1624 mxFloorplanWindowBay.prototype.paintVertexShape = function(c, x, y, w, h) argument
1628 var d = Math.min(w * 0.5, h);
1632 c.lineTo(w * 0.15, h * 0.6);
1633 c.lineTo(w * 0.35, h);
1634 c.lineTo(w * 0.65, h);
1635 c.lineTo(w * 0.85, h * 0.6);
1636 c.lineTo(w, 0);
1676 mxFloorplanDoorAccordion.prototype.paintVertexShape = function(c, x, y, w, h) argument
1678 var dx = w * Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
1680 var dx = Math.min(w - 5, dx);
1689 c.rect(w - 5, h * 0.5 - 5, 5, 10);
1753 mxFloorplanDoorDoubleAction.prototype.paintVertexShape = function(c, x, y, w, h) argument
1756 this.background(c, x, y, w, h);
1759 mxFloorplanDoorDoubleAction.prototype.background = function(c, x, y, w, h) argument
1761 c.rect(0, h * 0.5 - 2.5, w, 5);
1765 c.moveTo(w, h * 0.5 + 2.5);
1766 c.arcTo(w, w, 0, 0, 1, 0, h * 0.5 + 2.5 + w);
1773 c.moveTo(w, h * 0.5 - 2.5);
1774 c.arcTo(w, w, 0, 0, 0, 0, h * 0.5 - 2.5 - w);