Lines Matching refs:h

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
100 c.moveTo(0, h);
105 c.lineTo(wallTh, h);
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
157 c.moveTo(0, h);
160 c.lineTo(w, h);
161 c.lineTo(w - wallTh, h);
164 c.lineTo(wallTh, h);
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
216 c.moveTo(0, h);
219 c.lineTo(w, h);
222 c.lineTo(wallTh, h - wallTh);
223 c.lineTo(w - wallTh, h - 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);
278 c.moveTo(0, h * 0.5);
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
336 c.lineTo(0, h);
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
382 c.moveTo(0, h - 20);
383 c.lineTo(w, h - 20);
384 c.moveTo(10, h - 15);
385 c.lineTo(0, h - 20);
386 c.lineTo(10, h - 25);
387 c.moveTo(w - 10, h - 15);
388 c.lineTo(w, h - 20);
389 c.lineTo(w - 10, h - 25);
390 c.moveTo(0, h - 15);
392 c.moveTo(w, h - 15);
428 mxFloorplanStairs.prototype.paintVertexShape = function(c, x, y, w, h) argument
432 this.background(c, x, y, minW, h);
435 mxFloorplanStairs.prototype.background = function(c, x, y, w, h) argument
437 c.rect(0, 0, w, h);
448 c.lineTo(i, h);
454 c.moveTo(0, h * 0.5);
455 c.lineTo(w, h * 0.5);
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);
573 this.background(c, x, y, minW, 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)
589 c.lineTo(i, h);
595 c.moveTo(0, h * 0.5);
596 c.lineTo(w, h * 0.5);
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);
605 c.moveTo(0, h * 0.5);
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
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
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
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
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
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
1006 c.rect(dx, h * 0.5 - 5, 5, 10);
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
1073 c.rect(dx, h * 0.5 - 5, 5, 10);
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
1143 c.rect(0, h * 0.5 - 5, 5, 10);
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
1214 c.rect(0, h - 10, 5, 10);
1217 c.rect(w - 5, h - 10, 5, 10);
1223 c.moveTo(5, h - 10);
1225 c.lineTo(Math.max(dx, 5), h - 10);
1226 c.moveTo(w - 5, h - 10);
1228 c.lineTo(w - Math.max(dx, 5), h - 10);
1283 mxFloorplanDoorSlidingGlass.prototype.paintVertexShape = function(c, x, y, w, h) argument
1289 c.rect(0, h * 0.5 - 5, 5, 10);
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
1353 c.rect(0, h - 10, 5, 10);
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
1400 c.rect(0, 0, 5, h);
1403 c.rect(w - 5, 0, 5, h);
1444 mxFloorplanWindowGlider.prototype.paintVertexShape = function(c, x, y, w, h) argument
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
1519 c.rect(0, h - 10, 5, 10);
1521 c.rect(w - 5, h - 10, 5, 10);
1525 c.moveTo(5, h);
1528 c.lineTo(w - 5, h);
1529 c.lineTo(w - 5 - d, h);
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);
1541 c.lineTo(5 + d, h);
1578 mxFloorplanWindowBow.prototype.paintVertexShape = function(c, x, y, w, h) argument
1582 var d = Math.min(w * 0.5, h);
1585 c.moveTo(0, (h - d) * 0.5);
1586 c.lineTo(d, (h + d) * 0.5);
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);
1676 mxFloorplanDoorAccordion.prototype.paintVertexShape = function(c, x, y, w, h) argument
1686 c.rect(0, h * 0.5 - 5, 5, 10);
1689 c.rect(w - 5, h * 0.5 - 5, 5, 10);
1697 c.moveTo(5, h * 0.5);
1699 c.lineTo(5 + l * 0.3, h);
1701 c.lineTo(5 + l * 0.7, h);
1703 c.lineTo(5 + l, h * 0.5);
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);
1767 c.lineTo(0, h * 0.5 + 2.5);
1773 c.moveTo(w, h * 0.5 - 2.5);
1774 c.arcTo(w, w, 0, 0, 0, 0, h * 0.5 - 2.5 - w);
1775 c.lineTo(0, h * 0.5 - 2.5);