1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262
|
/*
* plot.i --
*
* Additional routines for plotting in Yorick.
*
*-----------------------------------------------------------------------------
*
* Copyright (C) 1996, Eric Thi�baut <thiebaut@obs.univ-lyon1.fr>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This file is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
*-----------------------------------------------------------------------------
*
* Routines:
* color_bar: add a color bar to a plot;
* pl3dj: plot disjoint lines in 3D space;
* pl3s: plot 3D surface;
* pl3t: plot text in 3D space;
* pl_box: draw a rectangle;
* pl_cbar: add a color bar to a plot;
* pl_cbox: draw a centered rectangle;
* pl_circle: draw a circle;
* pl_ellipse: draw an ellipse;
* pl_get_axis: parse axis settings;
* pl_get_color: parse color value/name;
* pl_get_font: parse font value/name;
* pl_get_symbol: parse symbol value/name;
* pl_img: plot an image with many options;
* pl_map: apply a function to all the elements of an array;
* pla: plot several curves at the same time;
* plh: plot in an "histogram" style;
* plhline: plot horizontal line across viewport;
* plp: plot points/error bars;
* pls: plot surface as a filled mesh with contours;
* plvline: plot vertical line across viewport;
* ps2png, ps2jpeg: convert PostScript file into bitmap image;
* win2png, win2jpeg: dump graphical window into bitmap image;
* win_copy_lim: copy plot limits between graphic windows;
* xbtn_plot: plot pseudo-GUI buttons;
* xbtn_which: manage pseudo-GUI buttons;
* xmouse: extended mouse interface;
* xmouse_box: interactively select and draw a rectangular region;
* xmouse_demo: simple demonstration of xmouse capabilities;
* xmouse_length: interactively measure a distance;
* xmouse_line: interactively select and draw a line;
* xmouse_point: interactively select and draw point(s);
* xwindow: setup viewport and graphic style of graphic windows;
*
* History:
* $Id: plot.i,v 1.22 2008/09/04 07:19:30 eric Exp $
* $Log: plot.i,v $
* Revision 1.22 2008/09/04 07:19:30 eric
* - Some documentation fixes.
*
* Revision 1.21 2008/07/12 06:41:25 eric
* - Added c-basic-offset for Emacs.
*
* Revision 1.20 2008/07/11 20:43:17 eric
* - New routines: pl_img and pl_cbar.
*
* Revision 1.19 2007/07/25 17:02:19 eric
* - Some changes in pl_get_palette.
*
* Revision 1.18 2007/07/02 22:16:42 eric
* - Added "utils.i" as a required file.
*
* Revision 1.17 2007/07/02 22:15:18 eric
* - New routines: ps2png, ps2jpeg, win2png and win2jpeg.
*
* Revision 1.16 2007/05/31 07:14:09 eric
* - Fixed pl_get_color when argument is already a RGB triplet.
*
* Revision 1.15 2007/03/19 16:52:48 eric
* - Automatically include "style.i" is function `xwindow`.
*
* Revision 1.14 2007/02/06 12:05:18 eric
* Heavy changes in pl_get_color:
* a. allow for named colors from the X11 RGB database (more than 600
* color names);
* b. always return a color as a char array (either indexed color
* or [R,G,B] triplet); this should fix a bug which prevent to
* choose the inside color in plp;
* c. allow for multiple colors (array of colors);
* d. allow for packed RGB colors.
*
* Revision 1.13 2007/02/01 10:20:16 eric
* Quick reference for all routines added in top comment of this file.
*
* Revision 1.12 2007/02/01 10:09:22 eric
* There are a lot of changes this time:
*
* - 'plp' improved so that it is possible to draw 'transparent'
* symbols and to specify a different color for the inside and
* outline of the symbols;
*
* - new routines: 'pl_get_symbol', 'pl_get_color', 'pl_get_font',
* 'pl_get_axis' to parse and check values of standard graphic
* keywords;
*
* - new routine: 'xwindow' to manage graphic windows and setup
* viewport and graphic style;
*
* - new routines: 'xbtn_plot', 'xbtn_which' to create and manage
* GUI buttons in graphic windows;
*
* - new interactive routines: 'xmouse', 'xmouse_point', 'xmouse_box',
* 'xmouse_line', 'xmouse_length' and 'xmouse_demo';
*
* - new plotting routines to draw simple shapes: 'pl_box', 'pl_cbox',
* 'pl_circle', 'pl_ellipse';
*
* - new utility routine: 'pl_map' to apply a function to all the
* elements of an array.
*
* Revision 1.11 2007/01/16 08:15:01 eric
* - Fixed coding style and (some) documentation.
* - New functions plhline and plvline.
*
* Revision 1.10 2002/05/14 10:03:49 eric
* - plp: use directly plfp instead of plmk to plot symbols and ticks.
* - plp: draw each symbol inside a unit circle so that they look the
* same size.
* - plp: new "star" symbol (SYMBOL=8) and draw polygon for SYMBOL>=9.
* - plp: new keywords XLO, XHI, YLO, YHI to draw non-symmetrical error
* bars and FILL to draw filled symbols.
* - plp: removed unused keyword HIDE.
*
* Revision 1.9 2001/11/15 09:46:19 eric
* - Mock check-in to synchronize version numbers because RCS
* master file was lost.
*
* Revision 1.8 2001/06/21 12:45:17 eric
* - fix indentation and floating point representation.
*
* Revision 1.7 1997/04/03 15:52:39 eric
* Added routines color_bar and pl_fc.
*
* Revision 1.6 1996/11/22 11:42:02 eric
* - Add keyword ASPECT for plp.
*
* 02/20/96 Eric THIEBAUT: plp;
* 02/20/96 release 1.1.
* 02/21/96 Eric THIEBAUT: plh;
* 02/21/96 release 1.2.
* 02/21/96 Christophe PICHON and Eric THIEBAUT: pla;
* 03/04/96 Eric THIEBAUT (from routines written by Christophe PICHON
* and David MUNRO): pl3s, pl3dj pl3t;
* 03/04/96 release 1.3.
* 03/04/96 Eric THIEBAUT: added more symbols in plp;
* 24/03/96 Eric THIEBAUT: added "box" keyword in pl3s and fix some bugs;
* 24/03/96 release 1.4.
* May 3, 1996 by Eric THIEBAUT: added point symbol in routine plp;
*
*-----------------------------------------------------------------------------
*/
require, "utils.i";
func pl_fc(z, y, x, ireg, levs=, legend=, hide=, type=, width=, color=,
colors=, smooth=, marks=, marker=, mspace=, mphase=,
triangle=, region=)
{
d= dimsof(z);
if (d(1) != 2)
error, "expecting a 2D array for Z";
nx= d(2);
ny= d(3);
if (is_void(x))
x= span(1, nx, nx)(,-:1:ny);
else if (dimsof(x)(1) == 1)
x= x(,-:1:ny);
if (is_void(y))
y= span(1, ny, ny)(-:1:nx,);
else if (dimsof(y)(1) == 1)
y= y(-:1:nx,);
if (is_void(levs)) {
zmin= min(z);
zmax= max(z);
if (zmin >= zmax) levs= zmin;
else levs= zmin+indgen(9)*0.1*(zmax-zmin);
}
plfc, z, y, x, ireg, levs=levs, colors=colors,
triangle=triangle, region=region;
plc, z, y, x, ireg, levs=levs, legend=legend, hide=hide, type=type,
width=width, color=color, smooth=smooth, marks=marks, marker=marker,
mspace=mspace, mphase=mphase, triangle=triangle, region=region;
}
/*---------------------------------------------------------------------------*/
func pl_img(img, clear=, cmin=, cmax=, zformat=, keeplimits=,
normalize=, pixelbias=, pixelsize=, pixelref=, pixelunits=)
/* DOCUMENT pl_img, img;
*
* Plot image IMG in current graphics window.
*
* Keyword CLEAR can be used to call fma command (which see): if CLEAR >
* 0, fma is called prior to drawing the image; if CLEAR < 0, fma is
* called after drawing the image (useful in animate mode); if CLEAR = 0
* or undefined, then fma is not called.
*
* Keyword ZFORMAT can be used to specify the format for the color bar
* labels (see pl_cbar).
*
* Keywords PIXELSIZE, PIXELBIAS and PIXELREF can be set to specify the
* pixel coordinates. The coordinate of the center of j-th pixel is
* given by:
*
* PIXELBIAS + PIXELSIZE*(j - PIXELREF)
*
* The default settings are PIXELBIAS=1.0, PIXELSCALE=1.0 and
* PIXELREF=1.0 (i.e. same coordinates as Yorick's indexing rules).
*
* Keyword PIXELUNITS can be used to specify the label(s) of the axis.
*
* PIXELSIZE, PIXELBIAS, PIXELREF and PIXELUNITS can have 1 or 2 elements
* to specify same or different settings for the X and Y axis.
*
* Keywords CMIN and CMAX can be used to specify cut levels for the
* display (see pli). If keyword NORMALIZE (see below) is true, CMIN and
* CMAX are in units of normalized intensity.
*
* If keyword NORMALIZE is true, the flux is normalized --- divided by
* the pixel area that is: PIXELSIZE(1)*PIXELSIZE(0).
*
*
* SEE ALSO:
* pli, fma, animate, pl_cbar, xytitles.
*/
{
dims = dimsof(img);
if (is_void(dims) || dims(1) != 2) {
error, "expecting a 2-D image";
}
width = dims(2);
height = dims(3);
if (is_void(pixelref)) {
pixelref = 1.0;
}
if (is_void(pixelbias)) {
pixelbias = 1.0;
}
if (is_void(pixelsize)) {
pixelsize = 1.0;
}
if (is_void(normalize)) {
scl = 1.0;
} else {
scl = 1.0/(pixelsize(1)*pixelsize(0));
if (scl != 1.0) {
img *= scl;
}
}
if (is_void(cmin)) cmin = min(img);
if (is_void(cmax)) cmax = max(img);
xsize = pixelsize(1);
ysize = pixelsize(0);
xbias = pixelbias(1);
ybias = pixelbias(0);
xref = pixelref(1);
yref = pixelref(0);
x0 = xbias + xsize*(0.5 - xref);
x1 = xbias + xsize*(width + 0.5 - xref);
y0 = ybias + ysize*(0.5 - yref);
y1 = ybias + ysize*(height + 0.5 - yref);
if (clear && clear > 0) {
fma;
}
pli, img, x0, y0, x1, y1, cmin=cmin, cmax=cmax;
local red, green, blue;
palette, red, green, blue, query=1;
ncolors = numberof(red);
levs = span(cmin, cmax, ncolors + 1);
colors = indgen(ncolors);
pl_cbar, cmin=cmin, cmax=cmax, vert=1, nlabs=11, format=zformat;
if (! is_void(pixelunits)) {
xytitles, pixelunits(1), pixelunits(0);
}
if (clear && clear < 0) {
fma;
}
}
func pl_cbar(z, cmin=, cmax=, vert=, nlabs=, adjust=,
color=, font=, height=, opaque=, orient=,
width=, ticklen=, thickness=, vport=, format=)
/* DOCUMENT pl_cbar, z;
* -or- pl_cbar, cmin=CMIN, cmax=CMAX;
*
* Draw a color bar below the current coordinate system the colors and
* the associated label values are from min(Z) to max(Z) -- alternatively
* keywords CMIN and CMAX can be specified. With the VERT=1 keyword the
* color bar appears to the left of the current coordinate system (vert=0
* is the default).
*
* Keyword NLABS can be used to choose the number of displayed labels; by
* default, NLABS=11 which correspond to a label every 10% of the
* dynamic; use NLABS=0 to suppress all labels. The format of the labels
* can be specified with keyword FORMAT; by default FORMAT= "%.3g". The
* font type, font height and text orientation for the labels can be set
* with keywords FONT (default "helvetica"), HEIGHT (default 14 points)
* and ORIENT respectively.
*
* By default the colorbar is drawn next to the current viewport; other
* viewport coordinates can be given by VPORT=[xmin,xmax,ymin,ymax].
* Keyword ADJUST can be used to move the bar closer to (adjust<0) or
* further from (adjust>0) the viewport.
*
* Keyword COLOR can be used to specify the color of the labels, the
* ticks and the frame of the colorbar. Default is foreground color.
*
* Keyword WIDTH can be used to set the width of the lines used to draw
* the frame and the ticks of the colorbar.
*
* Keyword TICKLEN can be used to set the lenght (in NDC units) of the
* ticks. Default is 0.007 NDC.
*
* Keyword THICKNESS can be used to set the thickness of the colorbar (in
* NDC units). Default is 0.020 NDC.
*
*
* SEE ALSO: pl_img, pli, plt, pldj, plg, viewport.
*/
{
if (is_void(cmin)) cmin = min(z);
if (is_void(cmax)) cmax = max(z);
if (is_void(vport)) vport = viewport();
if (is_void(adjust)) adjust = 0.0;
if (is_void(ticklen)) ticklen = 0.007;
if (is_void(thickness)) thickness = 0.020;
if (is_void(nlabs)) nlabs = 11;
local red, green, blue;
palette, red, green, blue, query=1;
ncolors = numberof(red);
if (ncolors < 2) {
ncolors = 240;
}
levs = span(cmin, cmax, ncolors + 1);
cells = char(indgen(0 : ncolors - 1));
linetype = 1; /* "solid" */
if (vert) {
x0 = vport(2) + adjust + 0.022;
x1 = x0 + thickness;
y0 = vport(3);
y1 = vport(4);
cells = cells(-,);
} else {
x0 = vport(1);
x1 = vport(2);
y0 = vport(3) - adjust - 0.045;
y1 = y0 - thickness;
cells = cells(,-);
}
sys = plsys(0);
pli, cells, x0, y0, x1, y1;
if (is_void(width) || width != 0) {
plg, [y0,y0,y1,y1], [x0,x1,x1,x0], closed=1,
color=color, width=width, type=linetype, marks=0;
}
if (nlabs) {
if (is_void(format)) format= "%.3g";
text = swrite(format=format, span(cmin, cmax, nlabs));
local lx0, lx1, lx2, ly0, ly1, ly2;
if (vert) {
lx0 = array(x1, nlabs);
lx1 = array(x1 + ticklen, nlabs);
lx2 = array(x1 + 1.67*ticklen, nlabs);
ly0 = span(y0, y1, nlabs);
eq_nocopy, ly1, ly0;
eq_nocopy, ly2, ly0;
justify = "LH";
} else {
ly0 = array(y1, nlabs);
ly1 = array(y1 - ticklen, nlabs);
ly2 = array(y1 - 1.67*ticklen, nlabs);
lx0 = span(x0, x1, nlabs);
eq_nocopy, lx1, lx0;
eq_nocopy, lx2, lx0;
justify = "CT";
}
if (ticklen && (is_void(width) || width != 0)) {
pldj, lx0, ly0, lx1, ly1,
color=color, width=width, type=linetype;
}
for (i = 1; i <= nlabs; ++i) {
plt, text(i), lx2(i), ly2(i), tosys=0, color=color, font=font,
height=height, opaque=opaque, orient=orient, justify=justify;
}
}
plsys, sys;
}
func color_bar(levs, colors, vert=, labs=, adjust=, color=, width=,
height=, ticklen=, vport=, format=, font=)
/* DOCUMENT color_bar;
or color_bar, levs, colors;
Note: pl_cbar (which see) is probably a better routine.
Draw a color bar below the current coordinate system. If LEVS is not
specified uses plfc_levs (set by previous call to plfc). If COLORS is
specified, it should have one more value than LEVS, otherwise equally
spaced colors are chosen, or plfc_colors if plfc_levs was used. With
the VERT=1 keyword the color bar appears to the left of the current
coordinate system (vert=0 is default). By default, color_bar will
attempt to label some of the color interfaces. With the LABS keyword,
you can force the labelling algorithm as follows: LABS=0 supresses all
labels, LABS=n forces a label at every n-th interface, LABS=[i,n]
forces a label every n-th interface starting at i-th interface
(0<=i<=numberof(LEVS)).
You can specify the viewport coordinates by keyword
VPORT=[xmin,xmax,ymin,ymax]; by default the colorbar is drawn next to
the current viewport. You can use the ADJUST keyword to move the bar
closer to (adjust<0) or further from (adjust>0) the viewport.
You can specify the string format for labels with keyword FORMAT
(default "%g"), the font type with keyword FONT (default "helvetica")
and the font height with keyword HEIGHT (default 14 points).
Keyword COLOR can be used to specify the color of the labels, the
ticks and the frame of the colorbar. Default is foreground color.
Keyword WIDTH can be used to set the width of the lines used to draw
the frame and the ticks of the colorbar.
Keyword TICKLEN can be used to set the lenght (in NDC units) of the
ticks. Default is 0.005 NDC.
SEE ALSO: pl_cbar, plfc. */
{
nil = string(0);
if (is_void(levs)) {
if (is_void(plfc_levs)) error, "no levels specified";
levs = plfc_levs;
n = numberof(levs)+1;
if (is_void(colors)) colors = plfc_colors;
} else {
n = numberof(levs) + 1;
if (is_void(colors)) colors = bytscl(span(1,n,n),cmin=0.5,cmax=n+0.5);
}
if (n != numberof(colors))
error, "numberof(colors) must be one more than numberof(levs)";
if (is_void(vport)) vport = viewport();
if (is_void(adjust)) adjust = 0.0;
if (is_void(ticklen)) ticklen = 0.005;
dx = dy = 0.0;
if (vert) {
x = (vport(2)+adjust+[0.022,0.042])(-:1:n+1,);
dx = ticklen;
y = span(vport(3),vport(4),n+1)(,-:1:2);
} else {
y = (vport(3)-adjust-[0.045,0.065])(-:1:n+1,);
dy = -ticklen;
x = span(vport(1),vport(2),n+1)(,-:1:2);
}
sys = plsys(0);
plf,[colors],y,x,edges=1,ecolor=color,legend=nil;
plsys, sys;
if (is_void(labs) || labs(0) > 0) {
if (numberof(levs) > 1) {
dz = levs(dif);
if (numberof(dz) != numberof(levs) - 1 ||
anyof((dz > 0.0) != (dz(1) > 0.0)) || !dz(1))
error, "levs must be monotone 1D";
levs = levs(1:0);
levs = grow([2*levs(1)-levs(2)],levs,[2*levs(0)-levs(-1)]);
} else {
levs= double(levs(1));
if (!levs) levs= [-1.0,levs,1.0];
else levs= [0.0,levs,2*levs];
}
if (numberof(labs)<2) {
if (is_void(labs)) labs= (n-1)/4 + 1;
orig= where(levs<1.0e-9*max(levs(dif)));
if (numberof(orig)==1) labs= [orig(1)%labs,labs];
else labs= [(n%labs)/2,labs];
}
list= where(indgen(0:n)%labs(2)==labs(1));
x= x(list,);
y= y(list,);
if (is_void(format)) format= "%g";
labs= swrite(format=format,levs(list));
plsys, 0;
pldj, x(,2),y(,2),x(,2)+dx,y(,2)+dy, legend=nil, color=color, width=width;
plsys, sys;
if (is_void(font)) font= "helvetica";
plt1, labs,x(,2)+2*dx,y(,2)+2*dy, justify=(vert?"LH":"CT"),
height=height, font=font, color=color;
}
}
/*---------------------------------------------------------------------------*/
func pla(y, x, every=, legend=, hide=, type=, width=, color=, closed=, smooth=,
marks=, marker=, mspace=, mphase=, rays=, arrowl=, arroww=, rspace=,
rphase=)
/* DOCUMENT pla, y, x
or pla, y
Plot the buddle of curves Y versus X labelled by their last dimension.
Y must be 2-dimensional, and X may be 2-dimensional, 1-dimensional or
omitted. If X is 2-dimensional, it must have the same dimensions as Y
and Y(,i) versus X(,i) is plotted for each last indice i. If X is
1-dimensional, it must have the same length as the 1st dimension of Y
and Y(,i) versus X is plotted for each last indice i. If X is
omitted, it defaults to [1, 2, ..., numberof(Y(,1))].
The plotting keywords of plg are accepted plus the optional keyword
EVERY=N which can be used to plot every N curves in the bundle
(default N=1).
EXAMPLE
x = span(0,1,25)(,-:1:25);
pla, x*transpose(x), marks=0, every=3;
SEE ALSO
plg, plp.
*/
{
if (is_void(every)) {
n = 1;
} else if (! is_array(every) || dimsof(every)(1) || (n = long(every)) <= 0) {
error, "EVERY must be a scalar >= 1";
}
if (! is_array(y) || dimsof(y)(1) != 2) {
error, "Y must be 2-dimensional";
}
imax = dimsof(y)(3);
if (is_void(x)) {
x2d = 0N;
} else {
x2d = dimsof(x)(1) >= 2;
}
for(i = (n+1)/2; i <= imax; i += n) {
px = (x2d ? &x(,i) : &x);
plg, y(, i), *px, legend=legend, hide=hide, type=type, width=width,
color=color, closed=closed, smooth=smooth, marks=marks, marker=marker,
mspace=mspace, mphase=mphase, rays=rays, arrowl=arrowl, arroww=arroww,
rspace=rspace, rphase=rphase;
}
}
/*---------------------------------------------------------------------------*/
func pls_mesh(&x, &xx, d, which=, inhibit=)
/* DOCUMENT err_msg= pls_mesh(x, xx, dimsof(z), which=1/2, inhibit=1/2)
build X and/or XX arrays of coordinates (abscissa if last argument is
0/nil; otherwise ordinate) for 2-D array Z. Normally, the returned
value is string(0) otherwise it is an error message.
X is input and output, it will have the same shape as Z and will be
suitable for contour plots. XX is purely output, it will have 1 more
element than Z in each dimension and will be suitable for mesh plots.
In other words, X(i,j) will furnish the coordinate of the centre of
cell Z(i,j) whereas XX(i,j), XX(i,j+1), XX(i+1,j) and XX(i+1,j+1)
will give the coordinates of the corners of cell Z(i,j).
Assuming the length of Z along the considered dimension is N
(N must be >= 2) there are 3 possibilities:
(1) if X is a vector with N elements or has the same shape as Z,
then X is considered to give the coordinates at the centre of Z
cells: X is unchanged and output XX is build by interpolating
(and extrapolating at the edges) X ;
(2) if X is a vector with N+1 elements or has 1 more element than Z
in each dimension, then X is considered to give the coordinates
at the corners of Z cells: output XX is set to input X and
output X is build by interpolating output XX;
(3) if X is nil, it defaults to [0.5, 1.5, ..., N-0.5] and XX
defaults to [0, 1, ..., N] along the considered dimension.
Finally, if X is 1-D, it is expanded in the other direction.
If keyword WHICH is 1 (the default), abscissa is the dimension of
interest; otherwise WHICH must be 2 and ordinate is the dimension
of interest.
If keyword INHIBIT is 1, then only X output is computed; if INHIBIT
is 2 then only XX output is computed.
SEE ALSO: pls, pl3s, plmesh.
*/
{
xx= [];
if (is_void(which))
which= 1;
do_x= inhibit != 1;
do_xx= inhibit != 2;
expand=1;
if (d(1) != 2 || anyof(d < 2))
return "Z must be 2-dimensional and have at least 2-by-2 elements";
n1= d(2);
n2= d(3);
n= d(which+1);
if (is_void((dx= dimsof(x)))) {
if (do_x)
x= span(0.5, n-0.5, n);
if (do_xx)
xx= span(0, n, n+1);
} else if (dx(1) == 1) {
if (dx(2) == n) {
if (do_xx) {
xx= x(pcen);
xx(1)= 2.0 * x(1) - x(2);
xx(0)= 2.0 * x(0) - x(-1);
}
} else if (dx(2) == n+1) {
xx= x;
x= do_x ? xx(zcen) : [];
}
} else if (dx(1) == 2) {
expand= 0;
if (allof(dx == d)) {
if (do_xx) {
t= x(pcen,);
t(1,)= 2.0 * x(1,) - x(2,);
t(0,)= 2.0 * x(0,) - x(-1,);
xx= t(,pcen);
xx(,1)= 2.0 * t(,1) - t(,2);
xx(,0)= 2.0 * t(,0) - t(,-1);
t= [];
}
} else if (allof(dx == d + [0,1,1])) {
xx= x;
x= do_x ? xx(zcen,zcen) : [];
}
}
if (is_void(xx) && is_void(x)) {
return "X, Y and Z are not compatible";
}
if (expand) {
if (which == 1) {
if (do_x)
x= x(,-:1:n2);
if (do_xx)
xx= xx(,-:1:n2+1);
} else {
if (do_x)
x= x(-:1:n1,);
if (do_xx)
xx= xx(-:1:n1+1,);
}
}
return string(0);
}
func pls(z, y, x, cbar=, viewport=, title=, xtitle=, ytitle=,
legend=, hide=, top=, cmin=, cmax=, edges=, ecolor=, ewidth=,
height=, font=, levs=, nlevs=, type=, width=, color=,
marks=, marker=, mspace=, mphase=, smooth=)
/* DOCUMENT pls, z, y, x
or pls, z
draws surface plot of Z versus (X,Y) as a filled mesh with
optional contours. The Z array must be a 2-dimensional array,
see documentation of pls_mesh for the meaning of X and Y.
If keyword CBAR is set to non-zero, a color bar is drawn on the
right of the plot. The current viewport (in NDC) may be
specified with keyword VIEWPORT, default is:
[0.19, 0.60, 0.44, 0.85].
The appearance of the filled mesh can be modified by means of
keywords: LEGEND, HIDE, TOP, CMIN, CMAX, EDGES, ECOLOR and EWIDTH
(see plf documentation).
Optional contour plot of Z may be superimposed by either keyword
NLEVS to set the number of contours or by with keyword LEVS to
specify the level values. The appearance of the contour plot can
be modified by means of keywords: LEGEND, HIDE, TYPE, WIDTH,
COLOR, MARKS, MARKER, MSPACE, MPHASE and SMOOTH (see plc
documentation).
SEE ALSO: pls_mesh, pl3s, plc, plf, plmesh.
*/
{
local r, g, b; // these variables are used to query colors
local xx, yy;
/*
* Set some defaults.
*/
if (is_void(edges))
edges= 0;
if (is_void(height)) {
height= 12;
small=10;
} else {
s= [8,10,12,14,18,24];
i= where(height == s);
if (numberof(i) != 1)
error, "bad font HEIGHT";
i= i(1);
small= i > 1 ? s(i-1) : height;
}
if (numberof(levs)) {
nlevs= numberof(levs);
} else if (is_void(nlevs)) {
nlevs= 8;
}
/*
* Compute mesh coordinates.
*/
i= nlevs >= 1 ? 0 : 1;
if ((msg= pls_mesh(x, xx, dimsof(z), which=1, inhibit=i)) != string(0) ||
(msg= pls_mesh(y, yy, dimsof(z), which=2, inhibit=i)) != string(0))
error, msg;
/*
* Plot color bar and titles.
*/
vpmax= [0.127, 0.672, 0.363, 0.908];
if (numberof(viewport) != 4)
viewport= [0.19, 0.60, 0.44, 0.85]; // standard viewport
if (cbar) {
local r, g, b;
plsys, 0;
margin= vpmax(2)-viewport(2);
x0= viewport(2) + 0.7 * margin;
x1= viewport(2) + 0.9 * margin;
y0= viewport(3);
y1= viewport(4);
palette, r, g, b, query=1;
n= numberof(r);
r= g= b= [];
pli, char(indgen(n)-1)(-,), legend=string(0), x0, y0, x1, y1;
plg, [y0,y0,y1,y1,y0], [x0,x1,x1,x0,x0], legend=string(0), marks=0,
width=1;
plsys, 1;
}
xc= 0.5*(viewport(1)+viewport(2));
yc= 0.5*(viewport(3)+viewport(4));
if (!is_void(title)) {
plt, title, xc, viewport(4) + 0.9 * (vpmax(4) - viewport(4)), tosys=0,
legend=string(0), justify="CT", path=0,
font=font, height=height, opaque=opaque;
}
if (!is_void(xtitle)) {
plt, xtitle, xc, vpmax(3) + 0.05 * (viewport(3) - vpmax(3)), tosys=0,
legend=string(0), justify="CB", path=0,
font=font, height=small, opaque=opaque;
}
if (!is_void(ytitle)) {
plt, ytitle, vpmax(1) + 0.05 * (viewport(1) - vpmax(1)), yc, tosys=0,
legend=string(0), justify="LH", path=1,
font=font, height=small, opaque=opaque;
}
/*
* Plot filled mesh.
*/
plf, z, yy, xx, legend=legend, hide=hide,
top=top, cmin=cmin, cmax=cmax, edges=edges, ecolor=ecolor, ewidth=ewidth;
xx= yy= [];
/*
* Plot contours.
*/
if (nlevs) {
if (is_void(levs)) {
zmax= double(max(z));
zmin= double(min(z));
levs= zmin + (zmax-zmin) / double(nlevs+1) * indgen(nlevs);
}
plc, z, y, x, levs=levs, legend=legend, hide=hide, type=type, width=width,
color=color, marks=marks, marker=marker, mspace=mspace, mphase=mphase,
smooth=smooth;
}
}
/*---------------------------------------------------------------------------*/
func plh(y, x, just=, legend=, hide=, type=, width=, color=, marks=, marker=,
mspace=, mphase=)
/* DOCUMENT plh, y, x
or plh, y
plots a graph of Y versus X in an "histogram" style (i.e., with
steps). Y and X must be 1-D arrays of equal length; if X is
omitted, it defaults to [1, 2, ..., numberof(Y)].
The optional keyword JUST set justification of the histogram:
JUST=1, 2 or 3 makes the graph be left justified, centered or
right justified respectively along X axis. Default is centered.
Other plotting keywords (legend, hide, type, width, color, marks,
marker, mspace, and mphase) are passed to the plg routine.
SEE ALSO: plg, plm, plc, plv, plf, pli, plt, pldj, plfp
limits, logxy, range, fma, hcp
*/
{
// parse/check arguments
if (!is_array(y) || dimsof(y)(1)!=1 || (n= numberof(y)) < 2)
error, "Y must be a vector of at least 2 elements";
if (is_void(x))
x= double(indgen(numberof(y)));
else if (!is_array(x) || dimsof(x)(1)!=1 || numberof(x) != n)
error, "X must be a vector of same length as Y";
if (is_void(just))
just= 2;
// build new X vector
n2= 2 * n;
x2= array(double, n2);
if (just == 1) {
// left justify
x2(1::2)= x;
x2(2:-1:2)= x(2:);
x2(0)= 2 * x(0) - x(-1);
} else if (just == 2) {
// center
d= 0.5 * x(dif);
dx= d(1);
grow, dx, d, d(0);
d= [];
x2(1::2)= x - dx(:-1);
x2(2::2)= x + dx(2:);
dx= [];
} else if (just == 3) {
// right justify
x2(1)= 2 * x(1) - x(2);
x2(2::2)= x;
x2(3::2)= x(:-1);
} else {
error, "bad value for JUST";
}
// build new Y vector
y2= array(double, n2);
y2(1::2)= y2(2::2)= y;
// plot the graph
plg, y2, x2,
legend=legend, hide=hide, type=type, width=width, color=color,
marks=marks, marker=marker, mspace=mspace, mphase=mphase;
}
/*---------------------------------------------------------------------------*/
func plhline(y, x0, x1, color=, width=, type=) {
lim = limits(); one = array(1.0, dimsof(y));
pldj, one*(is_void(x0) ? lim(1) : x0), y, one*(is_void(x1) ? lim(2) : x1), y,
color=color, width=width, type=type; }
func plvline(x, y0, y1, color=, width=, type=) {
lim = limits(); one = array(1.0, dimsof(x));
pldj, x, one*(is_void(y0) ? lim(3) : y0), x, one*(is_void(y1) ? lim(4) : y1),
color=color, width=width, type=type; }
/* DOCUMENT plhline, y;
-or- plhline, y, x0, x1;
-or- plvline, x;
-or- plhline, x, y0, y1;
Plots an horizontal/vertical line.
KEYWORDS color, type, width.
SEE ALSO pldj. */
/*---------------------------------------------------------------------------*/
/* PLP - PLOTTING POINTS */
func plp(y, x, dx=, xlo=, xhi=, dy=, ylo=, yhi=, size=, symbol=, ticks=,
legend=, type=, width=, color=, fill=)
/* DOCUMENT plp, y, x;
* -or- plp, y, x, dx=sigma_x, dy=sigma_y;
*
* Plots points (X,Y) with symbols and/or error bars. X, and Y may have
* any dimensionality, but must have the same number of elements. If X
* is nil, it defaults to indgen(numberof(Y)).
*
* Keyword SYMBOL may be used to choose the shape of each symbol (see
* pl_get_symbol).
*
* Keyword SIZE may be used to change the size of the symbols and tick
* marks (SIZE acts as a multiplier, default value is 1.0).
*
* If value of keyword FILL is true (non-nil and non-zero), symbols are
* filled with COLOR. The default is to draw open symbols. You can
* specify different colors for the outline and the inside of the symbol
* by using keyword COLOR = [EDGE_COLOR, FILL_COLOR].
*
* Keywords XLO, XHI, YLO, and/or YHI can be used to indicate the bounds
* of the optional error bars (default is to draw no error bars). Only
* specified bounds get plotted as error bars. If value of keyword TICKS
* is true (non-nil and non-zero), ticks get drawn at the endpoints of
* the error bars. Alternatively, keywords DX and/or DY can be used to
* plot error bars as segments from XLO=X-DX to XHI=X+DX and/or from
* YLO=Y-DY to YHI=Y+DY. If keyword DX (respectively DY) is used, any
* value of XLO and XHI (respectively YLO and YHI) is ignored.
*
* The other keywords are the same as for pldj: LEGEND, TYPE, WIDTH,
* COLOR (TYPE is only used to draw error bars).
*
*
* EXAMPLES:
* plp, y, x, symbol='*', color=["orange","DarkSlateBlue"], fill=1,
* size=3, width=5;
*
*
* KEYWORDS:
* legend, type, width, color.
*
*
* SEE ALSO:
* pl_get_symbol, pl_get_color,
* pldj, plg, plm, plc, plv, plf, pli, plt, pldj, plfp, plmk,
* limits, logxy, range, fma, hcp.
*/
{
/* NDC units for symbols/ticks (one pixel = 0.00125268 NDC at 75 DPI) */
u0 = 0.0; // zero
u1 = 0.0100214; // radius of about 8 pixels at 75 DPI
if (! is_void(size)) u1 *= size;
/* parse color(s) */
if (is_array(color) && dimsof(color)(0) == 2) {
edge_color = pl_get_color(color(..,1));
if (fill) {
fill_color = pl_get_color(color(..,2));
}
} else {
edge_color = pl_get_color(color);
if (fill) {
fill_color = edge_color;
}
}
/* default X */
if (is_void(x)) (x = array(double, dimsof(y)))(*) = indgen(numberof(y));
/* error bars */
if (is_void(dx)) {
err = (! is_void(xlo)) + 2*(! is_void(xhi));
} else {
xlo = x - dx;
xhi = x + dx;
err = 3;
}
if (err) {
pldj, (is_void(xlo) ? x : xlo), y, (is_void(xhi) ? x : xhi), y,
type=type, width=width, color=color;
if (ticks) {
xm = [ u0, u0];
ym = [-u1, u1];
if (err == 1) __plp, y, xlo;
else if (err == 2) __plp, y, xhi;
else __plp, [y, y], [xlo, xhi];
}
xhi = xlo = [];
}
if (is_void(dy)) {
err = (! is_void(ylo)) + 2*(! is_void(yhi));
} else {
ylo = y - dy;
yhi = y + dy;
err = 3;
}
if (err) {
pldj, x, (is_void(ylo) ? y : ylo), x, (is_void(yhi) ? y : yhi),
type=type, width=width, color=color;
if (ticks) {
xm = [-u1, u1];
ym = [ u0, u0];
if (err == 1) __plp, ylo, x;
else if (err == 2) __plp, yhi, x;
else __plp, [ylo, yhi], [x, x];
}
yhi = ylo = [];
}
/* symbols */
symbol = pl_get_symbol(symbol);
if (! symbol) {
return;
}
if (symbol == 1) {
/* square */
fillable = 1n;
u2 = u1*sqrt(0.5);
xm = [-u2, u2, u2,-u2];
ym = [ u2, u2,-u2,-u2];
} else if (symbol == 2) {
/* + cross */
fillable = 0n;
xm = [-u1, u1, u0, u0, u0, u0];
ym = [ u0, u0, u0, u1,-u1, u0];
fill = 0;
} else if (symbol == 3) {
/* triangle */
fillable = 1n;
u2 = u1*0.5;
u3 = u1*sqrt(0.75);
xm = [u0, u3,-u3];
ym = [u1,-u2,-u2];
} else if (symbol == 4) {
/* hexagon */
fillable = 1n;
u2 = u1*0.5;
u3 = u1*sqrt(0.75);
xm = [ u1, u2,-u2,-u1,-u2, u2];
ym = [ u0, u3, u3, u0,-u3,-u3];
} else if (symbol == 5) {
/* diamond */
fillable = 1n;
xm = [u1, u0,-u1, u0];
ym = [u0, u1, u0,-u1];
} else if (symbol == 6) {
/* x cross (rotated 45 degrees) */
fillable = 0n;
u2 = u1*sqrt(0.5);
xm = [u2,-u2, u0, u2,-u2, u0];
ym = [u2,-u2, u0,-u2, u2, u0];
fill = 0;
} else if (symbol == 7) {
/* triangle (upside down) */
fillable = 1n;
u2 = u1*0.5;
u3 = u1*sqrt(0.75);
xm = [ u0, u3,-u3];
ym = [-u1, u2, u2];
} else if (symbol == 8) {
/* 5 branch star
* C18 = cos(18*ONE_DEGREE)
* S18 = sin(18*ONE_DEGREE)
* C54 = cos(54*ONE_DEGREE)
* S54 = sin(54*ONE_DEGREE)
*/
fillable = 1n;
u2 = 0.224514*u1; // C54*S18/S54
u3 = 0.309017*u1; // S18
u4 = 0.951057*u1; // C18
u5 = 0.363271*u1; // C18*S18/S54
u6 = 0.118034*u1; // S18*S18/S54
u7 = 0.587785*u1; // C54
u8 = 0.809017*u1; // S54
u9 = 0.381966*u1; // S18/S54
xm = [ u0, u2, u4, u5, u7, u0,-u7,-u5,-u4,-u2];
ym = [ u1, u3, u3,-u6,-u8,-u9,-u8,-u6, u3, u3];
} else {
/* N-side polygon in unit circle */
fillable = 1n;
PI = 3.141592653589793238462643383279503;
a = (2.0*PI/symbol)*indgen(0:symbol-1);
xm = u1*cos(a);
ym = u1*sin(a);
}
__plp, y, x;
}
func __plp(y, x)
/* DOCUMENT __plp, x, y;
Private routine used by plp. */
{
extern xm, ym, edge_color, fill_color, fill, legend, width;
local z;
n = array(1, 1 + numberof(y));
m = numberof(ym);
if (m > 2) {
if (fill) {
z = array(fill_color, numberof(n));
} else if (fillable) {
/* Draw inside and ouside edges to emulate 'open' (transparent)
symbols. */
m += m;
grow, xm, xm(1), xm(0:2:-1);
grow, ym, ym(1), ym(0:2:-1);
}
}
n(1) = m;
plfp, z, grow(ym,y(*)), grow(xm,x(*)), n,
legend=legend, edges=1, ewidth=width, ecolor=edge_color;
}
/*---------------------------------------------------------------------------*/
/* PARSING OF PLOTTING KEYWORDS */
local PL_BG, PL_FG, PL_BLACK, PL_WHITE, PL_RED, PL_GREEN, PL_BLUE, PL_CYAN;
local PL_MAGENTA, PL_YELLOW, PL_GRAYD, PL_GRAYC, PL_GRAYB, PL_GRAYA;
local PL_XOR, PL_EXTRA;
local _PL_COLOR_NAMES, _PL_COLOR_RGB, _PL_COLOR_PACKED;
func pl_get_color(color, flags)
/* DOCUMENT pl_get_color(color);
* -or- pl_get_color(color, flags);
*
* The function pl_get_color parses its argument and returns the
* corresponding numerical color(s). Input COLOR can be specified by
* color name, color index, packed RGB triplet or non-packed [R,G,B]
* triplet. In any case, the output is an array of char's and either
* indexed color(s) or [R,G,B] triplet(s).
*
* The default is to accept only a single input color and to return
* the corresponding color index or [R,G,B] triplet. Optional argument
* FLAGS can be specified to change this default behaviour:
* FLAGS = 1 - to force to RGB triplet
* FLAGS = 2 - force to indexed color
* FLAGS |= 4 - to accept multiple colors (can be OR'ed with one of the
* other values)
* hence:
* 0 - (default) means: only scalar color accepted, result is either
* an index or a triplet;
* 1 - means: only scalar color accepted, result is always a triplet;
* 2 - means: only scalar color accepted, result is always an index;
* 4 - means: multiple colors accepted, result is either an index or
* a triplet;
* 5 - means: multiple colors accepted, result is always a triplet;
* 6 - means: multiple colors accepted, result is always an index;
*
* If COLOR is nil, the returned value is 254 (index for "fg" color).
*
* The following predefined color names, vales and constants (as Yorick
* global variables) are supported:
*
* NAME INTEGER CONSTANT NAME INTEGER CONSTANT
* --------------------------- -------------------------------
* "bg" 255 -1 PL_BG "magenta" 247 -9 PL_MAGENTA
* "fg" 254 -2 PL_FG "yellow" 246 -10 PL_YELLOW
* "black" 253 -3 PL_BLACK "grayd" 245 -11 PL_GRAYD
* "white" 252 -4 PL_WHITE "grayc" 244 -12 PL_GRAYC
* "red" 251 -5 PL_RED "grayb" 243 -13 PL_GRAYB
* "green" 250 -6 PL_GREEN "graya" 242 -14 PL_GRAYA
* "blue" 249 -7 PL_BLUE "xor" 241 -15 PL_XOR
* "cyan" 248 -8 PL_CYAN "extra" 240 -16 PL_EXTRA
* --------------------------- -------------------------------
*
* Color names are case insensitive and a most X11 color names are
* available (thanks to a builtin database). For instance
* "darkslateblue" and "DarkSlateBlue" are valid color names.
*
*
* SEE ALSO:
* color, pl_get_symbol, pl_get_font, pl_get_palette.
*/
{
/* Parse flags (default is to get a single color in a numerical form
which is usable as the value of the COLOR keyword in Yorick plotting
functions). */
if (is_void(flags)) {
mode = 0; /* any */
single = 1n;
} else {
mode = (flags & 3);
single = ! (flags & 4);
}
/* Parse color value(s). */
/**/extern _PL_COLOR_NAMES, _PL_COLOR_RGB;
if (is_void(color)) {
return (mode == 1 ? _PL_COLOR_RGB(,2) : char(254));
}
if ((s = structof(color)) == string) {
dims = dimsof(color);
if (single && dims(1)) error, "color name must be a scalar";
ndx = array(long, dims);
len = strlen(color);
n = numberof(color);
for (k = 1; k <= n; ++k) {
/* Timing Issues: It is slightly faster to use strfind (no string
duplication). Searching the color database, takes ~ 10
microseconds per color on my 2GHz Centrino. */
sel = strfind(color(k), _PL_COLOR_NAMES, case=0);
if (is_array((i = where(! sel(1,..)))) &&
is_array((j = where(sel(2, i) == len(k))))) {
ndx(k) = i(j(1));
} else {
error, ("unrecognized color name: \"" + color(k) + "\"");
}
}
if (! mode) {
return (max(ndx) <= 16 ? char(256 - ndx) : _PL_COLOR_RGB(, ndx));
} else if (mode == 1) {
return _PL_COLOR_RGB(, ndx);
} else {
if (max(ndx) > 16) {
error, "named color is not an indexed one";
}
return char(256 - ndx);
}
}
if (s == char) {
/* can be an indexed color or a triplet */
dims = dimsof(color);
n = dims(1);
is_rgb = (n >= 1 && dims(2) == 3);
if (single && n != is_rgb) {
error, "expecting a single color";
}
if (is_rgb) {
if (mode == 2) {
/* FIXME: cannot force triplet to index */
error, "unsupported conversion of [R,G,B] to indexed color";
}
} else if (mode == 1) {
return pl_get_palette(win)(, 1 + color);
}
return color;
}
if (s == long || s == short || s == int) {
dims = dimsof(color);
if (single && dims(1)) {
error, "expecting a single color";
}
if ((cmin = min(color)) < 0) {
if (cmin < -16) {
error, "out of range indexed color";
}
color = long(color); /* force copy/conversion */
color(where(color < 0)) += 256;
cmin = min(color);
}
cmax = max(color);
if (cmax <= 255) {
/* Assume all colors are indexed ones. */
if (mode == 1) {
return pl_get_palette(win)(, 1 + color);
}
return char(color);
}
if (mode == 2) {
/* FIXME: cannot force triplet to index */
error, "unsupported conversion of [R,G,B] to indexed color";
}
rgb = array(char, 3, dims);
if (cmin >= 256) {
/* Assume all colors are packed RGB triplets. */
rgb(1, ..) = (color & 0xff);
rgb(2, ..) = ((color >> 8) & 0xff);
rgb(3, ..) = ((color >> 16) & 0xff);
return rgb;
} else {
/* There is a mixture of indexed and packed RGB colors. */
lut = pl_get_palette(win);
ndx = (color <= 255);
if (is_array((i = where(nxd)))) {
rgb(, i) = lut(, 1 + color(i));
}
if (is_array(( i = where(! nxd)))) {
color = color(i);
rgb(1, i) = (color & 0xff);
rgb(2, i) = ((color >> 8) & 0xff);
rgb(3, i) = ((color >> 16) & 0xff);
}
}
return rgb;
}
error, "bad data type for color";
}
/* Color codes as defined in 'play.h': */
PL_BG = 255;
PL_FG = 254;
PL_BLACK = 253;
PL_WHITE = 252;
PL_RED = 251;
PL_GREEN = 250;
PL_BLUE = 249;
PL_CYAN = 248;
PL_MAGENTA = 247;
PL_YELLOW = 246;
PL_GRAYD = 245;
PL_GRAYC = 244;
PL_GRAYB = 243;
PL_GRAYA = 242;
PL_XOR = 241;
PL_EXTRA = 240;
local PL_RGB_BG, PL_RGB_FG, PL_RGB_XOR, PL_RGB_EXTRA;
local PL_RGB_BLACK, PL_RGB_WHITE, PL_RGB_RED, PL_RGB_GREEN, PL_RGB_BLUE;
local PL_RGB_CYAN, PL_RGB_MAGENTA, PL_RGB_YELLOW;
local PL_RGB_GRAYD, PL_RGB_GRAYC, PL_RGB_GRAYB, PL_RGB_GRAYA;
func pl_get_palette(win)
/* DOCUMENT rgb = pl_get_palette();
* -or- rgb = pl_get_palette(win);
*
* Returns color table for current graphics window or for winddow WIN if
* it is specified. The color table is a 3-by-256 array of char's such
* that: RGB(1,i), RGB(2,i) and RGB(3,i) are the red, green and blue
* levels for color index i respectively.
*
* Note that some color index cannot be obtained ("bf", "fg", "xor" and
* "extra") and are left as black/white in the returned color table. It
* is possible to change the predefined colors by setting the global
* variables such as PL_RGB_BG with a given [r,g,b] triplet.
*
* SEE ALSO: palette, pl_get_color.
*/
{
local r, g, b, old_win;
if (! is_void(win)) {
old_win = current_window();
window, win;
}
palette, r, g, b, query=1;
lut = array(char, 3, 256);
if (is_array(r)) {
lut(1, 1:numberof(r)) = r;
lut(2, 1:numberof(g)) = g;
lut(3, 1:numberof(b)) = b;
} else {
/* Default is a gray colormap with K=240 colors and there are M=256
* levels. The formula is:
*
* y = (2*M*x + M)/(2*K)
*
* where integer arithmetic must be used and x = 0, ..., K - 1 is the
* 0-based color index and y = 0, ..., M - 1 is the color level.
* After simplification (with K=240 and M=256):
*/
lut( , 1:240) = (indgen(8:3832:16)/15)(-, );
}
lut(, 1 + PL_BG) = PL_RGB_BG;
lut(, 1 + PL_FG) = PL_RGB_FG;
lut(, 1 + PL_BLACK) = PL_RGB_BLACK;
lut(, 1 + PL_WHITE) = PL_RGB_WHITE;
lut(, 1 + PL_RED) = PL_RGB_RED;
lut(, 1 + PL_GREEN) = PL_RGB_GREEN;
lut(, 1 + PL_BLUE) = PL_RGB_BLUE;
lut(, 1 + PL_CYAN) = PL_RGB_CYAN;
lut(, 1 + PL_MAGENTA) = PL_RGB_MAGENTA;
lut(, 1 + PL_YELLOW) = PL_RGB_YELLOW;
lut(, 1 + PL_GRAYD) = PL_RGB_GRAYD;
lut(, 1 + PL_GRAYC) = PL_RGB_GRAYC;
lut(, 1 + PL_GRAYB) = PL_RGB_GRAYB;
lut(, 1 + PL_GRAYA) = PL_RGB_GRAYA;
lut(, 1 + PL_XOR) = PL_RGB_XOR;
lut(, 1 + PL_EXTRA) = PL_RGB_EXTRA;
if (win != old_win) {
window, old_win;
}
return lut;
}
PL_RGB_BG = char([214, 214, 214]);
PL_RGB_FG = char([ 0, 0, 0]);
PL_RGB_BLACK = char([ 0, 0, 0]);
PL_RGB_WHITE = char([255, 255, 255]);
PL_RGB_RED = char([255, 0, 0]);
PL_RGB_GREEN = char([ 0, 255, 0]);
PL_RGB_BLUE = char([ 0, 0, 255]);
PL_RGB_CYAN = char([ 0, 255, 255]);
PL_RGB_MAGENTA = char([255, 0, 255]);
PL_RGB_YELLOW = char([255, 255, 0]);
PL_RGB_GRAYD = char([100, 100, 100]);
PL_RGB_GRAYC = char([150, 150, 150]);
PL_RGB_GRAYB = char([190, 190, 190]);
PL_RGB_GRAYA = char([214, 214, 214]);
PL_RGB_XOR = char([ 0, 0, 0]);
PL_RGB_EXTRA = char([ 0, 0, 0]);
local PL_COURIER, PL_TIMES, PL_HELVETICA, PL_SYMBOL, PL_NEWCENTURY;
local PL_GUI_FONT, PL_BOLD, PL_ITALIC, PL_OPAQUE;
local _PL_FONT_TABLE;
func pl_get_font(value, default)
/* DOCUMENT pl_get_font(value, default);
* Parse font VALUE which can have any value recognized by Yorick
* for the "font" keyword in builtin plotting functions and return the
* corresponding integer value. In addition, if VALUE is void, DEFAULT
* is returned.
*
* SEE ALSO:
* font, pl_get_color, , pl_get_symbol, xwindow.
*/
{
extern _PL_FONT_TABLE;
if (is_void(value)) return default;
if (is_array(value) && ! dimsof(value)(1)) {
if ((s = structof(value)) == long) return value;
if (s == string) {
n = strmatch(value, "B") | 2*strmatch(value, "I");
fn = (n==3 ? strpart(value, 1:-2) : (n ? strpart(value, 1:-1) : value));
if (is_func(h_new)) {
if (! is_hash(_PL_FONT_TABLE)) {
_PL_FONT_TABLE = h_new("courier",1, "times",2, "helvetica",3,
"symbol",4,"schoolbook",5);
}
index = _PL_FONT_TABLE(fn);
if (index) return n + 4*(index - 1);
} else {
if (fn == "courier") return n;
if (fn == "times") return n+4;
if (fn == "helvetica") return n+8;
if (fn == "symbol") return n+12;
if (fn == "schoolbook") return n+16;
}
error, "bad font name \""+value+"\"";
}
if (s == char || s == short || s == int) return long(value);
}
error, "bad font value";
}
/* Font codes/flags as defined in 'play.h': */
PL_COURIER = 0;
PL_TIMES = 4;
PL_HELVETICA = 8;
PL_SYMBOL = 12;
PL_NEWCENTURY = 16;
PL_GUI_FONT = 20;
PL_BOLD = 1;
PL_ITALIC = 2;
PL_OPAQUE = 32;
local PL_SQUARE, PL_PLUS, PL_TRIANGLE, PL_UP_TRIANGLE, PL_CIRCLE;
local PL_DIAMOND, PL_CROSS, PL_DOWN_TRIANGLE, PL_STAR;
local _PL_SYMBOL_TABLE;
func pl_get_symbol(symbol)
/* DOCUMENT pl_get_symbol(symbol);
*
* Get symbol value as an integer, SYMBOL must be a scalar and may be either
* an integer, a character or a string:
*
* INT CHAR STRING DESCRIPTION
* ----------------------------------------------------------------------
* 0 nothing (just draw error bars if any)
* 1 # "square" a square
* 2 + "plus" a plus sign
* 3 ^ "triangle" "uptriangle" a triangle
* 4 o "circle" a circle (actually an hexagon)
* 5 @ "diamond" a square rotated by 45 degrees
* 6 x "cross" an X-cross <- this is the default
* 7 v "downtriangle" an upside down triangle
* 8 * "star" a star
* >=9 a polygon with SYMBOL sides
* ----------------------------------------------------------------------
*
* The one-character symbol may given as lower/upper case and as a string
* or a char; e.g. 'v', 'V', "v" and "V" all stand for an upside down
* triangle.
*
* For convenience, global variables PL_SQUARE, PL_PLUS, PL_TRIANGLE,
* PL_UP_TRIANGLE, PL_CIRCLE; local PL_DIAMOND, PL_CROSS,
* PL_DOWN_TRIANGLE and PL_STAR are defined with the corresponding symbol
* code.
*
* SEE ALSO: plp, pl_get_color.
*/
{
if (is_void(symbol)) {
return 6;
}
if (! is_array(symbol) || dimsof(symbol)(1)) {
error, "symbol must be a scalar";
}
s = structof(symbol);
if (s == string || s == char) {
if (is_func(h_new)) {
/* Use Yeti hash-table to speed-up symbol identification. */
extern _PL_SYMBOL_TABLE;
if (! is_hash(_PL_SYMBOL_TABLE)) {
_PL_SYMBOL_TABLE = h_new("square",1, "#",1,
"plus",2, "+",2,
"triangle",3, "uptriangle",3, "^",3,
"circle",4, "o",4, "O",4,
"diamond",5, "@",5,
"cross",6, "x",6, "X",6,
"downtriangle",7, "v",7, "V",7,
"star",8, "*",8);
}
if (s == char) {
symbol = strchar(symbol);
}
symbol = _PL_SYMBOL_TABLE(symbol);
if (symbol) {
return symbol;
}
} else {
/* Use vanilla Yorick. */
local c;
if (s == char) {
len = 1;
eq_nocopy, c, symbol;
} else {
len = strlen(symbol);
c = strchar(symbol)(1);
}
if (len == 1) {
if (c=='#') return 1;
if (c=='+') return 2;
if (c=='^') return 3;
if (c=='o' || c =='O') return 4;
if (c=='@') return 5;
if (c=='x' || c=='X') return 6;
if (c=='v' || c=='V') return 7;
if (c=='*') return 8;
} else {
/* must be a string */
if (c=='s') {
if (symbol=="square") return 1;
if (symbol == "star") return 8;
} else if (c=='p') {
if (symbol=="plus") return 2;
} else if (c=='t') {
if (symbol == "triangle") return 3;
} else if (c=='c') {
if (symbol == "circle") return 4;
if (symbol == "cross") return 6;
} else if (c=='d') {
if (symbol == "diamond") return 5;
if (symbol == "downtriangle") return 7;
} else if (c=='u') {
if (symbol=="uptriangle") return 3;
}
}
}
} else if ((s == long || s == int || s == short) && symbol >= 0) {
return long(symbol);
}
error, "bad symbol value";
}
/* Symbol codes as used by 'plp': */
PL_SQUARE = 1;
PL_PLUS = 2;
PL_TRIANGLE = 3;
PL_UP_TRIANGLE = 3;
PL_CIRCLE = 4;
PL_DIAMOND = 5;
PL_CROSS = 6;
PL_DOWN_TRIANGLE = 7;
PL_STAR = 8;
func pl_get_axis_flags(value, default)
/* DOCUMENT pl_get_axis_flags(value, default);
* Parse axis specification VALUE which can be an integer or a string
* where each bits/character toggle an option (see table below). If VALUE
* is void, DEFAULT is returned.
*
* char bit option
* ---- ----- ----------------------------------------------------
* t 0x001 Draw ticks on bottom or left edge of viewport
* T 0x002 Draw ticks on top or right edge of viewport
* c 0x004 Draw ticks centered on origin in middle of viewport
* i 0x008 Ticks project inward into viewport
* o 0x010 Ticks project outward away from viewport (0x18 for both)
* l 0x020 Draw tick label numbers on bottom or left edge of viewport
* L 0x040 Draw tick label numbers on top or right edge of viewport
* g 0x080 Draw all grid lines down to gridLevel
* z 0x100 Draw single grid line at origin
*
* SEE ALSO:
* xwindow.
*/
{
if (is_void(value)) return default;
if (is_array(value) && ! dimsof(value)(1)) {
if ((s = structof(value)) == long) return value;
if (s == string) {
flags = 0;
if (strmatch(value, "t")) flags|= 0x001;
if (strmatch(value, "T")) flags|= 0x002;
if (strmatch(value, "c")) flags|= 0x004;
if (strmatch(value, "i")) flags|= 0x008;
if (strmatch(value, "o")) flags|= 0x010;
if (strmatch(value, "l")) flags|= 0x020;
if (strmatch(value, "L")) flags|= 0x040;
if (strmatch(value, "g")) flags|= 0x080;
if (strmatch(value, "z")) flags|= 0x100;
return flags;
}
if (s == char || s == short || s == int) return long(value);
}
error, "bad axis flag value";
}
/* Line types as defined in 'play.h': */
PL_SOLID = 0;
PL_DASH = 1;
PL_DOT = 2;
PL_DASHDOT = 3;
PL_DASHDOTDOT = 4;
PL_SQUARE = 8;
/*---------------------------------------------------------------------------*/
/*
* 3D TRANSFORM:
* -------------
* Let (X,Y,Z) be the data coordinates (in a direct frame) and
* (XP,YP,ZP) be the coordinates in the view frame (also direct, XP is
* from left to right, YP is from bottom to top and ZP points toward
* the observer), then for an altitude ALT (angle of view above
* XY-plane) and an azimuth AZ (angle of view around Z-axis) the
* coordinates transform is obtained by a rotation around Oz with
* angle AZ (azimuth), followed by a rotation around Ox with angle AX
* (AX = ALT - 90deg):
* XP = X cos(AZ) - Y sin(AZ)
* YP = U cos(AX) - Z sin(AX) = U sin(ALT) + Z cos(ALT)
* ZP = U sin(AX) + Z cos(AX) = - U cos(ALT) + Z sin(ALT)
* where:
* U = X sin(AZ) + Y cos(AZ)
*/
func _pl3xyz(&xp, &yp, &zp, x, y, z)
{
/* DOCUMENT _pl3xyz, xp, yp, zp, x, y, z
transform data coordinates (X,Y,Z) into viewer coordinates
(XP,YP,ZP) for an externally defined altitude ALT and
azimuth AZ (in degrees).
*/
extern alt, az;
if (is_void(az)) az= 30.0; // angle of view around z-axis
if (is_void(alt)) alt= 45.0; // angle of view above xy-plane
d2r= pi / 180.0;
xp= x * (c= cos(az * d2r)) - y * (s= sin(az * d2r));
zp= x * s + y * c;
yp= z * (c= cos(alt * d2r)) + zp * (s= sin(alt * d2r));
zp= z * s - zp * c;
}
func _pl3xy(&xp, &yp, x, y, z)
{
/* DOCUMENT _pl3xy, xp, yp, x, y, z
transform data coordinates (X,Y,Z) into viewer coordinates
(XP,YP) for an externally defined altitude ALT and
azimuth AZ (in degrees).
*/
extern alt, az;
if (is_void(az)) az= 30.0; // angle of view around z-axis
if (is_void(alt)) alt= 45.0; // angle of view above xy-plane
d2r= pi / 180.0;
xp= x * (c= cos(az * d2r)) - y * (s= sin(az * d2r));
yp= z * cos(alt * d2r) + (x * s + y * c) * sin(alt * d2r);
}
/*---------------------------------------------------------------------------*/
func pl3t(text, x, y, z, alt=, az=, legend=, hide=, color=, font=, height=,
opaque=, path=, justify=, tosys=)
{
/* DOCUMENT pl3t, text, x, y, z, alt=alt, az=az, tosys=0/1
plots TEXT (a string) at the point (X,Y,Z) in a 3-dimensional
graph view from altitude ALT (default 45) and azimuth AZ
(default 30) both in degrees. TEXT, X, Y and Z may be arrays
with the same number of elements.
Other optional keywords are:
legend, hide, color, font, height, opaque, path, justify and tosys
and have the same meaning as in plt.
SEE ALSO: plt.
*/
local xp, yp;
_pl3xy, xp, yp, x, y, z;
n= numberof(text);
if (n == 1) {
plt, text, xp, yp,
legend=legend, hide=hide, color=color,font=font, height=height,
opaque=opaque, path=path, justify=justify, tosys=tosys;
} else {
for (i=1; i<=n; i++) {
plt, text(i), xp(i), yp(i),
legend=legend, hide=hide, color=color,font=font, height=height,
opaque=opaque, path=path, justify=justify, tosys=tosys;
}
}
}
/*---------------------------------------------------------------------------*/
func pl3dj(x0, y0, z0, x1, y1, z1, alt=, az=,
legend=, hide=, type=, width=, color=)
{
/* DOCUMENT pl3dj, x0, y0, z0, x1, y1, z1, alt=alt, az=az
plots disjoint lines from (X0,Y0,Z0) to (X1,Y1,Z1) in a 3-dimensional
graph view from altitude ALT (default 45) and azimuth AZ (default 30)
both in degrees. X0, Y0, Z0, X1, Y1 and Z1 must have the same shapes.
Additional keywords are those accepted by pldj: legend, hide, type,
width, and color.
SEE ALSO: pldj, pl3t, pl3s.
*/
local x0p, y0p, x1p, y1p;
_pl3xy, x0p, y0p, x0, y0, z0;
_pl3xy, x1p, y1p, x1, y1, z1;
pldj, x0p, y0p, x1p, y1p,
legend=legend, hide=hide, type=type, width=width, color=color;
}
/*---------------------------------------------------------------------------*/
func pl3s(z, y, x, alt=, az=, axis=, box=, acolor=, fill=, legend=, hide=,
edges=, ecolor=, ewidth=, height=, font=)
/* DOCUMENT pl3s, z, y, x, fill=0/1/2
or pl3s, z, fill=0/1/2
draws 3-D surface plot of Z versus (X,Y). The Z array must be a
2-dimensional array, say NX-by-NY and X and Y must have the same
shape as Z or be vectors of length NX and NY respectively. If
omitted, X and Y are set to the first and second indice value of Z
respectively.
The FILL keyword indicates the kind of plot: 0 (default) for 3D wire
frames, 1 for 3D mesh filled with intensity, 2 for 3D mesh shaded
with light source aligned with observer.
The altitude and azimuth angles (in degrees) can be set with keywords
ALT and AZ, their default values are 30 and 45 deg.
A solid edge can optionally be drawn around each zone by setting the
EDGES keyword non-zero. ECOLOR and EWIDTH determine the edge color
and width.
Frame axis can optionally be drawn around the plot by setting the
AXIS keyword non-zero. The color of the axis and label can be
modified with keyword ACOLOR.
If BOX keyword non-zero, the 3-D box borders are drawn (with the same
color as the axis, i.e., ACOLOR).
EXAMPLE
It is usually better to select an eventually new window and choose
the "nobox" style:
window, max(0, current_window()), wait=1, style="nobox.gs";
x= span(-3,3,50);
y= span(-2,2,40);
z= cos(x(,-) * y(-,));
pl3s, z, y, x, axis=1, fill=2, edges=1, font="timesBI", height=10;
The following keywords are legal (each has a separate help entry):
KEYWORDS: legend, hide, region, edges, ecolor, ewidth, font, height.
SEE ALSO: pl3dj, pl3t, plg, plm, plc, plv, plf, pli, plt, pldj, plfp,
plmesh, limits, range, fma, hcp, palette, bytscl, ...
*/
{
/*
* Check dimensions of input arrays.
*/
local tmp;
if ((msg= pls_mesh(x, tmp, dimsof(z), which=1, inhibit=2)) != string(0) ||
(msg= pls_mesh(y, tmp, dimsof(z), which=2, inhibit=2)) != string(0))
error, msg;
tmp= [];
/*
* Rescale arrays.
*/
xspan= (xmax= max(x)) - (xmin= min(x));
yspan= (ymax= max(y)) - (ymin= min(y));
zspan= (zmax= max(z)) - (zmin= min(z));
if (xspan <= 0.0 || yspan <= 0.0)
error, "X and/or Y are constant";
if (zspan <= 0.0) {
zmin= -1.0;
zmax= +1.0;
zspan= 2.0;
z(*)= 0.0;
} else {
z= (z - zmin) / zspan;
}
x= (x - xmin) / xspan;
y= (y - ymin) / yspan;
/*
* Insure that angles are in the range [-180,180].
*/
if (is_void(alt)) alt = 45.0;
else if ((alt %= 360.0) > 180.0) alt -= 360.0;
else if (alt < -180.0) alt += 360.0;
if (is_void(az)) az = 30.0;
else if ((az %= 360.0) > 180.0) az -= 360.0;
else if (az < -180.0) az += 360.0;
/*
* Plot an invisible box around the plot to left some space
* around for the axis labels.
*/
if (axis) {
local bxp, byp;
if (is_void(height))
height= 10.0;
q= height / 75.0;
_pl3xy, bxp, byp,
[0, 1, 1, 0, 0, 1, 1, 0] + q * [-1, 1, 1,-1,-1, 1, 1,-1],
[0, 0, 1, 1, 0, 0, 1, 1] + q * [-1,-1, 1, 1,-1,-1, 1, 1],
[0, 0, 0, 0, 1, 1, 1, 1] + q * [-1,-1,-1,-1, 1, 1, 1, 1];
bxmin= min(bxp); bxmax= max(bxp);
bymin= min(byp); bymax= max(byp);
pldj, bxmin, bymin, bxmax, bymax, type="none";
pldj, bxmin, bymax, bxmax, bymin, type="none";
}
/*
* Plot the rear of the 3-D box: must figure out which box faces
* are seen, and then which box edges are seen. The plotting order
* is (1) rear part of the box, (2) surface mesh and (3) front
* part of the box and axis.
*/
if (box) {
local bxp0, byp0, bxp1, byp1; // end-points of box edges
local nxp, nyp, nzp; // vectors normal to box faces
_pl3xy, bxp0, byp0,
[0,1,1,0,0,1,1,0,0,1,1,0],
[0,0,1,1,0,0,1,1,0,0,1,1],
[0,0,0,0,1,1,1,1,1,1,1,1];
_pl3xy, bxp1, byp1,
[1,1,0,0,1,1,0,0,0,1,1,0],
[0,1,1,0,0,1,1,0,0,0,1,1],
[0,0,0,0,1,1,1,1,0,0,0,0];
_pl3xyz, nxp, nyp, nzp,
[ 0, 0, 0, 1, 0,-1],
[ 0, 0,-1, 0, 1, 0],
[-1, 1, 0, 0, 0, 0];
face_edges=[[1,2,3,4], [5,6,7,8], [1,5,9,10], [2,6,10,11],
[3,7,11,12], [4,8,9,12]];
visible = array(0, 12);
visible(face_edges(, where(nzp >= 0.0))(*)) = 1;
fore= where(visible);
back= where(!visible);
pldj, bxp0(back), byp0(back), bxp1(back), byp1(back), type=1, color=acolor;
}
/*
* Rotate the surface so as to have the drawing starting at back
* end (i.e., hidden surfaces are drawn first). To this end, the
* first thing to do is to localize the corner of surface z=0
* which is the farest from the observer. Depending on the
* position of the farest corner, X, Y and Z arrays
* may have to be scrambled. After what, the 3-D projection
* of the surface can be computed.
*/
local xp, yp, zp;
_pl3xyz, xp, yp, zp,
[x(0,1), x(1,0), x(0,0), x(1,1)],
[y(0,1), y(1,0), y(0,0), y(1,1)],
0;
far = zp(mnx)(1); // index of farest point
if (far == 1) {
x= x(::-1,);
y= y(::-1,);
z= z(::-1,);
} else if (far == 2) {
x= x(,::-1);
y= y(,::-1);
z= z(,::-1);
} else if (far == 3) {
x= x(::-1,::-1);
y= y(::-1,::-1);
z= z(::-1,::-1);
}
_pl3xyz, xp, yp, zp, x, y, z;
/*
* Plot surface.
*/
if (!fill) {
colors= [];
edges= 1;
} else if (fill == 1) {
colors= bytscl(z, cmin=0.0, cmax=1.0);
} else {
/* compute the two median vectors for each cell */
m0x= xp(dif,zcen);
m0y= yp(dif,zcen);
m0z= zp(dif,zcen);
m1x= xp(zcen,dif);
m1y= yp(zcen,dif);
m1z= zp(zcen,dif);
/* define the normal vector to be their cross product */
nx= m0y*m1z - m0z*m1y;
ny= m0z*m1x - m0x*m1z;
nz= m0y*m1x - m0x*m1y;
m0x= m0y= m0z= m1x= m1y= m1z= [];
colors= bytscl(nz);
//colors= bytscl(nz / abs(nx, ny, nz), cmin=0.0, cmax=1.0);
nx= ny= nz= [];
}
plf, colors, yp, xp, legend=legend, hide=hide,
edges=edges, ecolor=ecolor, ewidth=ewidth;
xp= yp= zp= colors= [];
/*
* Plot the axis and the front of the box.
*/
if (axis) {
if (far == 1) {
px= [ 0, 1, 0]; vx= [ 0, 1, 0];
py= [ 0, 0, 0]; vy= [-1, 0, 0];
pz= [ 1, 1, 0]; vz= [ 1, 0, 0];
} else if (far == 2) {
px= [ 0, 0, 0]; vx= [ 0,-1, 0];
py= [ 1, 0, 0]; vy= [ 1, 0, 0];
pz= [ 0, 0, 0]; vz= [-1, 0, 0];
} else if (far == 3) {
px= [ 0, 0, 0]; vx= [ 0,-1, 0];
py= [ 0, 0, 0]; vy= [-1, 0, 0];
pz= [ 0, 1, 0]; vz= [ 0, 1, 0];
} else {
px= [ 0, 1, 0]; vx= [ 0, 1, 0];
py= [ 1, 0, 0]; vy= [ 1, 0, 0];
pz= [ 1, 0, 0]; vz= [ 0,-1, 0];
}
_pl3tick, xmin, xmax, px, [1,0,0], 0.02 * vx,
height=height, font=font, color=acolor;
_pl3tick, ymin, ymax, py, [0,1,0], 0.02 * vy,
height=height, font=font, color=acolor;
_pl3tick, zmin, zmax, pz, [0,0,1], 0.02 * vz,
height=height, font=font, color=acolor;
}
if (box) {
pldj, bxp0(fore), byp0(fore), bxp1(fore), byp1(fore), type=1, color=acolor;
}
}
/*---------------------------------------------------------------------------*/
func _pl3tick(tmin, tmax, p, d, v, color=, font=, height=, opaque=, path=)
/* DOCUMENT _pl3tick, p, d, v
draw axis between (P(1),P(2),P(3)) and ((P+D)(1),(P+D)(2),(P+D)(3))
and ticks with vectorial length (V(1),V(2),V(3)).
*/
{
extern alt, az;
local px, py, dx, dy, vx, vy;
/*
* Compute projections, draw axis and figure out which
* justification is the best one..
*/
_pl3xy, px, py, p(1), p(2), p(3);
_pl3xy, dx, dy, d(1), d(2), d(3);
_pl3xy, vx, vy, v(1), v(2), v(3);
pldj, px, py, px+dx, py+dy, color=color;
if (where(d != 0)(1) == 3) {
// horizontal ticks for z-axis
vx= vx <= 0.0 ? -max(abs(v)) : max(abs(v));
vy= 0.0;
}
justify= vx > 0.0 ? "L" : (vx ? "R" : "C");
justify += vy > 0.0 ? "B" : (vy ? "T" : "H");
/*
* Compute step size in axis direction to get approximatively 6 ticks
* and plot ticks.
*/
tspan= tmax - tmin;
tstep= 10.0^floor(log10(0.2 * tspan) + 0.5);
if (tspan / tstep < 4)
tstep *= 0.5;
else if (tspan / tstep > 8)
tstep *= 2.0;
imin= ceil(tmin / tstep);
imax= floor(tmax / tstep);
ni= long(imax - imin + 1.0);
t= tstep * span(imin, imax, ni);
tn= (t - tmin) / tspan;
x= px + dx * tn;
y= py + dy * tn;
pldj, x, y, x+vx, y+vy, legend=string(0), color=color;
/*
* Write tick labels.
*/
x += 2 * vx;
y += 2 * vy;
t= swrite(format="%.3g", t);
for (i = 0; i <= ni; i++) {
plt, t(i), x(i), y(i), legend=string(0), justify=justify, tosys=1,
color=color, font=font, height=height, opaque=opaque;
}
}
/*---------------------------------------------------------------------------*/
/* EXTENDED WINDOW/VIEWPORT/STYLE INTERFACE */
func xwindow(win, width=, height=, dpi=, display=, private=, dump=, hcp=,
parent=, xpos=, ypos=,
landscape=, viewport=, units=, font=, size=, color=,
keep=, xopt=, yopt=, xmargin=, ymargin=)
/* DOCUMENT xwindow, win;
-or- xwindow;
-or- xwindow(...);
Create/switch to graphic window WIN. This routine allows one to
create a window of given size with viewport(s) different from the
default one. Otherwise its behaviour should mimics that of the
"window" builtin routine. If called as a function, the return
value is an array of 6 double values:
[WIN, ONE_PIXEL, XMIN, XMAX, YMIN, YMAX]
where WIN is the window number, ONE_PIXEL is the pixel size in NDC
units and [XMIN,XMAX,YMIN,YMAX] is the bounding box of the window
in NDC units.
KEYWORDS
DPI, DISPLAY, PRIVATE, DUMP, HCP, PARENT, XPOS, YPOS - Same options
as for the window builtin routine.
WIDTH, HEIGHT - Window width/height in pixels; default: 450 at 75dpi
and 600 at 100dpi.
LANDSCAPE - If true, use lanscape orientation; else portrait.
VIEWPORT - Viewport coordinates: [XMIN, XMAX, YMIN, YMAX]. Several
viewports can be specified at the same time, in this
case, first dimension of VIEWPORT must be a 4 and
XMIN is VIEWPORT(1,..), XMAX is VIEWPORT(2,..) and so on.
UNITS - Units for the viewport keyword: 0 for NDC (default),
1 for relative, and 2 for pixels.
FONT - Font to use to label axes (see pl_get_font); default is
Helvetica.
SIZE - Text size for axis labels in points; default is 12.
COLOR - Axis color (see pl_get_color); default is foreground.
KEEP - Keep WIN if it already exists? Otherwise the window is
forced to be recreated (this is the default behaviour).
XOPT - Options for X-axis of viewport (see pl_get_axis_flags).
YOPT - Options for Y-axis of viewport (see pl_get_axis_flags).
XMARGIN, YMARGIN -
Note: If you specify multiple viewports, FONT, SIZE, COLOR, XOPT and
YOPT can be arrays to specify different options for each
viewport (except that multiple colors cannot be specifed as RGB
triplets).
SEE ALSO pl_get_axis_flags, pl_get_color, pl_get_font, window. */
{
if (! is_array(GfakeSystem)) {
include, "style.i", 1;
}
/* DPI can be set by pldefault but we have no way to know this value
-- see graph.c */
if (is_void(dpi)) dpi = 100;
else dpi = (dpi < 25 ? 25 : (dpi > 300 ? 300 : long(dpi)));
/* Define some constants -- see gist.h */
ONE_POINT = 0.0013000; // one point in NDC units
ONE_INCH = 72.27*ONE_POINT; // one inch in NDC units
ONE_PIXEL = ONE_INCH/dpi; // one pixel in NDC units
/* Figure out window size in pixels (without top text line) -- called
"topWidth" and "topHeight" in xfancy.c */
if (is_void(width)) width = 6*dpi;
else width = (width <= 31 ? 31 : long(width));
if (is_void(height)) height = 6*dpi;
else height = (height <= 31 ? 31 : long(height));
/* Page size (8.5 x 11 inches) in NDC and pixels -- see xfancy.c */
if (is_void(landscape)) landscape = (width > height);
if (landscape) {
pageWidthNDC = 1.033461;
pageHeightNDC = 0.798584;
} else {
pageWidthNDC = 0.798584;
pageHeightNDC = 1.033461;
}
pageWidth = long(pageWidthNDC/ONE_PIXEL);
pageHeight = long(pageHeightNDC/ONE_PIXEL);
if (width > pageWidth) width= pageWidth;
if (height > pageHeight) height= pageHeight;
/* Compute offsets (really tricky to figure out!) and bounding viewport
-- see xfancy.c */
xoff = (pageWidth - width)/2;
if (landscape) {
//yoff = (pageHeight - height)/2;
yoff = (pageHeight - height + 3)/2;
} else {
//yoff = (pageHeight - height) - (pageWidth - height)/2;
yoff = pageHeight - (pageWidth + height)/2;
}
if (xoff < 0) xoff = 0;
if (yoff < 0) yoff = 0;
vp0_offsets = [ONE_PIXEL*xoff, ONE_PIXEL*xoff,
ONE_PIXEL*yoff, ONE_PIXEL*yoff];
vp0_pixel = [width, width, height, height] - 1.0;
vp0_ndc = vp0_offsets + ONE_PIXEL*vp0_pixel;
/* Fix viewport coordinates and figure out how many viewports to make. */
if (is_void(viewport)) {
viewport = [0.15, 0.85, 0.1, 0.8];
units = 1;
} else if (is_void(units)) {
units = 0;
} else if (is_array(units) && ! dimsof(units)(1)) {
if ((s = structof(units)) == string) {
if (units == "ndc") units = 0;
else if (units == "pixel") units = 2;
else if (units == "relative") units = 1;
else units = -1;
} else if (s != long && s != char && s != short && s != int) {
units = -1;
}
} else {
units = -1;
}
if (units) {
/* Compute viewport size in pixels, then in NDC. */
if (units == 1) {
/* relative units: 0 is min and 1 is max */
viewport *= vp0_pixel;
} else if (units != 2) {
error, "bad value for keyword UNITS (0 or \"ndc\", 1 or \"relative\", 2 or \"pixel\")";
}
viewport = vp0_offsets + ONE_PIXEL*viewport;
}
if (! is_array(viewport) || (dims = dimsof(viewport))(1) < 1 || dims(2) != 4)
error, "bad VIEWPORT array";
nvps = numberof(viewport)/4;
/* Parse other parameters. */
if (is_void(xmargin)) xmargin = 2.0;
if (is_void(ymargin)) ymargin = 2.0;
if (is_void(size)) size = 12;
font = pl_map(pl_get_font, font, 8);
color = pl_map(pl_get_color, color, 254 /* fg */);
xopt = pl_map(pl_get_axis_flags, xopt, 0x33);
yopt = pl_map(pl_get_axis_flags, yopt, 0x33);
if (nvps>1) {
/* Multiple viewports: fix per-viewport settings. */
dims = dims(2:);
dims(1)= numberof(dims)-1;
zero = array(long, dims);
if (is_void(dimsof(xopt, zero))) error, "bad XOPT dimensions";
xopt += zero;
if (is_void(dimsof(yopt, zero))) error, "bad YOPT dimensions";
yopt += zero;
if (is_void(dimsof(size, zero))) error, "bad SIZE dimensions";
size += zero;
if (is_void(dimsof(font, zero))) error, "bad FONT dimensions";
font += zero;
if (is_void(dimsof(color, zero))) error, "bad COLOR dimensions";
color += zero;
}
if (numberof(xopt) != nvps) error, "bad XOPT dimensions";
if (numberof(yopt) != nvps) error, "bad YOPT dimensions";
if (numberof(size) != nvps) error, "bad SIZE dimensions";
if (numberof(font) != nvps) error, "bad FONT dimensions";
if (numberof(color) != nvps) error, "bad COLOR dimensions";
/* Build up systems. */
nHDigits = 5;
nVDigits = 6;
tickLen = ONE_PIXEL*[5.0, 3.0, 1.0, 0.0, 0.0];
system = array(GfakeSystem, nvps);
viewport = viewport(,*); // concatenate extra dims
for (i=1 ; i<=nvps ; ++i) {
fontHeight = size(i)*ONE_POINT;
xFlags = xopt(i);
yFlags = yopt(i);
tickStyle = GpLineAttribs(color=color(i), type=1, width=1);
frameStyle = GpLineAttribs(color=color(i), type=1, width=1);
gridStyle = GpLineAttribs(color=color(i), type=3, width=1);
textStyle = GpTextAttribs(color=color(i), font=font(i), height=fontHeight,
alignH=0, alignV=0, opaque=0);
xLabelOff = (xFlags&0x08 ? max(tickLen) : 0) + fontHeight/1.5;
yLabelOff = (yFlags&0x08 ? max(tickLen) : 0) + 0.75*fontHeight;
xTickOff = (xmargin
? xmargin*ONE_PIXEL + ((xFlags&0x08) ? max(tickLen) : 0.0)
: 0.0);
yTickOff = (ymargin
? ymargin*ONE_PIXEL + ((yFlags&0x08) ? max(tickLen) : 0.0)
: 0.0);
xTickLen = ((xFlags&0x018)==0x018 ? 2.0*tickLen : tickLen);
yTickLen = ((yFlags&0x018)==0x018 ? 2.0*tickLen : tickLen);
horiz = GaAxisStyle(nMajor=7.5, nMinor=50, logAdjMajor=1.2,
logAdjMinor=1.2, nDigits=nHDigits, gridLevel=1,
flags=xFlags, tickOff=xTickOff, labelOff=xLabelOff,
tickLen=xTickLen, tickStyle=tickStyle,
gridStyle=gridStyle, textStyle=textStyle,
xOver=viewport(2,i), yOver=viewport(3,i)-fontHeight);
vert = GaAxisStyle(nMajor=7.5, nMinor=50, logAdjMajor=1.2,
logAdjMinor=1.2, nDigits=nVDigits, gridLevel=1,
flags=yFlags, tickOff=yTickOff, labelOff=yLabelOff,
tickLen=yTickLen, tickStyle=tickStyle,
gridStyle=gridStyle, textStyle=textStyle,
xOver=viewport(1,i), yOver=viewport(4,i)+fontHeight);
system(i) = GfakeSystem(viewport=viewport(,i),
ticks=GaTickStyle(horiz=horiz, vert=vert, frame=1,
frameStyle=frameStyle),
legend=swrite(format="System %d", i));
}
/* layout of the plot legends */
legends = GeLegendBox();
/* layout of the contour legends */
clegends = GeLegendBox();
/* create window and apply plot-style settings */
if (! keep) {
wn = (is_void(win) ? current_window() : win);
if (wn >= 0) window, wn, display="", hcp="";
}
window, win, wait=1, width=width, height=height,
display=display, private=private, dump=dump, hcp=hcp, dpi=dpi,
parent=parent, xpos=xpos, ypos=ypos;
set_style, landscape, system, legends, clegends;
fma;
#if 0
for (i=1;i<=nvps;++i) pl_box, viewport(1,i), viewport(3,i), viewport(2,i),
viewport(4,i), color="red", system=0;
#endif
if (! am_subroutine()) {
result = array(double, 6);
result(1) = win;
result(2) = ONE_PIXEL;
result(3:6) = vp0_ndc;
return result;
}
}
/*---------------------------------------------------------------------------*/
/* SIMPLE BUTTON WIDGETS (based on button.i) */
struct XButton {
double x, y; /* NDC coordinates of button center */
double dx, dy; /* button half widths in NDC */
string text; /* button text */
string font; /* text font (0 for helvetica) */
string color; /* text and border color (0 for fg) */
double height; /* text height */
double width; /* width of line around button (0 is 1.0, <0 no box) */
}
func xbtn_plot(..)
/* DOCUMENT xbtn_plot, button1, button2, ...
plot the specified BUTTONs. Each button in the list may be an array
of XButton structure. Void arguments are no-ops.
SEE ALSO: XButton, xbtn_which. */
{
while (more_args()) {
btns = next_arg();
nbtns = numberof(btns);
for (i=1 ; i<=nbtns ; ++i) {
btn = btns(i);
if (!(font= btn.font)) font= "helvetica";
if (!(color= btn.color)) color= "fg";
if ((h = btn.height)<=0.0) h= 14.0;
x = btn.x;
y = btn.y;
plt, btn.text, x, y, justify="CH", font=font, height=h,
color=color, opaque=1;
dx = btn.dx;
dy = btn.dy;
if (!(w = btn.width)) w= 1.0;
if (w>0.0) {
oldSys = plsys(0);
plg, [y-dy,y-dy,y+dy,y+dy],[x-dx,x+dx,x+dx,x-dx],
closed=1, width=w, type=1, marks=0, color=color;
plsys, oldSys;
}
}
}
}
func xbtn_which(button, x, y)
/* DOCUMENT xbtn_which(button, x, y)
Return index of element in button array BUTTON that contains NDC
coordinates (X,Y). Return -1 if coordinates do not match any
buttons and -N if coordinates match N>1 buttons.
SEE ALSO: XButton, xbtn_plot. */
{
i = where((abs(y-button.y) < button.dy) & (abs(x-button.x) < button.dx));
if ((n = numberof(i)) == 1) return i(1);
if (n == 0) return -1;
return -n;
}
/*---------------------------------------------------------------------------*/
/* EXTENDED MOUSE ROUTINES */
func xmouse_point(nil,win=,prompt=,system=,forever=)
/* DOCUMENT xmouse_point()
-or- xmouse_point
Interactively define a point as with xmouse("point"). The same
keywords as xmouse (which see) can be specified.
SEE ALSO: xmouse. */
{
m = __xmouse(0, "click mouse to choose a position");
if (am_subroutine()) {
if (is_void(m)) write, "aborted";
else write, format="position is (%g,%g)\n", m(1), m(2);
} else if (is_array(m)) return m(1:2);
}
func xmouse_box(nil,win=,prompt=,system=,forever=)
/* DOCUMENT xmouse_box()
-or- xmouse_box
Interactively define a rectangular box as with xmouse("box"). The
same keywords as xmouse (which see) can be specified.
SEE ALSO: xmouse. */
{
m = __xmouse(1, "click and drag mouse to select a region");
if (am_subroutine()) {
if (is_void(m)) write, "aborted";
else write, format="region is [%g : %g]x[%g : %g]\n",
min(m(1), m(3)), max(m(1), m(3)),
min(m(2), m(4)), max(m(2), m(4));
} else if (is_array(m)) return [min(m(1), m(3)), max(m(1), m(3)),
min(m(2), m(4)), max(m(2), m(4))];
}
func xmouse_line(nil,win=,prompt=,system=,forever=)
/* DOCUMENT xmouse_line()
-or- xmouse_line
Interactively define a line as with xmouse("line"). The same keywords
as xmouse (which see) can be specified.
SEE ALSO: xmouse. */
{
m = __xmouse(2, "click and drag mouse to choose a line");
if (am_subroutine()) {
if (is_void(m)) {
write, "aborted";
} else {
x0 = m(1);
y0 = m(2);
x1 = m(3);
y1 = m(4);
dx = x1 - x0;
dy = y1 - y0;
write,
format="line end-points are (%g,%g) and (%g,%g), lenght = %g, angle=%g deg\n",
x0, y0, x1, y1, abs(dx, dy), atan(dy, dx)*(180/pi);
}
} else if (is_array(m)) {
return m(1:4);
}
}
func xmouse_length(nil,win=,prompt=,system=,forever=)
/* DOCUMENT xmouse_length()
-or- xmouse_length
Interactively measure a length as with xmouse("length"). The same
keywords as xmouse (which see) can be specified.
SEE ALSO: xmouse. */
{
m = __xmouse(2, "click and drag mouse to measure a distance");
if (am_subroutine()) {
if (is_void(m)) write, "aborted";
else write, format="distance from (%g,%g) to (%g,%g) = %g\n",
m(1), m(2), m(3), m(4), abs(m(1) - m(3), m(2) - m(4));
} else if (is_array(m)) return abs(m(1) - m(3), m(2) - m(4));
}
func xmouse(type,win=,prompt=,system=,forever=)
/* DOCUMENT xmouse();
* -or- xmouse(type);
* -or- xmouse;
* -or- xmouse, type;
* Asks the user to click into a graphic window to indicate a position
* (the default if TYPE is not specified), or to define a segment or a
* rectangular box, or to measure a distance. The possible values for
* TYPE are:
*
* TYPE RESULT
* --------- ----------------
* 0 "point" [X,Y]
* 1 "box" [XMIN, XMAX, YMIN, YMAX]
* 2 "line" [X0, Y0, X1, Y1]
* 3 "length" LENGHT
*
* When called as a function, the coordinates of the result get returned;
* when called as a subroutine, the position is printed out. If the user
* cancel the operation (see mouse function) or click into another window
* than the target one, no position is selected (nil get returned). This
* behaviour can be changed by setting keyword FOREVER to true in which
* case the function loop until a valid selection is done.
*
* Keyword WIN can be used to specify the target graphic window which is
* by default the curent graphic window.
*
* Keyword PROMPT can be used to specify a prompt string different from
* the default one.
*
* Keyword SYSTEM can be used to specify the coordinate system to use,
* the default being to use the coordinate system that is under the
* mouse. The returned coordinates/lenght are in units of that
* coordinate system.
*
*
* SEE ALSO:
* mouse, xmouse_demo, xmouse_point, xmouse_box, xmouse_line,
* xmouse_length.
*/
{
if (is_void(type)) {
op = xmouse_point;
} else if (is_array(type) && ! dimsof(type)(1)) {
if ((s = structof(type)) == string) {
op = symbol_def("xmouse_"+type);
if (is_func(op) != 1) error, "unrecognized type name: \""+type+"\"";
} else if (s == long || s == int || s == char || s == short) {
/**/ if (type == 0) op = xmouse_point;
else if (type == 1) op = xmouse_box;
else if (type == 2) op = xmouse_line;
else if (type == 3) op = xmouse_length;
else error, "bad mouse selection type";
} else {
error, "bad mouse selection type must be a scalar integer of string";
}
} else {
error, "bad mouse selection type";
}
if (am_subroutine()) op, win=win, system=system, prompt=prompt,
forever=forever;
else return op(win=win, system=system, prompt=prompt, forever=forever);
}
func __xmouse(style, default_prompt)
/* DOCUMENT __xmouse()
Private function used by xmouse and xmouse_[...] routines.
SEE ALSO: xmouse. */
{
extern win, prompt, system, forever;
oldwin = current_window();
if (! is_void(win)) window, win;
if (is_void(system)) system = -1;
if (is_void(prompt)) prompt = default_prompt;
for (;;) {
m = mouse(system, style, prompt);
if (is_array(m) && m(10)) break; /* m(10) is the depressed button */
if (! forever) {
m = [];
break;
}
}
if (oldwin >= 0) window, oldwin;
return m;
}
func xmouse_demo
/* DOCUMENT xmouse_demo
* Run a simple demonstration of the 'xmouse' functions.
*
* SEE ALSO:xmouse_point, xmouse_line, xmouse_box, xmouse_length.
*/
{
t=xmouse_point();
plp,t(2),t(1),symbol=PL_STAR,color=PL_BLUE,width=5,fill=0;
t=xmouse_line();
pldj,t(1),t(2),t(3),t(4),color=PL_GREEN;
t=xmouse_box();
pl_box,t,color=PL_GREEN;
xmouse_length;
}
/*---------------------------------------------------------------------------*/
/* PLOTTING OF SIMPLE SHAPES */
func pl_box(xmin,xmax,ymin,ymax,color=,width=,type=)
/* DOCUMENT pl_box, xmin, xmax, ymin, ymax;
-or- pl_box, [xmin, xmax, ymin, ymax];
Plots a rectangular box onto the current graphic device. As for plg
(which see), keywords COLOR, WIDTH and TYPE can be specified.
SEE ALSO: plg, pl_get_color, pl_cbox, pl_circle, pl_ellipse. */
{
if (is_void(xmax) && numberof(xmin)==4) {
ymax = xmin(4);
ymin = xmin(3);
xmax = xmin(2);
xmin = xmin(1);
}
plg, [ymin,ymin,ymax,ymax], [xmin,xmax,xmax,xmin], closed=1,
color=pl_get_color(color), width=width, type=type;
}
func pl_cbox(x0, y0, xsize, ysize, color=, width=, type=, legend=)
/* DOCUMENT pl_cbox, x0, y0, size;
-or- pl_cbox, x0, y0, xsize, ysize;
Draw a SIZE by SIZE square box or a XSIZE by YSIZE rectangular box
centered around (X0,Y0). Keywords COLOR, WIDTH and TYPE can be used
and have the same meaning as for builtin routine "plg". If keyword
LEGEND is not set, an empty legend will be used.
SEE ALSO plg, pl_box, pl_circle, pl_ellipse. */
{
if (is_void(ysize)) ysize= xsize;
if (is_void(legend)) legend=string(0);
plg,
x0 + xsize * [-0.5, -0.5, +0.5, +0.5],
y0 + ysize * [-0.5, +0.5, +0.5, -0.5],
color=color, width=width, type=type, marks=0, closed=1, legend=legend;
}
func pl_circle(x0, y0, r, color=, width=, number=, type=, legend=)
/* DOCUMENT pl_circle, x0, y0, r;
Draw circle(s) of radius R around (X0,Y0). Value of keyword NUMBER
tells how many segments to use to approximate the circle (default 20).
Keywords COLOR, WIDTH and TYPE can be used and have the same meaning
as for "plg" routine (which see). If keyword LEGEND is not set, an
empty legend will be used. Arguments may be conformable arrays to
draw several circles in one call (but keywords must have scalar values
if any).
SEE ALSO plg, pl_box, pl_cbox, pl_ellipse. */
{
if (is_void(legend)) legend = string();
if (is_void(number)) number = 20;
PI = 3.14159265358979323848;
t = (2.0*PI/number)*indgen(number);
cos_t = cos(t);
sin_t = sin(t);
if (is_void((dims = dimsof(x0, y0, r))))
error, "non conformable arguments";
if (dims(1)) {
/* Draw several circles. */
dummy = array(double, dims);
x0 += dummy;
y0 += dummy;
r += dummy;
n = numberof(dummy);
for (i=1 ; i<=n ; ++i) {
plg, y0(i) + r(i)*cos_t, x0(i) + r(i)*sin_t,
width=width, color=color, type=type, marks=0, closed=1, legend=legend;
}
} else {
/* Draw a single circle. */
plg, y0 + r*cos_t, x0 + r*sin_t,
width=width, color=color, type=type, marks=0, closed=1, legend=legend;
}
}
func pl_ellipse(x0, y0, a, b, theta, color=, width=, number=, type=, legend=)
/* DOCUMENT pl_ellipse, x0, y0, a, b, theta;
Draw ellipse(s) centered at (X0,Y0) with semi-axis A and B. THETA is
the angle (in degrees counterclockwise) of the axis of semi-length A
with horizontal axis. Value of keyword NUMBER tells how many segments
to use to approximate the circle (default 20). Keywords COLOR, WIDTH
and TYPE can be used and have the same meaning as for "plg" routine
(which see). If keyword LEGEND is not set, an empty legend will be
used. Arguments may be conformable arrays to draw several ellipses in
one call (but keywords must have scalar values if any).
SEE ALSO plg, pl_box, pl_cbox, pl_circle. */
{
if (is_void(legend)) legend = string();
if (is_void(number)) number = 20;
PI = 3.14159265358979323848;
t = (2.0*PI/number)*indgen(number);
cos_t = cos(t);
sin_t = sin(t);
if (is_void((dims = dimsof(x0, y0, a, b, theta))))
error, "non conformable arguments";
if (dims(1)) {
/* Draw several ellipses. */
dummy = array(double, dims);
x0 += dummy;
y0 += dummy;
a += dummy;
b += dummy;
theta = (PI/180.0)*theta + dummy;
n = numberof(dummy);
for (i=1 ; i<=n ; ++i) {
u = a(i)*cos_t;
v = b(i)*sin_t;
t = theta(i);
cs = cos(t);
sn = sin(t);
plg, y0(i) + u*sn + v*cs, x0(i) + u*cs - v*sn,
width=width, color=color, type=type, marks=0, closed=1, legend=legend;
}
} else {
/* Draw a single ellipse. */
theta *= (PI/180.0);
u = a*cos_t;
v = b*sin_t;
cs = cos(theta);
sn = sin(theta);
plg, y0 + u*sn + v*cs, x0 + u*cs - v*sn,
width=width, color=color, type=type, marks=0, closed=1, legend=legend;
}
}
/*---------------------------------------------------------------------------*/
/* CONVERT POSTSCRIPT FILE INTO BITMAP IMAGE */
local ps2png, ps2jpeg, _ps2any_worker;
/* DOCUMENT ps2png, inp;
* -or- ps2png, inp, out;
* -or- ps2png(inp);
* -or- ps2png(inp, out);
* -or- ps2jpeg, inp;
* -or- ps2jpeg, inp, out;
* -or- ps2jpeg(inp);
* -or- ps2jpeg(inp, out); *
*
* Convert PostScript or PDF file INP into a PNG or JPEG image. If
* the name of the output file OUT is not specified, it get
* automatically derived from INP by replacing extension ".eps",
* ".ps" or ".pdf" by ".png" or ".jpg" (if INP do not have any of
* the extensions ".eps", ".ps" nor ".pdf", the ".png" or ".jpg"
* extension is simply appended).
*
* When called as a subroutine, the conversion script is executed
* (by the system built-in function); when called as a function, the
* command is returned but not executed.
*
* The conversion is handled by GhostScript and by various commands
* from the netpbm package. The gs command and the netpbm commands
* must be found in the shell PATH.
*
* The following keywords are supported:
*
* GRAY = flag: convert to grayscale (default is color)?
*
* DPI = resolution in pixel per inch (default 300).
*
* BORDER = border in pixels (default 3).
*
* ALPHABITS = number of antialiasing bits for both text and
* graphics: 0 (for none), 1, 2 or 4 (default is 0).
*
* TEXTALPHABITS = same as ALPHABITS but for text only (default
* is ALPHABITS).
*
* GRAPHICSALPHABITS = same as ALPHABITS but for graphics only
* (default is ALPHABITS).
*
* SMOOTH = flag: smooth image (default is false)?
*
* DEVICE = GhostScript output device to use (default is "ppmraw");
* it is probably better to not change this option.
*
* The following keywords are only for conversion to PNG images:
*
* TRANSPARENT = name of transparent color COLOR (default none);
*
*
* The following keywords are only for conversion to JPEG images:
*
* QUALITY = quality (in percent) for JPEG image (default 85%).
*
*
* SEE ALSO: system.
*/
func ps2png(inp, out, gray=, smooth=, dpi=, border=, device=,
alphabits=, graphicsalphabits=, textalphabits=,
transparent=)
{
local status;
command = _ps2any_worker(inp, out, 0);
if (status) {
error, command;
}
if (am_subroutine()) {
system, command;
} else {
return command;
}
}
func ps2jpeg(inp, out, gray=, smooth=, dpi=, border=, device=,
alphabits=, graphicsalphabits=, textalphabits=,
quality=)
{
local status;
command = _ps2any_worker(inp, out, 1);
if (status) {
error, command;
}
if (am_subroutine()) {
system, command;
} else {
return command;
}
}
func _ps2any_worker(inp, out, jpg)
{
/* Status and all options as external variables. */
extern status;
extern alphabits, graphicsalphabits, textalphabits, quality;
extern gray, smooth, dpi, border, device, transparent;
status = -1; /* assume we have an error */
/* Parse common options. */
if (is_void(gray)) {
gray = 0n;
} else if (is_scalar(gray)) {
gray = !(!gray);
} else {
return "bad value for GRAY keyword";
}
if (is_void(smooth)) {
smooth = 0n;
} else if (is_scalar(smooth)) {
smooth = !(!smooth);
} else {
return "bad value for SMOOTH keyword";
}
if (is_void(dpi)) {
dpi = 300.0;
} else if (! is_scalar(dpi) ||
! (is_integer(dpi) || is_real(dpi)) ||
dpi <= 0.0) {
return "bad value for DPI keyword";
} else {
dpi = double(dpi);
}
if (is_void(border)) {
border = 3.0;
} else if (! is_scalar(border) ||
! (is_integer(border) || is_real(border)) ||
border < 0.0) {
return "bad value for BORDER keyword";
} else {
border = double(border);
}
if (is_void(device)) {
device = "ppmraw";
} else if (! is_scalar(device) || ! is_string(device)) {
return "bad value for DEVICE keyword";
}
if (is_scalar(alphabits) && is_integer(alphabits) &&
0 <= alphabits && alphabits <= 4) {
alphabits = long(alphabits);
} else if (is_void(alphabits)) {
alphabits = 0;
} else {
return "bad value for keyword ALPHABITS";
}
if (is_scalar(textalphabits) && is_integer(textalphabits) &&
0 <= textalphabits && textalphabits <= 4) {
textalphabits = long(textalphabits);
} else if (is_void(textalphabits)) {
textalphabits = alphabits;
} else {
return "bad value for keyword TEXTALPHABITS";
}
if (is_scalar(graphicsalphabits) && is_integer(graphicsalphabits) &&
0 <= graphicsalphabits && graphicsalphabits <= 4) {
graphicsalphabits = long(graphicsalphabits);
} else if (is_void(graphicsalphabits)) {
graphicsalphabits = alphabits;
} else {
return "bad value for keyword GRAPHICSALPHABITS";
}
/* Buil up the code. */
command = swrite(format="gs -dSAFER -dNOPAUSE -dBATCH -q -sDEVICE=%s -r%.0f",
device, dpi);
if (graphicsalphabits > 0) {
command += swrite(format=" -dGraphicsAlphaBits=%d", graphicsalphabits);
}
if (textalphabits > 0) {
command += swrite(format=" -dTextAlphaBits=%d", textalphabits);
}
command += swrite(format=" -sOutputFile=- \'%s\'", inp);
if (smooth) {
command += " | pnmalias";
}
command += " | pnmcrop";
if (border > 0) {
command += swrite(format=" | pnmpad -white -left %.0f -right %.0f -top %.0f -bottom %.0f", border, border, border, border);
}
if (is_void(out)) {
out = strip_file_extension(inp, ".ps", ".eps") + (jpg ? ".jpg" : ".png");
}
if (jpg) {
/* Convert to JPEG file. */
if (is_void(quality)) {
quality = 85.0;
} else if (! is_scalar(quality) ||
! (is_integer(quality) || is_real(quality)) ||
quality < 0.0 || quality > 100.0) {
return "bad value for QUALITY keyword";
} else {
quality = double(quality);
}
command += swrite(format=" | pnmtojpeg > '%s' --optimize --quality=%.0f",
out, quality);
} else {
/* Convert to PNG file. */
command += swrite(format=" | pnmtopng > '%s' -compression 9", out);
if (is_scalar(transparent) && is_string(transparent)) {
command += swrite(format=" -transparent '%s'", transparent);
} else if (! is_void(transparent)) {
return "bad value for TRANSPARENT keyword";
}
}
/* Clear error status and return code. */
status = 0;
return command;
}
/*---------------------------------------------------------------------------*/
/* DUMP GRAPHICAL WINDOW AS BITMAP IMAGE */
local win2png, win2jpeg, _win2any_worker;
/* DOCUMENT win2png, filename;
* -or- win2png, format, value;
* -or- win2jpeg, filename;
* -or- win2jpeg, format, value;
*
* Dump contents of current graphical window into a PNG or JPEG
* image. FILENAME is the name of the output file. If can also be
* specified by the two arguments FORMAT and VALUE, in which case
* FILENAME is computed by:
*
* FILENAME = swrite(format=FORMAT, VALUE);
*
* for instance:
*
* win2png, "img-%04d.png", 3;
*
* to save image into file "img-0003.png".
*
* Keyword WIN can be set to specify another graphical window
* than the current one.
*
* Keyword TEMPS can be set to specify the name of the temporary
* PostScript file.
*
* If keyword DEBUG is true, the conversion script get printed out
* and the temporary PostScript file is not deleted (you can guess
* its name from the conversion script).
*
* In addition, the same keywords as ps2png and ps2jpeg (which see)
* are available. Note that, if not specified, a default value is
* provided for the DPI keyword of ps2png and ps2jpeg so that the
* resulting image has the same resolution as the graphical window
* (this however require Yeti plugin).
*
*
* SEE ALSO: ps2png, ps2jpeg, hcps, tempfile, current_window, window.
*/
func win2png(filename, counter, win=, debug=, temp=,
gray=, smooth=, dpi=, border=, device=,
alphabits=, graphicsalphabits=, textalphabits=,
transparent=)
{
result = _win2any_worker(filename, counter, 0);
if (result) {
error, result;
}
}
func win2jpeg(filename, counter, win=, debug=, temp=,
gray=, smooth=, dpi=, border=, device=,
alphabits=, graphicsalphabits=, textalphabits=,
quality=)
{
result = _win2any_worker(filename, counter, 1);
if (result) {
error, result;
}
}
func _win2any_worker(filename, counter, jpg)
{
/* All options as external variables. */
extern temp, dpi, win;
local inp, out, status;
status = -1; /* assume we have an error */
/* Prepare name of output file. */
if (is_string(filename) && is_scalar(filename)) {
if (is_void(counter)) {
eq_nocopy, output, filename;
} else {
output = swrite(format=filename, counter);
}
} else {
return "expecting a scalar string for FILENAME";
}
/* Figure out which window to dump. */
old_win = current_window();
if (is_void(win)) {
tgt_win = old_win;
} else if (window_exists(win)) {
tgt_win = long(win);
} else {
tgt_win = -1;
}
if (tgt_win < 0) {
return "bad graphical window";
}
if (is_void(dpi)) {
if (! is_func(window_geometry)) {
require, "yeti.i";
}
geom = window_geometry(tgt_win);
dpi = long(floor(geom(1) + 0.5));
}
/* Temporary input PS file. */
if (is_void(temp)) {
temp = tempfile("/tmp/png_dump-XXXXXX.ps");
} else if (! is_string(temp) || ! is_scalar(temp)) {
return "expecting a scalar string for TEMP";
}
/* Build command. */
script = _ps2any_worker(temp, output, jpg);
if (status) {
return script;
}
/* Dump graphics window. */
window, tgt_win, hcp=temp, dump=1, legends=0, wait=1;
hcp;
window, tgt_win, hcp="";
if (tgt_win != old_win && old_win != -1) {
window, old_win;
}
pause, 1;
if (debug) {
write, format="%s\n", script;
}
system, script;
if (! debug) {
remove, temp;
}
}
/*---------------------------------------------------------------------------*/
/* UTILITIES */
func pl_map(op, arg, default)
/* DOCUMENT pl_map(op, arg)
* -or- pl_map(op, arg, default)
* Maps scalar function OP onto array argument ARG to mimics element-wise
* unary operation. Returns DEFAULT if ARG is void.
*
* SEE ALSO xwindow.
*/
{
if (is_array(arg)) {
/* use structof to avoid unecessary string duplication for string result */
out = array(structof((out1 = op(arg(1)))), dimsof(arg));
out(1) = out1;
n = numberof(arg);
for (i=2 ; i<=n ; ++i) out(i) = op(arg(i));
return out;
}
if (is_void(arg)) return default;
error, "unexpected argument";
}
func win_copy_lim(src, dst)
/* DOCUMENT win_copy_lim, src, dst;
* Make limits of window DST the same as those in window SRC.
*
* SEE ALSO: current_window, limits, window.
*/
{
win = current_window();
window, src;
l = limits();
window, dst;
limits,l;
if (win >= 0) window, win; /* restore old current window */
}
/*---------------------------------------------------------------------------*/
/* COLOR DATABASE */
func pl_database_index_to_rgb(color)
{
return _PL_COLOR_RGB(, color);
}
func pl_database_index_to_packed(color)
{
return _PL_COLOR_PACKED(color);
}
func pl_rgb_to_packed(color)
{
return (0x01000000 | long(color(1,..)) |
(long(color(2,..)) << 8) | (long(color(3,..)) << 16));
}
func pl_packed_to_rgb(color)
{
rgb = array(char, 3, dimsof(color));
rgb(1, ..) = (color & 0xff);
rgb(2, ..) = ((color >> 8) & 0xff);
rgb(3, ..) = ((color >> 16) & 0xff);
return rgb;
}
/* Names of known colors (the 16 indexed ones must come first). */
_PL_COLOR_NAMES = \
["bg", "fg", "black", "white", "red", "green", "blue", "cyan", "magenta",
"yellow", "grayd", "grayc", "grayb", "graya", "extra", "xor",
"aliceblue", "antiquewhite", "antiquewhite1", "antiquewhite2",
"antiquewhite3", "antiquewhite4", "aquamarine", "aquamarine1", "aquamarine2",
"aquamarine3", "aquamarine4", "azure", "azure1", "azure2", "azure3", "azure4",
"beige", "bisque", "bisque1", "bisque2", "bisque3", "bisque4",
"blanchedalmond", "blue1", "blue2", "blue3", "blue4", "blueviolet", "brown",
"brown1", "brown2", "brown3", "brown4", "burlywood", "burlywood1",
"burlywood2", "burlywood3", "burlywood4", "cadetblue", "cadetblue1",
"cadetblue2", "cadetblue3", "cadetblue4", "chartreuse", "chartreuse1",
"chartreuse2", "chartreuse3", "chartreuse4", "chocolate", "chocolate1",
"chocolate2", "chocolate3", "chocolate4", "coral", "coral1", "coral2",
"coral3", "coral4", "cornflowerblue", "cornsilk", "cornsilk1", "cornsilk2",
"cornsilk3", "cornsilk4", "cyan1", "cyan2", "cyan3", "cyan4", "darkblue",
"darkcyan", "darkgoldenrod", "darkgoldenrod1", "darkgoldenrod2",
"darkgoldenrod3", "darkgoldenrod4", "darkgray", "darkgreen", "darkgrey",
"darkkhaki", "darkmagenta", "darkolivegreen", "darkolivegreen1",
"darkolivegreen2", "darkolivegreen3", "darkolivegreen4", "darkorange",
"darkorange1", "darkorange2", "darkorange3", "darkorange4", "darkorchid",
"darkorchid1", "darkorchid2", "darkorchid3", "darkorchid4", "darkred",
"darksalmon", "darkseagreen", "darkseagreen1", "darkseagreen2",
"darkseagreen3", "darkseagreen4", "darkslateblue", "darkslategray",
"darkslategray1", "darkslategray2", "darkslategray3", "darkslategray4",
"darkslategrey", "darkturquoise", "darkviolet", "deeppink", "deeppink1",
"deeppink2", "deeppink3", "deeppink4", "deepskyblue", "deepskyblue1",
"deepskyblue2", "deepskyblue3", "deepskyblue4", "dimgray", "dimgrey",
"dodgerblue", "dodgerblue1", "dodgerblue2", "dodgerblue3", "dodgerblue4",
"firebrick", "firebrick1", "firebrick2", "firebrick3", "firebrick4",
"floralwhite", "forestgreen", "gainsboro", "ghostwhite", "gold", "gold1",
"gold2", "gold3", "gold4", "goldenrod", "goldenrod1", "goldenrod2",
"goldenrod3", "goldenrod4", "gray", "gray0", "gray1", "gray10", "gray100",
"gray11", "gray12", "gray13", "gray14", "gray15", "gray16", "gray17",
"gray18", "gray19", "gray2", "gray20", "gray21", "gray22", "gray23", "gray24",
"gray25", "gray26", "gray27", "gray28", "gray29", "gray3", "gray30", "gray31",
"gray32", "gray33", "gray34", "gray35", "gray36", "gray37", "gray38",
"gray39", "gray4", "gray40", "gray41", "gray42", "gray43", "gray44", "gray45",
"gray46", "gray47", "gray48", "gray49", "gray5", "gray50", "gray51", "gray52",
"gray53", "gray54", "gray55", "gray56", "gray57", "gray58", "gray59", "gray6",
"gray60", "gray61", "gray62", "gray63", "gray64", "gray65", "gray66",
"gray67", "gray68", "gray69", "gray7", "gray70", "gray71", "gray72", "gray73",
"gray74", "gray75", "gray76", "gray77", "gray78", "gray79", "gray8", "gray80",
"gray81", "gray82", "gray83", "gray84", "gray85", "gray86", "gray87",
"gray88", "gray89", "gray9", "gray90", "gray91", "gray92", "gray93", "gray94",
"gray95", "gray96", "gray97", "gray98", "gray99", "green1", "green2",
"green3", "green4", "greenyellow", "grey", "grey0", "grey1", "grey10",
"grey100", "grey11", "grey12", "grey13", "grey14", "grey15", "grey16",
"grey17", "grey18", "grey19", "grey2", "grey20", "grey21", "grey22", "grey23",
"grey24", "grey25", "grey26", "grey27", "grey28", "grey29", "grey3", "grey30",
"grey31", "grey32", "grey33", "grey34", "grey35", "grey36", "grey37",
"grey38", "grey39", "grey4", "grey40", "grey41", "grey42", "grey43", "grey44",
"grey45", "grey46", "grey47", "grey48", "grey49", "grey5", "grey50", "grey51",
"grey52", "grey53", "grey54", "grey55", "grey56", "grey57", "grey58",
"grey59", "grey6", "grey60", "grey61", "grey62", "grey63", "grey64", "grey65",
"grey66", "grey67", "grey68", "grey69", "grey7", "grey70", "grey71", "grey72",
"grey73", "grey74", "grey75", "grey76", "grey77", "grey78", "grey79", "grey8",
"grey80", "grey81", "grey82", "grey83", "grey84", "grey85", "grey86",
"grey87", "grey88", "grey89", "grey9", "grey90", "grey91", "grey92", "grey93",
"grey94", "grey95", "grey96", "grey97", "grey98", "grey99", "honeydew",
"honeydew1", "honeydew2", "honeydew3", "honeydew4", "hotpink", "hotpink1",
"hotpink2", "hotpink3", "hotpink4", "indianred", "indianred1", "indianred2",
"indianred3", "indianred4", "ivory", "ivory1", "ivory2", "ivory3", "ivory4",
"khaki", "khaki1", "khaki2", "khaki3", "khaki4", "lavender", "lavenderblush",
"lavenderblush1", "lavenderblush2", "lavenderblush3", "lavenderblush4",
"lawngreen", "lemonchiffon", "lemonchiffon1", "lemonchiffon2",
"lemonchiffon3", "lemonchiffon4", "lightblue", "lightblue1", "lightblue2",
"lightblue3", "lightblue4", "lightcoral", "lightcyan", "lightcyan1",
"lightcyan2", "lightcyan3", "lightcyan4", "lightgoldenrod", "lightgoldenrod1",
"lightgoldenrod2", "lightgoldenrod3", "lightgoldenrod4",
"lightgoldenrodyellow", "lightgray", "lightgreen", "lightgrey", "lightpink",
"lightpink1", "lightpink2", "lightpink3", "lightpink4", "lightsalmon",
"lightsalmon1", "lightsalmon2", "lightsalmon3", "lightsalmon4",
"lightseagreen", "lightskyblue", "lightskyblue1", "lightskyblue2",
"lightskyblue3", "lightskyblue4", "lightslateblue", "lightslategray",
"lightslategrey", "lightsteelblue", "lightsteelblue1", "lightsteelblue2",
"lightsteelblue3", "lightsteelblue4", "lightyellow", "lightyellow1",
"lightyellow2", "lightyellow3", "lightyellow4", "limegreen", "linen",
"magenta1", "magenta2", "magenta3", "magenta4", "maroon", "maroon1",
"maroon2", "maroon3", "maroon4", "mediumaquamarine", "mediumblue",
"mediumorchid", "mediumorchid1", "mediumorchid2", "mediumorchid3",
"mediumorchid4", "mediumpurple", "mediumpurple1", "mediumpurple2",
"mediumpurple3", "mediumpurple4", "mediumseagreen", "mediumslateblue",
"mediumspringgreen", "mediumturquoise", "mediumvioletred", "midnightblue",
"mintcream", "mistyrose", "mistyrose1", "mistyrose2", "mistyrose3",
"mistyrose4", "moccasin", "navajowhite", "navajowhite1", "navajowhite2",
"navajowhite3", "navajowhite4", "navy", "navyblue", "oldlace", "olivedrab",
"olivedrab1", "olivedrab2", "olivedrab3", "olivedrab4", "orange", "orange1",
"orange2", "orange3", "orange4", "orangered", "orangered1", "orangered2",
"orangered3", "orangered4", "orchid", "orchid1", "orchid2", "orchid3",
"orchid4", "palegoldenrod", "palegreen", "palegreen1", "palegreen2",
"palegreen3", "palegreen4", "paleturquoise", "paleturquoise1",
"paleturquoise2", "paleturquoise3", "paleturquoise4", "palevioletred",
"palevioletred1", "palevioletred2", "palevioletred3", "palevioletred4",
"papayawhip", "peachpuff", "peachpuff1", "peachpuff2", "peachpuff3",
"peachpuff4", "peru", "pink", "pink1", "pink2", "pink3", "pink4", "plum",
"plum1", "plum2", "plum3", "plum4", "powderblue", "purple", "purple1",
"purple2", "purple3", "purple4", "red1", "red2", "red3", "red4", "rosybrown",
"rosybrown1", "rosybrown2", "rosybrown3", "rosybrown4", "royalblue",
"royalblue1", "royalblue2", "royalblue3", "royalblue4", "saddlebrown",
"salmon", "salmon1", "salmon2", "salmon3", "salmon4", "sandybrown",
"seagreen", "seagreen1", "seagreen2", "seagreen3", "seagreen4", "seashell",
"seashell1", "seashell2", "seashell3", "seashell4", "sienna", "sienna1",
"sienna2", "sienna3", "sienna4", "skyblue", "skyblue1", "skyblue2",
"skyblue3", "skyblue4", "slateblue", "slateblue1", "slateblue2", "slateblue3",
"slateblue4", "slategray", "slategray1", "slategray2", "slategray3",
"slategray4", "slategrey", "snow", "snow1", "snow2", "snow3", "snow4",
"springgreen", "springgreen1", "springgreen2", "springgreen3", "springgreen4",
"steelblue", "steelblue1", "steelblue2", "steelblue3", "steelblue4", "tan",
"tan1", "tan2", "tan3", "tan4", "thistle", "thistle1", "thistle2", "thistle3",
"thistle4", "tomato", "tomato1", "tomato2", "tomato3", "tomato4", "turquoise",
"turquoise1", "turquoise2", "turquoise3", "turquoise4", "violet", "violetred",
"violetred1", "violetred2", "violetred3", "violetred4", "wheat", "wheat1",
"wheat2", "wheat3", "wheat4", "whitesmoke", "yellow1", "yellow2", "yellow3",
"yellow4", "yellowgreen"];
_PL_COLOR_RGB = \
[[255,255,255], [ 0, 0, 0], [ 0, 0, 0], [255,255,255], [255, 0, 0],
[ 0,255, 0], [ 0, 0,255], [ 0,255,255], [255, 0,255], [255,255, 0],
[100,100,100], [150,150,150], [190,190,190], [214,214,214], [ 0, 0, 0],
[ 0, 0, 0], [240,248,255], [250,235,215], [255,239,219], [238,223,204],
[205,192,176], [139,131,120], [127,255,212], [127,255,212], [118,238,198],
[102,205,170], [ 69,139,116], [240,255,255], [240,255,255], [224,238,238],
[193,205,205], [131,139,139], [245,245,220], [255,228,196], [255,228,196],
[238,213,183], [205,183,158], [139,125,107], [255,235,205], [ 0, 0,255],
[ 0, 0,238], [ 0, 0,205], [ 0, 0,139], [138, 43,226], [165, 42, 42],
[255, 64, 64], [238, 59, 59], [205, 51, 51], [139, 35, 35], [222,184,135],
[255,211,155], [238,197,145], [205,170,125], [139,115, 85], [ 95,158,160],
[152,245,255], [142,229,238], [122,197,205], [ 83,134,139], [127,255, 0],
[127,255, 0], [118,238, 0], [102,205, 0], [ 69,139, 0], [210,105, 30],
[255,127, 36], [238,118, 33], [205,102, 29], [139, 69, 19], [255,127, 80],
[255,114, 86], [238,106, 80], [205, 91, 69], [139, 62, 47], [100,149,237],
[255,248,220], [255,248,220], [238,232,205], [205,200,177], [139,136,120],
[ 0,255,255], [ 0,238,238], [ 0,205,205], [ 0,139,139], [ 0, 0,139],
[ 0,139,139], [184,134, 11], [255,185, 15], [238,173, 14], [205,149, 12],
[139,101, 8], [169,169,169], [ 0,100, 0], [169,169,169], [189,183,107],
[139, 0,139], [ 85,107, 47], [202,255,112], [188,238,104], [162,205, 90],
[110,139, 61], [255,140, 0], [255,127, 0], [238,118, 0], [205,102, 0],
[139, 69, 0], [153, 50,204], [191, 62,255], [178, 58,238], [154, 50,205],
[104, 34,139], [139, 0, 0], [233,150,122], [143,188,143], [193,255,193],
[180,238,180], [155,205,155], [105,139,105], [ 72, 61,139], [ 47, 79, 79],
[151,255,255], [141,238,238], [121,205,205], [ 82,139,139], [ 47, 79, 79],
[ 0,206,209], [148, 0,211], [255, 20,147], [255, 20,147], [238, 18,137],
[205, 16,118], [139, 10, 80], [ 0,191,255], [ 0,191,255], [ 0,178,238],
[ 0,154,205], [ 0,104,139], [105,105,105], [105,105,105], [ 30,144,255],
[ 30,144,255], [ 28,134,238], [ 24,116,205], [ 16, 78,139], [178, 34, 34],
[255, 48, 48], [238, 44, 44], [205, 38, 38], [139, 26, 26], [255,250,240],
[ 34,139, 34], [220,220,220], [248,248,255], [255,215, 0], [255,215, 0],
[238,201, 0], [205,173, 0], [139,117, 0], [218,165, 32], [255,193, 37],
[238,180, 34], [205,155, 29], [139,105, 20], [190,190,190], [ 0, 0, 0],
[ 3, 3, 3], [ 26, 26, 26], [255,255,255], [ 28, 28, 28], [ 31, 31, 31],
[ 33, 33, 33], [ 36, 36, 36], [ 38, 38, 38], [ 41, 41, 41], [ 43, 43, 43],
[ 46, 46, 46], [ 48, 48, 48], [ 5, 5, 5], [ 51, 51, 51], [ 54, 54, 54],
[ 56, 56, 56], [ 59, 59, 59], [ 61, 61, 61], [ 64, 64, 64], [ 66, 66, 66],
[ 69, 69, 69], [ 71, 71, 71], [ 74, 74, 74], [ 8, 8, 8], [ 77, 77, 77],
[ 79, 79, 79], [ 82, 82, 82], [ 84, 84, 84], [ 87, 87, 87], [ 89, 89, 89],
[ 92, 92, 92], [ 94, 94, 94], [ 97, 97, 97], [ 99, 99, 99], [ 10, 10, 10],
[102,102,102], [105,105,105], [107,107,107], [110,110,110], [112,112,112],
[115,115,115], [117,117,117], [120,120,120], [122,122,122], [125,125,125],
[ 13, 13, 13], [127,127,127], [130,130,130], [133,133,133], [135,135,135],
[138,138,138], [140,140,140], [143,143,143], [145,145,145], [148,148,148],
[150,150,150], [ 15, 15, 15], [153,153,153], [156,156,156], [158,158,158],
[161,161,161], [163,163,163], [166,166,166], [168,168,168], [171,171,171],
[173,173,173], [176,176,176], [ 18, 18, 18], [179,179,179], [181,181,181],
[184,184,184], [186,186,186], [189,189,189], [191,191,191], [194,194,194],
[196,196,196], [199,199,199], [201,201,201], [ 20, 20, 20], [204,204,204],
[207,207,207], [209,209,209], [212,212,212], [214,214,214], [217,217,217],
[219,219,219], [222,222,222], [224,224,224], [227,227,227], [ 23, 23, 23],
[229,229,229], [232,232,232], [235,235,235], [237,237,237], [240,240,240],
[242,242,242], [245,245,245], [247,247,247], [250,250,250], [252,252,252],
[ 0,255, 0], [ 0,238, 0], [ 0,205, 0], [ 0,139, 0], [173,255, 47],
[190,190,190], [ 0, 0, 0], [ 3, 3, 3], [ 26, 26, 26], [255,255,255],
[ 28, 28, 28], [ 31, 31, 31], [ 33, 33, 33], [ 36, 36, 36], [ 38, 38, 38],
[ 41, 41, 41], [ 43, 43, 43], [ 46, 46, 46], [ 48, 48, 48], [ 5, 5, 5],
[ 51, 51, 51], [ 54, 54, 54], [ 56, 56, 56], [ 59, 59, 59], [ 61, 61, 61],
[ 64, 64, 64], [ 66, 66, 66], [ 69, 69, 69], [ 71, 71, 71], [ 74, 74, 74],
[ 8, 8, 8], [ 77, 77, 77], [ 79, 79, 79], [ 82, 82, 82], [ 84, 84, 84],
[ 87, 87, 87], [ 89, 89, 89], [ 92, 92, 92], [ 94, 94, 94], [ 97, 97, 97],
[ 99, 99, 99], [ 10, 10, 10], [102,102,102], [105,105,105], [107,107,107],
[110,110,110], [112,112,112], [115,115,115], [117,117,117], [120,120,120],
[122,122,122], [125,125,125], [ 13, 13, 13], [127,127,127], [130,130,130],
[133,133,133], [135,135,135], [138,138,138], [140,140,140], [143,143,143],
[145,145,145], [148,148,148], [150,150,150], [ 15, 15, 15], [153,153,153],
[156,156,156], [158,158,158], [161,161,161], [163,163,163], [166,166,166],
[168,168,168], [171,171,171], [173,173,173], [176,176,176], [ 18, 18, 18],
[179,179,179], [181,181,181], [184,184,184], [186,186,186], [189,189,189],
[191,191,191], [194,194,194], [196,196,196], [199,199,199], [201,201,201],
[ 20, 20, 20], [204,204,204], [207,207,207], [209,209,209], [212,212,212],
[214,214,214], [217,217,217], [219,219,219], [222,222,222], [224,224,224],
[227,227,227], [ 23, 23, 23], [229,229,229], [232,232,232], [235,235,235],
[237,237,237], [240,240,240], [242,242,242], [245,245,245], [247,247,247],
[250,250,250], [252,252,252], [240,255,240], [240,255,240], [224,238,224],
[193,205,193], [131,139,131], [255,105,180], [255,110,180], [238,106,167],
[205, 96,144], [139, 58, 98], [205, 92, 92], [255,106,106], [238, 99, 99],
[205, 85, 85], [139, 58, 58], [255,255,240], [255,255,240], [238,238,224],
[205,205,193], [139,139,131], [240,230,140], [255,246,143], [238,230,133],
[205,198,115], [139,134, 78], [230,230,250], [255,240,245], [255,240,245],
[238,224,229], [205,193,197], [139,131,134], [124,252, 0], [255,250,205],
[255,250,205], [238,233,191], [205,201,165], [139,137,112], [173,216,230],
[191,239,255], [178,223,238], [154,192,205], [104,131,139], [240,128,128],
[224,255,255], [224,255,255], [209,238,238], [180,205,205], [122,139,139],
[238,221,130], [255,236,139], [238,220,130], [205,190,112], [139,129, 76],
[250,250,210], [211,211,211], [144,238,144], [211,211,211], [255,182,193],
[255,174,185], [238,162,173], [205,140,149], [139, 95,101], [255,160,122],
[255,160,122], [238,149,114], [205,129, 98], [139, 87, 66], [ 32,178,170],
[135,206,250], [176,226,255], [164,211,238], [141,182,205], [ 96,123,139],
[132,112,255], [119,136,153], [119,136,153], [176,196,222], [202,225,255],
[188,210,238], [162,181,205], [110,123,139], [255,255,224], [255,255,224],
[238,238,209], [205,205,180], [139,139,122], [ 50,205, 50], [250,240,230],
[255, 0,255], [238, 0,238], [205, 0,205], [139, 0,139], [176, 48, 96],
[255, 52,179], [238, 48,167], [205, 41,144], [139, 28, 98], [102,205,170],
[ 0, 0,205], [186, 85,211], [224,102,255], [209, 95,238], [180, 82,205],
[122, 55,139], [147,112,219], [171,130,255], [159,121,238], [137,104,205],
[ 93, 71,139], [ 60,179,113], [123,104,238], [ 0,250,154], [ 72,209,204],
[199, 21,133], [ 25, 25,112], [245,255,250], [255,228,225], [255,228,225],
[238,213,210], [205,183,181], [139,125,123], [255,228,181], [255,222,173],
[255,222,173], [238,207,161], [205,179,139], [139,121, 94], [ 0, 0,128],
[ 0, 0,128], [253,245,230], [107,142, 35], [192,255, 62], [179,238, 58],
[154,205, 50], [105,139, 34], [255,165, 0], [255,165, 0], [238,154, 0],
[205,133, 0], [139, 90, 0], [255, 69, 0], [255, 69, 0], [238, 64, 0],
[205, 55, 0], [139, 37, 0], [218,112,214], [255,131,250], [238,122,233],
[205,105,201], [139, 71,137], [238,232,170], [152,251,152], [154,255,154],
[144,238,144], [124,205,124], [ 84,139, 84], [175,238,238], [187,255,255],
[174,238,238], [150,205,205], [102,139,139], [219,112,147], [255,130,171],
[238,121,159], [205,104,137], [139, 71, 93], [255,239,213], [255,218,185],
[255,218,185], [238,203,173], [205,175,149], [139,119,101], [205,133, 63],
[255,192,203], [255,181,197], [238,169,184], [205,145,158], [139, 99,108],
[221,160,221], [255,187,255], [238,174,238], [205,150,205], [139,102,139],
[176,224,230], [160, 32,240], [155, 48,255], [145, 44,238], [125, 38,205],
[ 85, 26,139], [255, 0, 0], [238, 0, 0], [205, 0, 0], [139, 0, 0],
[188,143,143], [255,193,193], [238,180,180], [205,155,155], [139,105,105],
[ 65,105,225], [ 72,118,255], [ 67,110,238], [ 58, 95,205], [ 39, 64,139],
[139, 69, 19], [250,128,114], [255,140,105], [238,130, 98], [205,112, 84],
[139, 76, 57], [244,164, 96], [ 46,139, 87], [ 84,255,159], [ 78,238,148],
[ 67,205,128], [ 46,139, 87], [255,245,238], [255,245,238], [238,229,222],
[205,197,191], [139,134,130], [160, 82, 45], [255,130, 71], [238,121, 66],
[205,104, 57], [139, 71, 38], [135,206,235], [135,206,255], [126,192,238],
[108,166,205], [ 74,112,139], [106, 90,205], [131,111,255], [122,103,238],
[105, 89,205], [ 71, 60,139], [112,128,144], [198,226,255], [185,211,238],
[159,182,205], [108,123,139], [112,128,144], [255,250,250], [255,250,250],
[238,233,233], [205,201,201], [139,137,137], [ 0,255,127], [ 0,255,127],
[ 0,238,118], [ 0,205,102], [ 0,139, 69], [ 70,130,180], [ 99,184,255],
[ 92,172,238], [ 79,148,205], [ 54,100,139], [210,180,140], [255,165, 79],
[238,154, 73], [205,133, 63], [139, 90, 43], [216,191,216], [255,225,255],
[238,210,238], [205,181,205], [139,123,139], [255, 99, 71], [255, 99, 71],
[238, 92, 66], [205, 79, 57], [139, 54, 38], [ 64,224,208], [ 0,245,255],
[ 0,229,238], [ 0,197,205], [ 0,134,139], [238,130,238], [208, 32,144],
[255, 62,150], [238, 58,140], [205, 50,120], [139, 34, 82], [245,222,179],
[255,231,186], [238,216,174], [205,186,150], [139,126,102], [245,245,245],
[255,255, 0], [238,238, 0], [205,205, 0], [139,139, 0], [154,205, 50]];
#if 0
_PL_COLOR_PACKED = (0x01000000 | _PL_COLOR_RGB(1,) |
(_PL_COLOR_RGB(2,) << 8) | (_PL_COLOR_RGB(3,) << 16));
#endif
_PL_COLOR_RGB = char(_PL_COLOR_RGB);
/*---------------------------------------------------------------------------*
* Local Variables: *
* mode: Yorick *
* tab-width: 8 *
* fill-column: 75 *
* c-basic-offset: 2 *
* coding: latin-1 *
* End: *
*---------------------------------------------------------------------------*/
|