Lines Matching refs:h

31 mxLeanBoatShipment.prototype.paintVertexShape = function(c, x, y, w, h)  argument
35 c.moveTo(w * 0.15, h * 0.77);
37 c.lineTo(w * 0.85, h * 0.77);
39 c.moveTo(w * 0.2, h);
40 c.lineTo(0, h * 0.8);
41 c.lineTo(w, h * 0.8);
42 c.lineTo(w * 0.8, h);
85 mxLeanSafetyStock.prototype.paintVertexShape = function(c, x, y, w, h) argument
89 this.background(c, w, h);
91 this.foreground(c, w, h);
94 mxLeanSafetyStock.prototype.background = function(c, w, h) argument
96 c.rect(0, 0, w, h);
100 mxLeanSafetyStock.prototype.foreground = function(c, w, h) argument
103 c.moveTo(0, h * 0.34);
104 c.lineTo(w, h * 0.34);
105 c.moveTo(0, h * 0.66);
106 c.lineTo(w, h * 0.66);
156 mxLeanDataBox.prototype.paintVertexShape = function(c, x, y, w, h) argument
160 this.background(c, w, h);
162 this.foreground(c, w, h);
165 mxLeanDataBox.prototype.background = function(c, w, h) argument
168 c.moveTo(0, h);
171 c.lineTo(w, h);
175 mxLeanDataBox.prototype.foreground = function(c, w, h) argument
178 c.moveTo(0, h * 0.2);
179 c.lineTo(w, h * 0.2);
180 c.moveTo(0, h * 0.4);
181 c.lineTo(w, h * 0.4);
182 c.moveTo(0, h * 0.6);
183 c.lineTo(w, h * 0.6);
184 c.moveTo(0, h * 0.8);
185 c.lineTo(w, h * 0.8);
235 mxLeanCustomerSupplier.prototype.paintVertexShape = function(c, x, y, w, h) argument
239 this.background(c, w, h);
243 mxLeanCustomerSupplier.prototype.background = function(c, w, h) argument
246 c.moveTo(0, h);
247 c.lineTo(0, h * 0.3);
248 c.lineTo(w * 0.33, h * 0.02);
249 c.lineTo(w * 0.33, h * 0.3);
250 c.lineTo(w * 0.67, h * 0.02);
251 c.lineTo(w * 0.67, h * 0.3);
252 c.lineTo(w, h * 0.02);
253 c.lineTo(w, h);
302 mxLeanDedicatedProcess.prototype.paintVertexShape = function(c, x, y, w, h) argument
307 this.background(c, w, h);
309 this.foreground(c, w, h, fontSize);
312 mxLeanDedicatedProcess.prototype.background = function(c, w, h) argument
314 c.rect(0, 0, w, h);
318 mxLeanDedicatedProcess.prototype.foreground = function(c, w, h, fontSize) argument
320 var lineH = Math.min(fontSize * 1.5, h);
373 mxLeanSharedProcess.prototype.paintVertexShape = function(c, x, y, w, h) argument
378 this.background(c, w, h);
380 this.foreground(c, w, h, fontSize);
383 mxLeanSharedProcess.prototype.background = function(c, w, h) argument
385 c.rect(0, 0, w, h);
389 mxLeanSharedProcess.prototype.foreground = function(c, w, h, fontSize) argument
391 var lineH = Math.min(fontSize * 1.5, h);
405 while (start < h + w)
410 var startX = Math.max(0, start - h);
411 var startY = Math.min(start, h);
475 mxLeanWorkcell.prototype.paintVertexShape = function(c, x, y, w, h) argument
482 c.lineTo(w, h);
483 c.lineTo(w * 0.65, h);
484 c.lineTo(w * 0.65, h * 0.4);
485 c.lineTo(w * 0.35, h * 0.4);
486 c.lineTo(w * 0.35, h);
487 c.lineTo(0, h);
537 mxLeanInventoryBox.prototype.paintVertexShape = function(c, x, y, w, h) argument
542 c.moveTo(0, h);
544 c.lineTo(w, h);
549 c.moveTo(w * 0.4, h * 0.45);
550 c.lineTo(w * 0.6, h * 0.45);
551 c.moveTo(w * 0.5, h * 0.45);
552 c.lineTo(w * 0.5, h * 0.85);
553 c.moveTo(w * 0.4, h * 0.85);
554 c.lineTo(w * 0.6, h * 0.85);
600 mxLeanPushArrow.prototype.paintVertexShape = function(c, x, y, w, h) argument
603 this.background(c, w, h);
605 this.foreground(c, w, h);
608 mxLeanPushArrow.prototype.background = function(c, w, h) argument
611 c.moveTo(0, h * 0.17);
612 c.lineTo(w * 0.75, h * 0.17);
614 c.lineTo(w, h * 0.5);
615 c.lineTo(w * 0.75, h);
616 c.lineTo(w * 0.75, h * 0.83);
617 c.lineTo(0, h * 0.83);
622 mxLeanPushArrow.prototype.foreground = function(c, w, h, fontSize) argument
626 c.rect(0, h * 0.17, w * 0.12, h * 0.66);
628 c.rect(w * 0.24, h * 0.17, w * 0.12, h * 0.66);
630 c.rect(w * 0.48, h * 0.17, w * 0.12, h * 0.66);
634 c.moveTo(w * 0.72, h * 0.17);
635 c.lineTo(w * 0.75, h * 0.17);
637 c.lineTo(w, h * 0.5);
638 c.lineTo(w * 0.75, h);
639 c.lineTo(w * 0.75, h * 0.83);
640 c.lineTo(w * 0.72, h * 0.83);
685 mxLeanSupermarket.prototype.paintVertexShape = function(c, x, y, w, h) argument
692 c.lineTo(w, h);
693 c.lineTo(0, h);
694 c.moveTo(0, h * 0.33);
695 c.lineTo(w, h * 0.33);
696 c.moveTo(0, h * 0.67);
697 c.lineTo(w, h * 0.67);
747 mxLeanMaterialPull.prototype.paintVertexShape = function(c, x, y, w, h) argument
752 c.moveTo(w * 0.732, h * 0.0736);
753 c.arcTo(w * 0.4827, h * 0.4959, 0, 1, 0, w * 0.9553, h * 0.6191);
757 c.moveTo(w * 0.9071, h * 0.6191);
758 c.lineTo(w * 0.9794, h * 0.4951);
759 c.lineTo(w, h * 0.6438);
801 mxLeanFifoLane.prototype.paintVertexShape = function(c, x, y, w, h) argument
806 this.background(c, w, h, fontSize);
810 mxLeanFifoLane.prototype.background = function(c, w, h, fontSize) argument
812 var lineH = Math.min(fontSize * 1.5, h);
816 c.moveTo(0, h);
817 c.lineTo(w, h);
820 c.rect(w * 0.02, lineH + 4, w * 0.26, h - lineH - 8);
823 c.ellipse(w * 0.35, lineH + 4, w * 0.26, h - lineH - 8);
829 c.lineTo(w * 0.835, h - 4);
876 mxLeanTruckShipment.prototype.paintVertexShape = function(c, x, y, w, h) argument
880 this.background(c, w, h);
884 mxLeanTruckShipment.prototype.background = function(c, w, h) argument
886 c.rect(0, 0, w * 0.6, h * 0.8);
889 c.rect(w * 0.6, h * 0.35, w * 0.4, h * 0.45);
894 c.ellipse(w * 0.15, h * 0.8, w * 0.2, h * 0.2);
897 c.ellipse(w * 0.65, h * 0.8, w * 0.2, h * 0.2);
943 mxLeanProductionControl.prototype.paintVertexShape = function(c, x, y, w, h) argument
946 c.rect(0, 0, w, h);
997 mxLeanFifoSequence.prototype.paintVertexShape = function(c, x, y, w, h) argument
1003 c.moveTo(0, h);
1004 c.lineTo(w, h);
1005 c.moveTo(w * 0.05, h * 0.5);
1006 c.lineTo(w * 0.15, h * 0.5);
1007 c.moveTo(w * 0.75, h * 0.5);
1008 c.lineTo(w * 0.88, h * 0.5);
1014 c.moveTo(w * 0.88, h * 0.39);
1015 c.lineTo(w * 0.98, h * 0.5);
1016 c.lineTo(w * 0.88, h * 0.61);
1066 mxLeanProductionKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1072 c.moveTo(4, h - 10);
1090 c.moveTo(0, h - 10);
1091 c.lineTo(4, h);
1092 c.lineTo(8, h - 10);
1099 mxLeanProductionKanban.prototype.getConstraints = function(style, w, h) argument
1103 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 4, h));
1134 mxLeanWithdrawalKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1140 c.moveTo(4, h - 10);
1179 c.moveTo(0, h - 10);
1180 c.lineTo(4, h);
1181 c.lineTo(8, h - 10);
1188 mxLeanWithdrawalKanban.prototype.getConstraints = function(style, w, h) argument
1192 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 4, h));
1223 mxLeanSignalKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1229 c.moveTo(4, h - 10);
1245 c.moveTo(0, h - 10);
1246 c.lineTo(4, h);
1247 c.lineTo(8, h - 10);
1254 mxLeanSignalKanban.prototype.getConstraints = function(style, w, h) argument
1258 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, 4, h));
1289 mxLeanSequencedPullBall.prototype.paintVertexShape = function(c, x, y, w, h) argument
1292 c.ellipse(0, 0, w, h);
1299 c.ellipse(w * 0.15, h * 0.15, w * 0.7, h * 0.7);
1341 mxLeanRailShipment.prototype.paintVertexShape = function(c, x, y, w, h) argument
1345 c.rect(w * 0.1, 0, w * 0.35, h * 0.8);
1347 c.rect(w * 0.55, 0, w * 0.35, h * 0.8);
1351 c.moveTo(0, h);
1352 c.lineTo(w, h);
1353 c.moveTo(w * 0.45, h * 0.7);
1354 c.lineTo(w * 0.55, h * 0.7);
1357 c.ellipse(w * 0.15, h * 0.8, w * 0.06, h * 0.2);
1359 c.ellipse(w * 0.34, h * 0.8, w * 0.06, h * 0.2);
1361 c.ellipse(w * 0.6, h * 0.8, w * 0.06, h * 0.2);
1363 c.ellipse(w * 0.79, h * 0.8, w * 0.06, h * 0.2);
1411 mxLeanWarehouse.prototype.paintVertexShape = function(c, x, y, w, h) argument
1415 c.rect(0, 0, w, h);
1421 c.moveTo(0, h * 0.4);
1422 c.lineTo(w, h * 0.4);
1423 c.moveTo(w * 0.15, h);
1424 c.lineTo(w * 0.15, h * 0.55);
1425 c.lineTo(w * 0.3, h * 0.55);
1426 c.lineTo(w * 0.3, h);
1429 c.ellipse(w * 0.27, h * 0.75, w * 0.02, w * 0.02);
1479 mxLeanTimeline.prototype.paintVertexShape = function(c, x, y, w, h) argument
1505 c.moveTo(0, h);
1514 c.lineTo(currX, h);
1516 …c.text(currX - currTime * 0.5, h - fontSize * 0.75, 0, 0, names[i], mxConstants.ALIGN_CENTER, mxCo…
1521 c.lineTo(currX, h);
1556 mxLeanCrossDock.prototype.paintVertexShape = function(c, x, y, w, h) argument
1560 c.rect(0, 0, w, h);
1566 c.moveTo(0, h * 0.25);
1567 c.lineTo(w, h * 0.25);
1569 c.moveTo(w * 0.1, h * 0.4);
1570 c.lineTo(w * 0.35, h * 0.4);
1571 c.arcTo(w * 0.15, h * 0.15, 0, 0, 1, w * 0.5, h * 0.5);
1572 c.arcTo(w * 0.15, h * 0.15, 0, 0, 0, w * 0.65, h * 0.6);
1573 c.lineTo(w * 0.9, h * 0.6);
1576 c.moveTo(w * 0.1, h * 0.4);
1577 c.lineTo(w * 0.35, h * 0.4);
1578 c.arcTo(w * 0.15, h * 0.25, 0, 0, 1, w * 0.5, h * 0.55);
1579 c.arcTo(w * 0.15, h * 0.25, 0, 0, 0, w * 0.65, h * 0.7);
1580 c.lineTo(w * 0.9, h * 0.7);
1583 c.moveTo(w * 0.1, h * 0.4);
1584 c.lineTo(w * 0.35, h * 0.4);
1585 c.arcTo(w * 0.15, h * 0.3, 0, 0, 1, w * 0.5, h * 0.6);
1586 c.arcTo(w * 0.15, h * 0.3, 0, 0, 0, w * 0.65, h * 0.8);
1587 c.lineTo(w * 0.9, h * 0.8);
1590 c.moveTo(w * 0.1, h * 0.8);
1591 c.lineTo(w * 0.35, h * 0.8);
1592 c.arcTo(w * 0.15, h * 0.3, 0, 0, 0, w * 0.5, h * 0.6);
1593 c.arcTo(w * 0.15, h * 0.3, 0, 0, 1, w * 0.65, h * 0.4);
1594 c.lineTo(w * 0.9, h * 0.4);
1597 c.moveTo(w * 0.1, h * 0.8);
1598 c.lineTo(w * 0.35, h * 0.8);
1599 c.arcTo(w * 0.15, h * 0.1, 0, 0, 0, w * 0.5, h * 0.75);
1600 c.arcTo(w * 0.15, h * 0.1, 0, 0, 1, w * 0.65, h * 0.7);
1601 c.lineTo(w * 0.9, h * 0.7);
1651 mxLeanOrders.prototype.paintVertexShape = function(c, x, y, w, h) argument
1655 c.rect(0, h * 0.56, w, h * 0.44);
1662 c.moveTo(w * 0.04, h * 0.5418);
1663 c.lineTo(w * 0.94, h * 0.5418);
1664 c.moveTo(w * 0.0522, h * 0.5088);
1665 c.lineTo(w * 0.9522, h * 0.5088);
1666 c.moveTo(w * 0.05, h * 0.4738);
1667 c.lineTo(w * 0.95, h * 0.4738);
1668 c.moveTo(w * 0.0456, h * 0.4427);
1669 c.lineTo(w * 0.9456, h * 0.4427);
1670 c.moveTo(w * 0.0422, h * 0.4135);
1671 c.lineTo(w * 0.9422, h * 0.4135);
1672 c.moveTo(w * 0.0533, h * 0.3804);
1673 c.lineTo(w * 0.9533, h * 0.3804);
1674 c.moveTo(w * 0.0556, h * 0.3454);
1675 c.lineTo(w * 0.9556, h * 0.3454);
1676 c.moveTo(w * 0.05, h * 0.3143);
1677 c.lineTo(w * 0.95, h * 0.3143);
1678 c.moveTo(w * 0.0489, h * 0.2832);
1679 c.lineTo(w * 0.0489, h * 0.2832);
1680 c.moveTo(w * 0.0544, h * 0.254);
1681 c.lineTo(w * 0.9544, h * 0.254);
1682 c.moveTo(w * 0.0489, h * 0.221);
1683 c.lineTo(w * 0.9489, h * 0.221);
1684 c.moveTo(w * 0.0556, h * 0.1918);
1685 c.lineTo(w * 0.9556, h * 0.1918);
1686 c.moveTo(w * 0.0522, h * 0.1587);
1687 c.lineTo(w * 0.9522, h * 0.1587);
1688 c.moveTo(w * 0.0544, h * 0.1276);
1689 c.lineTo(w * 0.9544, h * 0.1276);
1690 c.moveTo(w * 0.0544, h * 0.0965);
1691 c.lineTo(w * 0.9544, h * 0.0965);
1692 c.moveTo(w * 0.0556, h * 0.0654);
1693 c.lineTo(w * 0.9556, h * 0.0654);
1694 c.moveTo(w * 0.0533, h * 0.0304);
1695 c.lineTo(w * 0.9533, h * 0.0304);
1747 mxLeanBatchedKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1754 c.moveTo(4, h * 0.5);
1755 c.lineTo(w, h * 0.5);
1759 c.moveTo(w * 0.5 - 20, h * 0.5 - 35);
1760 c.lineTo(w * 0.5 + 25, h * 0.5 - 35);
1761 c.lineTo(w * 0.5 + 40, h * 0.5 - 20);
1762 c.lineTo(w * 0.5 + 40, h * 0.5 + 15);
1763 c.lineTo(w * 0.5 - 20, h * 0.5 + 15);
1768 c.moveTo(w * 0.5 - 30, h * 0.5 - 25);
1769 c.lineTo(w * 0.5 + 15, h * 0.5 - 25);
1770 c.lineTo(w * 0.5 + 30, h * 0.5 - 10);
1771 c.lineTo(w * 0.5 + 30, h * 0.5 + 25);
1772 c.lineTo(w * 0.5 - 30, h * 0.5 + 25);
1777 c.moveTo(w * 0.5 - 40, h * 0.5 - 15);
1778 c.lineTo(w * 0.5 + 5, h * 0.5 - 15);
1779 c.lineTo(w * 0.5 + 20, h * 0.5);
1780 c.lineTo(w * 0.5 + 20, h * 0.5 + 35);
1781 c.lineTo(w * 0.5 - 40, h * 0.5 + 35);
1788 c.moveTo(w - 10, h * 0.5 - 4);
1789 c.lineTo(w, h * 0.5);
1790 c.lineTo(w - 10, h * 0.5 + 4);
1827 mxLeanControlCenter.prototype.paintVertexShape = function(c, x, y, w, h) argument
1830 c.rect(w * 0.15, 0, w * 0.7, h * 0.8);
1832 c.rect(0, h * 0.8, w, h * 0.2);
1991 mxShapeLeanTimeline.prototype.paintVertexShape = function(c, x, y, w, h) argument
2017 c.moveTo(0, h);
2029 c.lineTo(dx2, h);
2034 c.lineTo(dx2, h);
2041 c.lineTo(dx2, h);
2053 c.lineTo(dx3, h);
2058 c.lineTo(dx3, h);
2065 c.lineTo(dx3, h);
2077 c.lineTo(dx4, h);
2082 c.lineTo(dx4, h);
2089 c.lineTo(dx4, h);
2101 c.lineTo(dx5, h);
2106 c.lineTo(dx5, h);
2113 c.lineTo(dx5, h);
2125 c.lineTo(w, h);
2130 c.lineTo(w, h);
2137 c.lineTo(w, h);