Lines Matching refs:c

31 mxLeanBoatShipment.prototype.paintVertexShape = function(c, x, y, w, h)  argument
33 c.translate(x, y);
34 c.begin();
35 c.moveTo(w * 0.15, h * 0.77);
36 c.lineTo(w * 0.5, 0);
37 c.lineTo(w * 0.85, h * 0.77);
38 c.close();
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);
43 c.close();
44 c.fillAndStroke();
85 mxLeanSafetyStock.prototype.paintVertexShape = function(c, x, y, w, h) argument
87 c.translate(x, y);
89 this.background(c, w, h);
90 c.setShadow(false);
91 this.foreground(c, w, h);
94 mxLeanSafetyStock.prototype.background = function(c, w, h) argument
96 c.rect(0, 0, w, h);
97 c.fillAndStroke();
100 mxLeanSafetyStock.prototype.foreground = function(c, w, h) argument
102 c.begin();
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);
107 c.fillAndStroke();
156 mxLeanDataBox.prototype.paintVertexShape = function(c, x, y, w, h) argument
158 c.translate(x, y);
160 this.background(c, w, h);
161 c.setShadow(false);
162 this.foreground(c, w, h);
165 mxLeanDataBox.prototype.background = function(c, w, h) argument
167 c.begin();
168 c.moveTo(0, h);
169 c.lineTo(0, 0);
170 c.lineTo(w, 0);
171 c.lineTo(w, h);
172 c.fillAndStroke();
175 mxLeanDataBox.prototype.foreground = function(c, w, h) argument
177 c.begin();
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);
186 c.stroke();
235 mxLeanCustomerSupplier.prototype.paintVertexShape = function(c, x, y, w, h) argument
237 c.translate(x, y);
239 this.background(c, w, h);
240 c.setShadow(false);
243 mxLeanCustomerSupplier.prototype.background = function(c, w, h) argument
245 c.begin();
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);
254 c.close();
255 c.fillAndStroke();
302 mxLeanDedicatedProcess.prototype.paintVertexShape = function(c, x, y, w, h) argument
304 c.translate(x, y);
307 this.background(c, w, h);
308 c.setShadow(false);
309 this.foreground(c, w, h, fontSize);
312 mxLeanDedicatedProcess.prototype.background = function(c, w, h) argument
314 c.rect(0, 0, w, h);
315 c.fillAndStroke();
318 mxLeanDedicatedProcess.prototype.foreground = function(c, w, h, fontSize) argument
321 c.begin();
322 c.moveTo(0, lineH);
323 c.lineTo(w, lineH);
324 c.stroke();
373 mxLeanSharedProcess.prototype.paintVertexShape = function(c, x, y, w, h) argument
375 c.translate(x, y);
378 this.background(c, w, h);
379 c.setShadow(false);
380 this.foreground(c, w, h, fontSize);
383 mxLeanSharedProcess.prototype.background = function(c, w, h) argument
385 c.rect(0, 0, w, h);
386 c.fillAndStroke();
389 mxLeanSharedProcess.prototype.foreground = function(c, w, h, fontSize) argument
392 c.begin();
393 c.moveTo(0, lineH);
394 c.lineTo(w, lineH);
395 c.stroke();
401 c.begin();
403 c.setStrokeWidth(strokeWidth * 0.5);
420 c.moveTo(startX, startY);
421 c.lineTo(endX, endY);
426 c.stroke();
475 mxLeanWorkcell.prototype.paintVertexShape = function(c, x, y, w, h) argument
477 c.translate(x, y);
479 c.begin();
480 c.moveTo(0, 0);
481 c.lineTo(w, 0);
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);
488 c.close();
489 c.fillAndStroke();
537 mxLeanInventoryBox.prototype.paintVertexShape = function(c, x, y, w, h) argument
539 c.translate(x, y);
541 c.begin();
542 c.moveTo(0, h);
543 c.lineTo(w * 0.5, 0);
544 c.lineTo(w, h);
545 c.close();
546 c.fillAndStroke();
547 c.setShadow(false);
548 c.begin();
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);
555 c.stroke();
600 mxLeanPushArrow.prototype.paintVertexShape = function(c, x, y, w, h) argument
602 c.translate(x, y);
603 this.background(c, w, h);
604 c.setShadow(false);
605 this.foreground(c, w, h);
608 mxLeanPushArrow.prototype.background = function(c, w, h) argument
610 c.begin();
611 c.moveTo(0, h * 0.17);
612 c.lineTo(w * 0.75, h * 0.17);
613 c.lineTo(w * 0.75, 0);
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);
618 c.close();
619 c.fillAndStroke();
622 mxLeanPushArrow.prototype.foreground = function(c, w, h, fontSize) argument
625 c.setFillColor(strokeColor);
626 c.rect(0, h * 0.17, w * 0.12, h * 0.66);
627 c.fill();
628 c.rect(w * 0.24, h * 0.17, w * 0.12, h * 0.66);
629 c.fill();
630 c.rect(w * 0.48, h * 0.17, w * 0.12, h * 0.66);
631 c.fill();
633 c.begin();
634 c.moveTo(w * 0.72, h * 0.17);
635 c.lineTo(w * 0.75, h * 0.17);
636 c.lineTo(w * 0.75, 0);
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);
641 c.close();
642 c.fill();
685 mxLeanSupermarket.prototype.paintVertexShape = function(c, x, y, w, h) argument
687 c.translate(x, y);
689 c.begin();
690 c.moveTo(0, 0);
691 c.lineTo(w, 0);
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);
698 c.fillAndStroke();
747 mxLeanMaterialPull.prototype.paintVertexShape = function(c, x, y, w, h) argument
749 c.translate(x, y);
751 c.begin();
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);
754 c.stroke();
756 c.begin();
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);
760 c.close();
761 c.fillAndStroke();
801 mxLeanFifoLane.prototype.paintVertexShape = function(c, x, y, w, h) argument
803 c.translate(x, y);
806 this.background(c, w, h, fontSize);
807 c.setShadow(false);
810 mxLeanFifoLane.prototype.background = function(c, w, h, fontSize) argument
813 c.begin();
814 c.moveTo(0, lineH);
815 c.lineTo(w, lineH);
816 c.moveTo(0, h);
817 c.lineTo(w, h);
818 c.stroke();
820 c.rect(w * 0.02, lineH + 4, w * 0.26, h - lineH - 8);
821 c.fillAndStroke();
823 c.ellipse(w * 0.35, lineH + 4, w * 0.26, h - lineH - 8);
824 c.fillAndStroke();
826 c.begin();
827 c.moveTo(w * 0.69, lineH + 4);
828 c.lineTo(w * 0.98, lineH + 4);
829 c.lineTo(w * 0.835, h - 4);
830 c.close();
831 c.fillAndStroke();
876 mxLeanTruckShipment.prototype.paintVertexShape = function(c, x, y, w, h) argument
878 c.translate(x, y);
880 this.background(c, w, h);
881 c.setShadow(false);
884 mxLeanTruckShipment.prototype.background = function(c, w, h) argument
886 c.rect(0, 0, w * 0.6, h * 0.8);
887 c.fillAndStroke();
889 c.rect(w * 0.6, h * 0.35, w * 0.4, h * 0.45);
890 c.fillAndStroke();
893 c.setFillColor(strokeColor);
894 c.ellipse(w * 0.15, h * 0.8, w * 0.2, h * 0.2);
895 c.fillAndStroke();
897 c.ellipse(w * 0.65, h * 0.8, w * 0.2, h * 0.2);
898 c.fillAndStroke();
943 mxLeanProductionControl.prototype.paintVertexShape = function(c, x, y, w, h) argument
945 c.translate(x, y);
946 c.rect(0, 0, w, h);
947 c.fillAndStroke();
997 mxLeanFifoSequence.prototype.paintVertexShape = function(c, x, y, w, h) argument
999 c.translate(x, y);
1000 c.begin();
1001 c.moveTo(0, 0);
1002 c.lineTo(w, 0);
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);
1009 c.stroke();
1012 c.setFillColor(strokeColor);
1013 c.begin();
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);
1017 c.fillAndStroke();
1066 mxLeanProductionKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1068 c.translate(x, y);
1070 c.setDashed(true);
1071 c.begin();
1072 c.moveTo(4, h - 10);
1073 c.lineTo(4, 25);
1074 c.lineTo(w, 25);
1075 c.stroke();
1077 c.setDashed(false);
1078 c.begin();
1079 c.moveTo(w - 75, 0);
1080 c.lineTo(w - 30, 0);
1081 c.lineTo(w - 15, 15);
1082 c.lineTo(w - 15, 50);
1083 c.lineTo(w - 75, 50);
1084 c.close();
1085 c.fillAndStroke();
1088 c.setFillColor(strokeColor);
1089 c.begin();
1090 c.moveTo(0, h - 10);
1091 c.lineTo(4, h);
1092 c.lineTo(8, h - 10);
1093 c.close();
1094 c.fillAndStroke();
1134 mxLeanWithdrawalKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1136 c.translate(x, y);
1138 c.setDashed(true);
1139 c.begin();
1140 c.moveTo(4, h - 10);
1141 c.lineTo(4, 25);
1142 c.lineTo(w, 25);
1143 c.stroke();
1145 c.setDashed(false);
1146 c.begin();
1147 c.moveTo(w - 75, 0);
1148 c.lineTo(w - 30, 0);
1149 c.lineTo(w - 15, 15);
1150 c.lineTo(w - 15, 50);
1151 c.lineTo(w - 75, 50);
1152 c.close();
1153 c.fillAndStroke();
1155 c.begin();
1156 c.moveTo(w - 75, 45);
1157 c.lineTo(w - 70, 50);
1158 c.moveTo(w - 75, 35);
1159 c.lineTo(w - 60, 50);
1160 c.moveTo(w - 75, 25);
1161 c.lineTo(w - 50, 50);
1162 c.moveTo(w - 75, 15);
1163 c.lineTo(w - 40, 50);
1164 c.moveTo(w - 75, 5);
1165 c.lineTo(w - 30, 50);
1166 c.moveTo(w - 70, 0);
1167 c.lineTo(w - 20, 50);
1168 c.moveTo(w - 60, 0);
1169 c.lineTo(w - 15, 45);
1170 c.moveTo(w - 50, 0);
1171 c.lineTo(w - 15, 35);
1172 c.moveTo(w - 40, 0);
1173 c.lineTo(w - 15, 25);
1174 c.stroke();
1177 c.setFillColor(strokeColor);
1178 c.begin();
1179 c.moveTo(0, h - 10);
1180 c.lineTo(4, h);
1181 c.lineTo(8, h - 10);
1182 c.close();
1183 c.fillAndStroke();
1223 mxLeanSignalKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1225 c.translate(x, y);
1227 c.setDashed(true);
1228 c.begin();
1229 c.moveTo(4, h - 10);
1230 c.lineTo(4, 15);
1231 c.lineTo(w, 15);
1232 c.stroke();
1234 c.setDashed(false);
1235 c.begin();
1236 c.moveTo(w - 65, 0);
1237 c.lineTo(w - 25, 0);
1238 c.lineTo(w - 45, 45);
1239 c.close();
1240 c.fillAndStroke();
1243 c.setFillColor(strokeColor);
1244 c.begin();
1245 c.moveTo(0, h - 10);
1246 c.lineTo(4, h);
1247 c.lineTo(8, h - 10);
1248 c.close();
1249 c.fillAndStroke();
1289 mxLeanSequencedPullBall.prototype.paintVertexShape = function(c, x, y, w, h) argument
1291 c.translate(x, y);
1292 c.ellipse(0, 0, w, h);
1293 c.fillAndStroke();
1296 c.setFillColor(strokeColor);
1297 c.setShadow(false);
1299 c.ellipse(w * 0.15, h * 0.15, w * 0.7, h * 0.7);
1300 c.fillAndStroke();
1341 mxLeanRailShipment.prototype.paintVertexShape = function(c, x, y, w, h) argument
1343 c.translate(x, y);
1345 c.rect(w * 0.1, 0, w * 0.35, h * 0.8);
1346 c.fillAndStroke();
1347 c.rect(w * 0.55, 0, w * 0.35, h * 0.8);
1348 c.fillAndStroke();
1350 c.begin();
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);
1355 c.stroke();
1357 c.ellipse(w * 0.15, h * 0.8, w * 0.06, h * 0.2);
1358 c.fillAndStroke();
1359 c.ellipse(w * 0.34, h * 0.8, w * 0.06, h * 0.2);
1360 c.fillAndStroke();
1361 c.ellipse(w * 0.6, h * 0.8, w * 0.06, h * 0.2);
1362 c.fillAndStroke();
1363 c.ellipse(w * 0.79, h * 0.8, w * 0.06, h * 0.2);
1364 c.fillAndStroke();
1411 mxLeanWarehouse.prototype.paintVertexShape = function(c, x, y, w, h) argument
1413 c.translate(x, y);
1415 c.rect(0, 0, w, h);
1416 c.fillAndStroke();
1418 c.setShadow(false);
1420 c.begin();
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);
1427 c.stroke();
1429 c.ellipse(w * 0.27, h * 0.75, w * 0.02, w * 0.02);
1430 c.stroke();
1479 mxLeanTimeline.prototype.paintVertexShape = function(c, x, y, w, h) argument
1481 c.translate(x, y);
1503 c.begin();
1505 c.moveTo(0, h);
1514 c.lineTo(currX, h);
1515 c.lineTo(currX, fontSize * 1.5);
1516c.text(currX - currTime * 0.5, h - fontSize * 0.75, 0, 0, names[i], mxConstants.ALIGN_CENTER, mxCo…
1520 c.lineTo(currX, fontSize * 1.5);
1521 c.lineTo(currX, h);
1522c.text(currX - currTime * 0.5, fontSize * 0.75, 0, 0, names[i], mxConstants.ALIGN_CENTER, mxConsta…
1526 c.stroke();
1556 mxLeanCrossDock.prototype.paintVertexShape = function(c, x, y, w, h) argument
1558 c.translate(x, y);
1560 c.rect(0, 0, w, h);
1561 c.fillAndStroke();
1563 c.setShadow(false);
1565 c.begin();
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);
1574 c.stroke();
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);
1581 c.stroke();
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);
1588 c.stroke();
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);
1595 c.stroke();
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);
1602 c.stroke();
1651 mxLeanOrders.prototype.paintVertexShape = function(c, x, y, w, h) argument
1653 c.translate(x, y);
1655 c.rect(0, h * 0.56, w, h * 0.44);
1656 c.fillAndStroke();
1659 c.setStrokeWidth(strokeWidth * 0.5);
1661 c.begin();
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);
1696 c.moveTo(w * 0.0556, 0);
1697 c.lineTo(w * 0.9556, 0);
1698 c.stroke();
1747 mxLeanBatchedKanban.prototype.paintVertexShape = function(c, x, y, w, h) argument
1751 c.translate(x, y);
1753 c.begin();
1754 c.moveTo(4, h * 0.5);
1755 c.lineTo(w, h * 0.5);
1756 c.stroke();
1758 c.begin();
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);
1764 c.close();
1765 c.fillAndStroke();
1767 c.begin();
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);
1773 c.close();
1774 c.fillAndStroke();
1776 c.begin();
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);
1782 c.close();
1783 c.fillAndStroke();
1786 c.setFillColor(strokeColor);
1787 c.begin();
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);
1791 c.close();
1792 c.fillAndStroke();
1827 mxLeanControlCenter.prototype.paintVertexShape = function(c, x, y, w, h) argument
1829 c.translate(x, y);
1830 c.rect(w * 0.15, 0, w * 0.7, h * 0.8);
1831 c.fillAndStroke();
1832 c.rect(0, h * 0.8, w, h * 0.2);
1833 c.fillAndStroke();
1865 mxLeanElectronicInfoShape.prototype.paintEdgeShape = function(c, pts) argument
1892 c.begin();
1893 c.moveTo(p0.x, p0.y);
1894 c.lineTo(p4x, p4y);
1895 c.lineTo(p1x, p1y);
1896 c.lineTo(pe.x, pe.y);
1897 c.stroke();
1905 c.setFillColor(mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#000000'));
1906 c.begin();
1907 c.moveTo(pe.x - nx * 10 - ny * 5, pe.y - ny * 10 + nx * 5);
1908 c.lineTo(pe.x, pe.y);
1909 c.lineTo(pe.x - nx * 10 + ny * 5, pe.y - ny * 10 - nx * 5);
1910 c.fillAndStroke();
1926 mxLeanManualInfoShape.prototype.paintEdgeShape = function(c, pts) argument
1946 c.begin();
1947 c.moveTo(p0.x, p0.y);
1948 c.lineTo(pe.x, pe.y);
1949 c.stroke();
1951 c.setFillColor(mxUtils.getValue(this.style, mxConstants.STYLE_STROKECOLOR, '#000000'));
1952 c.begin();
1953 c.moveTo(pe.x - nx * 10 - ny * 5, pe.y - ny * 10 + nx * 5);
1954 c.lineTo(pe.x, pe.y);
1955 c.lineTo(pe.x - nx * 10 + ny * 5, pe.y - ny * 10 - nx * 5);
1956 c.fillAndStroke();
1991 mxShapeLeanTimeline.prototype.paintVertexShape = function(c, x, y, w, h) argument
1993 c.translate(x, y);
2008 c.begin();
2012 c.moveTo(0, 0);
2017 c.moveTo(0, h);
2024 c.lineTo(dx2, 0);
2029 c.lineTo(dx2, h);
2034 c.lineTo(dx2, h);
2035 c.lineTo(dx2, 0);
2040 c.lineTo(dx2, 0);
2041 c.lineTo(dx2, h);
2048 c.lineTo(dx3, 0);
2053 c.lineTo(dx3, h);
2058 c.lineTo(dx3, h);
2059 c.lineTo(dx3, 0);
2064 c.lineTo(dx3, 0);
2065 c.lineTo(dx3, h);
2072 c.lineTo(dx4, 0);
2077 c.lineTo(dx4, h);
2082 c.lineTo(dx4, h);
2083 c.lineTo(dx4, 0);
2088 c.lineTo(dx4, 0);
2089 c.lineTo(dx4, h);
2096 c.lineTo(dx5, 0);
2101 c.lineTo(dx5, h);
2106 c.lineTo(dx5, h);
2107 c.lineTo(dx5, 0);
2112 c.lineTo(dx5, 0);
2113 c.lineTo(dx5, h);
2120 c.lineTo(w, 0);
2125 c.lineTo(w, h);
2130 c.lineTo(w, h);
2131 c.lineTo(w, 0);
2136 c.lineTo(w, 0);
2137 c.lineTo(w, h);
2142 c.stroke();