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 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587
|
/*
*class++
* Name:
* Plot3D
* Purpose:
* Provide facilities for 3D graphical output.
* Constructor Function:
c astPlot3D
f AST_PLOT3D
* Description:
* A Plot3D is a specialised form of Plot that provides facilities
* for producing 3D graphical output, including fully annotated 3D
* coordinate grids. The base Frame in a Plot3D describes a 3-dimensional
* "graphical" coordinate system. The axes of this coordinate system are
* assumed to be right-handed (that is, if X appears horizontally to the
* right and Y vertically upwards, then Z is out of the screen towards
* the viewer), and are assumed to be equally scaled (that is, the same
* units are used to measure positions on each of the 3 axes). The upper
* and lower bounds of a volume within this graphical coordinate system
* is specified when the Plot3D is created, and all subsequent graphics
* are "drawn" in this volume.
*
* The Plot3D class does not itself include any ability to draw on a
* graphics device. Instead it calls upon function in an externally
* supplied module (the "grf3d" module) to do the required drawing.
* A module should be written that implements the functions of the
* grf3d interface using the facilities of a specific graphics system
* This module should then be linked into the application so that the
* Plot3D class can use its functions (see the description of the
* ast_link commands for details of how to do this). The grf3d interface
* defines a few simple functions for drawing primitives such as straight
* lines, markers and character strings. These functions all accept
* positions in the 3D graphics coordinate system (the base Frame of the
* Plot3D), and so the grf3d module must also manage the projection of
* these 3D coordinates onto the 2D viewing surface, including the choice
* of "eye"/"camera" position, direction of viewing, etc. The AST
* library includes a sample implementation of the grf3d interface
* based on the PGPLOT graphics system (see file grf3d_pgplot.c). This
* implementation also serves to document the grf3d interface itself and
* should be consulted for details before writing a new implementation.
*
* The current Frame of a Plot3D describes a "physical" 3-dimensional
* coordinate system, which is the coordinate system in which plotting
* operations are specified when invoking the methods of the Plot3D
* class. The results of each plotting operation are automatically
* transformed into 3D graphical coordinates before being plotted
* using the facilities of the grf3d module linked into the application.
* Note, at least one of the three axes of the current Frame must be
* independent of the other two current Frame axes.
*
* You may select different physical coordinate systems in which to
* plot (including the native graphical coordinate system itself)
* by selecting different Frames as the current Frame of a Plot3D,
* using its Current attribute.
*
* Like any FrameSet, a Plot3D may also be used as a Frame. In this
* case, it behaves like its current Frame, which describes the
* physical coordinate system.
*
* When used as a Mapping, a Plot3D describes the inter-relation
* between 3D graphical coordinates (its base Frame) and 3D physical
* coordinates (its current Frame).
*
* Although the Plot3D class inherits from the Plot class, several of
* the facilities of the Plot class are not available in the Plot3D
* class, and an error will be reported if any attempt is made to use
* them. Specifically, the Plot3D class does not support clipping
* using the
* astClip function.
f AST_CLIP routine.
* Nor does it support the specification of graphics primitive functions
* at run-time using the
c astGrfSet, astGrfPop, astGrfPush and astGetGrfContext functions.
f AST_GRFSET, AST_GRFPOP, AST_GRFPUSH, and AST_GETGRFCONTEXT routines.
* Inheritance:
* The Plot3D class inherits from the Plot class.
* Attributes:
* In addition to those attributes common to all Plots, every
* Plot3D also has the following attributes:
*
* - Norm: Normal vector defining the 2D plane used for text and markers
* - RootCorner: Specifies which edges of the 3D box should be annotated.
*
* Some attributes of the Plot class refer to specific physical
* coordinate axes (e.g. Gap, LabelUp, DrawAxes, etc). For a basic
* Plot, the axis index must be 1 or 2, but for a Plot3D the axis index
* can be 1, 2 or 3.
*
* Certain Plot attributes are ignored by the Plot3D class (e.g. Edge,
* DrawTitle, TitleGap, etc). Consult the Plot attribute documentation
* for details. All other Plot attributes can be set for a specific
* plane of the 3-d plot by appending one of the strings "_XY", "_XZ"
* or "_YZ" to the end of the Plot attribute name. For instance,
* "Grid_YZ" refers to the "Grid" attribute for the plane spanning
* the second (Y) and third (Z) axes of the 3-d plot.
* Functions:
c The Plot3D class does not define any new functions beyond those
f The Plot3D class does not define any new routines beyond those
* which are applicable to all Plots. Note, however, that the
* following methods inherited from the Plot class cannot be used with
* a Plot3D and will report an error if called:
c - astBoundingBox, astClip, astCurve, astGenCurve,
c astGetGrfContext, astGrfPop, astGrfPush, astGrfSet, astGridLine,
c astPolyCurve.
f - AST_BOUNDINGBOX, AST_CLIP, AST_CURVE, AST_GENCURVE,
f AST_GETGRFCONTEXT, AST_GRFPOP, AST_GRFPUSH, AST_GRFSET,
f AST_GRIDLINE, AST_POLYCURVE.
* Copyright:
* Copyright (C) 2007 Science & Technology Facilities Council.
* All Rights Reserved.
* Licence:
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later
* version.
*
* This program 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. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
* Authors:
* DSB: David S. Berry (Starlink)
* History:
* 6-JUN-2007 (DSB):
* Original version.
* 6-SEP-2007 (DSB):
* Re-code the astGrid function.
* 12-NOV-2007 (DSB):
* Clear up compiler warnings.
* 4-MAY-2012 (DSB):
* Avoid segvio in Grid if no ticks are drawn.
* 21-MAY-2012 (DSB):
* In astLoadPlot3D, do not call SetRootCorner as it requires an
* active graphics system to be present which may not yet have been
* established. Also establish the grf routines to be used.
* 5-OCT-2015 (DSB):
* Allow Plot attributes to be set for specific planes.
*class--
*/
/* Module Macros. */
/* ============== */
/* Set the name of the class we are implementing. This indicates to
the header files that define class interfaces that they should make
"protected" symbols available. */
#define astCLASS Plot3D
/* Integers identifying the 3 plotting surfaces */
#define XY 1
#define XZ 2
#define YZ 3
/* Integers identifying the 8 corners of the graphics cube. */
#define LLL 0
#define ULL 1
#define LUL 2
#define UUL 3
#define LLU 4
#define ULU 5
#define LUU 6
#define UUU 7
/* Identify the 4 edges of a Plot */
#define LEFT 0
#define TOP 1
#define RIGHT 2
#define BOTTOM 3
/* A macros that returns a pointer to the Plot that spans a given plane. */
#define GET_PLOT(plane) ( \
( plane == XY ) ? this->plotxy : ( \
( plane == XZ ) ? this->plotxz : ( \
( plane == YZ ) ? this->plotyz : NULL ) ) )
/*
*
* Name:
* MAKE_CLEAR3
* Purpose:
* Implement a method to clear a single value in a multi-valued attribute.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_CLEAR3(attr,component,assign,nval)
* Class Membership:
* Defined by the Plot3D class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Clear<Attribute>( AstPlot *this, int axis )
*
* and an external interface function of the form:
*
* void astClear<Attribute>_( AstPlot *this, int axis )
*
* which implement a method for clearing a single value in a specified
* multi-valued attribute for an axis of a Plot3D.
* Parameters:
* attr
* The name of the attribute to be cleared, as it appears in the function
* name (e.g. LabelAt in "astClearLabelAt").
* component
* The name of the class structure component that holds the attribute
* value.
* assign
* An expression that evaluates to the value to assign to the component
* to clear its value.
* nval
* Specifies the number of values in the multi-valued attribute. The
* "axis" values supplied to the created function should be in the
* range zero to (nval - 1).
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_CLEAR3(attr,component,assign,nval) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Clear##attr( AstPlot3D *this, int axis, int *status ) { \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Validate the axis index. */ \
if( axis < 0 || axis >= nval ){ \
astError( AST__AXIIN, "%s(%s): Index (%d) is invalid for attribute " \
#attr " - it should be in the range 1 to %d.", status, \
"astClear" #attr, astGetClass( this ), \
axis + 1, nval ); \
\
/* Assign the "clear" value. */ \
} else { \
this->component[ axis ] = (assign); \
} \
} \
\
/* External interface. */ \
/* ------------------- */ \
void astClear##attr##_( AstPlot3D *this, int axis, int *status ) { \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Invoke the required method via the virtual function table. */ \
(**astMEMBER(this,Plot3D,Clear##attr))( this, axis, status ); \
}
/*
*
* Name:
* MAKE_GET3
* Purpose:
* Implement a method to get a single value in a multi-valued attribute.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_GET3(attr,type,bad_value,assign,nval)
* Class Membership:
* Defined by the Plot3D class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static <Type> Get<Attribute>( AstPlot3D *this, int axis )
*
* and an external interface function of the form:
*
* <Type> astGet<Attribute>_( AstPlot3D *this, int axis )
*
* which implement a method for getting a single value from a specified
* multi-valued attribute for an axis of a Plot3D.
* Parameters:
* attr
* The name of the attribute whose value is to be obtained, as it
* appears in the function name (e.g. Label in "astGetLabel").
* type
* The C type of the attribute.
* bad_value
* A constant value to return if the global error status is set, or if
* the function fails.
* assign
* An expression that evaluates to the value to be returned. This can
* use the string "axis" to represent the zero-based value index.
* nval
* Specifies the number of values in the multi-valued attribute. The
* "axis" values supplied to the created function should be in the
* range zero to (nval - 1).
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_GET3(attr,type,bad_value,assign,nval) \
\
/* Private member function. */ \
/* ------------------------ */ \
static type Get##attr( AstPlot3D *this, int axis, int *status ) { \
type result; /* Result to be returned */ \
\
/* Initialise */ \
result = (bad_value); \
\
/* Check the global error status. */ \
if ( !astOK ) return result; \
\
/* Validate the axis index. */ \
if( axis < 0 || axis >= nval ){ \
astError( AST__AXIIN, "%s(%s): Index (%d) is invalid for attribute " \
#attr " - it should be in the range 1 to %d.", status, \
"astGet" #attr, astGetClass( this ), \
axis + 1, nval ); \
\
/* Assign the result value. */ \
} else { \
result = (assign); \
} \
\
/* Check for errors and clear the result if necessary. */ \
if ( !astOK ) result = (bad_value); \
\
/* Return the result. */ \
return result; \
} \
/* External interface. */ \
/* ------------------- */ \
type astGet##attr##_( AstPlot3D *this, int axis, int *status ) { \
\
/* Check the global error status. */ \
if ( !astOK ) return (bad_value); \
\
/* Invoke the required method via the virtual function table. */ \
return (**astMEMBER(this,Plot3D,Get##attr))( this, axis, status ); \
}
/*
*
* Name:
* MAKE_SET3
* Purpose:
* Implement a method to set a single value in a multi-valued attribute
* for a Plot3D.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_SET3(attr,type,component,assign,nval)
* Class Membership:
* Defined by the Plot3D class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Set<Attribute>( AstPlot3D *this, int axis, <Type> value )
*
* and an external interface function of the form:
*
* void astSet<Attribute>_( AstPlot3D *this, int axis, <Type> value )
*
* which implement a method for setting a single value in a specified
* multi-valued attribute for a Plot3D.
* Parameters:
* attr
* The name of the attribute to be set, as it appears in the function
* name (e.g. LabelAt in "astSetLabelAt").
* type
* The C type of the attribute.
* component
* The name of the class structure component that holds the attribute
* value.
* assign
* An expression that evaluates to the value to be assigned to the
* component.
* nval
* Specifies the number of values in the multi-valued attribute. The
* "axis" values supplied to the created function should be in the
* range zero to (nval - 1). If a value of 0 is supplied, the
* value of the Plot3D's Nin attribute is used instead.
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*-
*/
/* Define the macro. */
#define MAKE_SET3(attr,type,component,assign,nval) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Set##attr( AstPlot3D *this, int axis, type value, int *status ) { \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Validate the axis index. */ \
if( axis < 0 || axis >= nval ){ \
astError( AST__AXIIN, "%s(%s): Index (%d) is invalid for attribute " \
#attr " - it should be in the range 1 to %d.", status, \
"astSet" #attr, astGetClass( this ), \
axis + 1, nval ); \
\
/* Store the new value in the structure component. */ \
} else { \
this->component[ axis ] = (assign); \
} \
} \
\
/* External interface. */ \
/* ------------------- */ \
void astSet##attr##_( AstPlot3D *this, int axis, type value, int *status ) { \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Invoke the required method via the virtual function table. */ \
(**astMEMBER(this,Plot3D,Set##attr))( this, axis, value, status ); \
}
/*
*
* Name:
* MAKE_TEST3
* Purpose:
* Implement a method to test if a single value has been set in a
* multi-valued attribute for a class.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_TEST3(attr,assign,nval)
* Class Membership:
* Defined by the Plot3D class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static int Test<Attribute>( AstPlot3D *this, int axis )
*
* and an external interface function of the form:
*
* int astTest<Attribute>_( AstPlot3D *this, int axis )
*
* which implement a method for testing if a single value in a specified
* multi-valued attribute has been set for a class.
* Parameters:
* attr
* The name of the attribute to be tested, as it appears in the function
* name (e.g. LabelAt in "astTestLabelAt").
* assign
* An expression that evaluates to 0 or 1, to be used as the returned
* value. This can use the string "axis" to represent the zero-based
* index of the value within the attribute.
* nval
* Specifies the number of values in the multi-valued attribute. The
* "axis" values supplied to the created function should be in the
* range zero to (nval - 1).
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*-
*/
/* Define the macro. */
#define MAKE_TEST3(attr,assign,nval) \
\
/* Private member function. */ \
/* ------------------------ */ \
static int Test##attr( AstPlot3D *this, int axis, int *status ) { \
int result; /* Value to return */ \
\
/* Initialise */ \
result = 0; \
\
/* Check the global error status. */ \
if ( !astOK ) return result; \
\
/* Validate the axis index. */ \
if( axis < 0 || axis >= nval ){ \
astError( AST__AXIIN, "%s(%s): Index (%d) is invalid for attribute " \
#attr " - it should be in the range 1 to %d.", status, \
"astTest" #attr, astGetClass( this ), \
axis + 1, nval ); \
\
/* Assign the result value. */ \
} else { \
result = (assign); \
} \
\
/* Check for errors and clear the result if necessary. */ \
if ( !astOK ) result = 0; \
\
/* Return the result. */ \
return result; \
} \
/* External interface. */ \
/* ------------------- */ \
int astTest##attr##_( AstPlot3D *this, int axis, int *status ) { \
\
/* Check the global error status. */ \
if ( !astOK ) return 0; \
\
/* Invoke the required method via the virtual function table. */ \
return (**astMEMBER(this,Plot3D,Test##attr))( this, axis, status ); \
}
/*
*
* Name:
* MAKE_CLEAR2
* Purpose:
* Implement a method to clear an element-specific attribute inherited
* from the Plot class.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_CLEAR2(attr)
* Class Membership:
* Defined by the Plot3d class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Clear<Attribute>( AstPlot *this, int element )
*
* which implements a method for clearing one of the element-specific
* attributes (e.g. Size, Colour, Width, etc) inherited from the
* parent Plot class.
* Parameters:
* attr
* The name of the attribute to be cleared, as it appears in the function
* name (e.g. LabelAt in "astClearSize").
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_CLEAR2(attr) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Clear##attr( AstPlot *this_plot, int element, int *status ) { \
\
/* Local Variables: */ \
AstPlot3D *this; \
int axis3d; \
int elem2d1; \
int elem2d2; \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Clear the attribute value in the parent Plot structure. */ \
(*parent_clear##attr)( this_plot, element, status ); \
\
/* If OK, clear the attribute in the encapsulated Plots. */ \
if( astOK ) { \
this = (AstPlot3D *) this_plot; \
\
/* Get the zero-based index of the 3D axis to which the supplied element \
refers. Use an index of -1 to indicate that the element does not \
relate to a specific axis. Also get the corresponding elements to use \
with the two Plots that share the specified 3D axis. */ \
axis3d = Element2D( this, element, &elem2d1, &elem2d2, status ); \
\
/* If the element is not axis-specific, clear the attribute value in all \
three plots. */ \
if( axis3d == -1 ) { \
astClear##attr( this->plotxy, element ); \
astClear##attr( this->plotxz, element ); \
astClear##attr( this->plotyz, element ); \
\
/* Otherwise, clear the attribute in the two plots that share the \
specified 3D axis. */ \
} else { \
astClear##attr( GET_PLOT(this->axis_plot1[ axis3d ]), elem2d1 ); \
astClear##attr( GET_PLOT(this->axis_plot2[ axis3d ]), elem2d2 ); \
} \
} \
}
/*
*
* Name:
* MAKE_SET2
* Purpose:
* Implement a method to set an element-specific attribute inherited
* from the Plot class.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_SET2(attr,type)
* Class Membership:
* Defined by the Plot3d class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Set<Attribute>( AstPlot *this, int element, type value )
*
* which implements a method for setting one of the element-specific
* attributes (e.g. Size, Colour, Width, etc) inherited from the
* parent Plot class.
* Parameters:
* attr
* The name of the attribute to be cleared, as it appears in the function
* name (e.g. LabelAt in "astClearSize").
* type
* The attribute data type.
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_SET2(attr,type) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Set##attr( AstPlot *this_plot, int element, type value, int *status ) { \
\
/* Local Variables: */ \
AstPlot3D *this; \
int axis3d; \
int elem2d1; \
int elem2d2; \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Set the attribute value in the parent Plot structure. */ \
(*parent_set##attr)( this_plot, element, value, status ); \
\
/* If OK, set the attribute in the encapsulated Plots. */ \
if( astOK ) { \
this = (AstPlot3D *) this_plot; \
\
/* Get the zero-based index of the 3D axis to which the supplied element \
refers. Use an index of -1 to indicate that the element does not \
relate to a specific axis. Also get the corresponding elements to use \
with the two Plots that share the specified 3D axis. */ \
axis3d = Element2D( this, element, &elem2d1, &elem2d2, status ); \
\
/* If the element is not axis-specific, clear the attribute value in all \
three plots. */ \
if( axis3d == -1 ) { \
astSet##attr( this->plotxy, element, value ); \
astSet##attr( this->plotxz, element, value ); \
astSet##attr( this->plotyz, element, value ); \
\
/* Otherwise, clear the attribute in the two plots that share the \
specified 3D axis. */ \
} else { \
astSet##attr( GET_PLOT(this->axis_plot1[ axis3d ]), elem2d1, value ); \
astSet##attr( GET_PLOT(this->axis_plot2[ axis3d ]), elem2d2, value ); \
} \
} \
}
/*
*
* Name:
* MAKE_CLEAR1
* Purpose:
* Implement a method to clear an attribute inherited from the Plot class.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_CLEAR1(attr)
* Class Membership:
* Defined by the Plot3d class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Clear<Attribute>( AstPlot *this )
*
* which implements a method for clearing a Plot3D attribute inherited
* from the parent Plot class. It clears the attribute in all three
* plots encapsulated within the Plot3D.
* Parameters:
* attr
* The name of the attribute to be cleared, as it appears in the function
* name (e.g. LabelAt in "astClearLabelAt").
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_CLEAR1(attr) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Clear##attr( AstPlot *this_plot, int *status ) { \
\
/* Local Variables: */ \
AstPlot3D *this; \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Clear the attribute value in the parent Plot structure. */ \
(*parent_clear##attr)( this_plot, status ); \
\
/* If OK, clear the attribute in all three of the encapsulated Plots. */ \
if( astOK ) { \
this = (AstPlot3D *) this_plot; \
astClear##attr( this->plotxy ); \
astClear##attr( this->plotxz ); \
astClear##attr( this->plotyz ); \
} \
}
/*
*
* Name:
* MAKE_SET1
* Purpose:
* Implement a method to set an attribute inherited from the Plot class.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_SET1(attr,type)
* Class Membership:
* Defined by the Plot3d class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Set<Attribute>( AstPlot *this, type value )
*
* which implements a method for setting a Plot3D attribute inherited
* from the parent Plot class. It sets the attribute in all three
* plots encapsulated within the Plot3D.
* Parameters:
* attr
* The name of the attribute to be set, as it appears in the function
* name (e.g. LabelAt in "astSetLabelAt").
* type
* The C data type for the attribute value.
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_SET1(attr,type) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Set##attr( AstPlot *this_plot, type value, int *status ) { \
\
/* Local Variables: */ \
AstPlot3D *this; \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Set the attribute value in the parent Plot structure. */ \
(*parent_set##attr)( this_plot, value, status ); \
\
/* If OK, set the attribute in all three of the encapsulated Plots. */ \
if( astOK ) { \
this = (AstPlot3D *) this_plot; \
astSet##attr( this->plotxy, value ); \
astSet##attr( this->plotxz, value ); \
astSet##attr( this->plotyz, value ); \
} \
}
/*
*
* Name:
* MAKE_CLEAR
* Purpose:
* Implement a method to clear an attribute inherited from the Plot class.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_CLEAR(attr,whichplots)
* Class Membership:
* Defined by the Plot3d class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Clear<Attribute>( AstPlot *this, int axis )
*
* which implements a method for clearing an axis specific Plot3D
* attribute inherited from the parent Plot class.
* Parameters:
* attr
* The name of the attribute to be cleared, as it appears in the function
* name (e.g. LabelAt in "astClearLabelAt").
* whichplots
* A value indicating which Plots should be affected. A negative value
* means "all threee plots", a value of zero means "just the two plots
* that touch at the specified axis in 3D space", a positive value
* means "just the Plot that is used to label th 3D axis."
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_CLEAR(attr,whichplots) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Clear##attr( AstPlot *this_plot, int axis, int *status ) { \
\
/* Local Variables: */ \
AstPlot *plot; \
AstPlot3D *this; \
int axis2d; \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Clear the attribute value in the parent Plot structure. This will \
validate the axis index. */ \
(*parent_clear##attr)( this_plot, axis, status ); \
\
/* If OK, clear the attribute for the relevant axis, or axes, of the Plots \
encapsulated inside the Plot3D. First get a pointer to the Plot3D \
structure. */ \
if( astOK ) { \
this = (AstPlot3D *) this_plot; \
\
/* If requested clear the attribute in all three Plots. */ \
if( whichplots < 0 ) { \
astClear##attr( this->plotxy, axis ); \
astClear##attr( this->plotxz, axis ); \
astClear##attr( this->plotyz, axis ); \
\
/* Each axis in 3D graphics space is described by two of the encapsulated \
Plots, but only one of these two Plots is used to generate labels for \
the axis. Now deal with cases where we are clearing the attribute \
value in both of the two Plots that describe the axis. */ \
} else if ( whichplots == 0 ) { \
if( axis == 0 ) { \
astClear##attr( this->plotxy, 0 ); \
astClear##attr( this->plotxz, 0 ); \
\
} else if( axis == 1 ) { \
astClear##attr( this->plotxy, 1 ); \
astClear##attr( this->plotyz, 0 ); \
\
} else { \
astClear##attr( this->plotxz, 1 ); \
astClear##attr( this->plotyz, 1 ); \
} \
\
/* Now deal with cases where we are clearing the attribute value only in \
the Plot that is used to label the axis. */ \
} else { \
plot = AxisPlot( this, axis, &axis2d, status ); \
astClear##attr( plot, axis2d ); \
} \
} \
}
/*
*
* Name:
* MAKE_GET
* Purpose:
* Implement a method to get the value of an attribute inherited from the
* Plot class.
* Type:
* Private macro.
* Synopsis:
* #include "plot.h"
* MAKE_GET(attr,type,bad_value)
* Class Membership:
* Defined by the Plot3D class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static <Type> Get<Attribute>( AstPlot *this, int axis )
*
* which implements a method for getting a value for an axis specific
* attribute for a Plot3D.
* Parameters:
* attr
* The name of the attribute whose value is to be obtained, as it
* appears in the function name (e.g. Label in "astGetLabel").
* type
* The C type of the attribute.
* bad_value
* A constant value to return if the global error status is set, or if
* the function fails.
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*
*/
/* Define the macro. */
#define MAKE_GET(attr,type,bad_value) \
\
/* Private member function. */ \
/* ------------------------ */ \
static type Get##attr( AstPlot *this_plot, int axis, int *status ) { \
\
/* Local Variables: */ \
AstPlot *plot; \
AstPlot3D *this; \
int axis2d; \
type result; \
\
/* Initialise */ \
result = (bad_value); \
\
/* Check the global error status. */ \
if ( !astOK ) return result; \
\
/* See if the attribute value is set in the parent Plot structure. If so, \
use the parent get method to get its value. */ \
if( astTest##attr( this_plot, axis ) ) { \
result = (*parent_get##attr)( this_plot, axis, status ); \
\
/* If the attribute value is not set in the parent Plot structure, get \
the default value from the Plot that is used to label the 3D axis. The \
parent test method called above will have reported an error if the axis \
index is invalid, so check astOK here. */ \
} else if( astOK ) { \
this = (AstPlot3D *) this_plot; \
plot = AxisPlot( this, axis, &axis2d, status ); \
result = astGet##attr( plot, axis2d ); \
} \
\
/* Return the result. */ \
return result; \
}
/*
*
* Name:
* MAKE_SET
* Purpose:
* Implement a method to set a value for an attribute inherited from the
* Plot class.
* Type:
* Private macro.
* Synopsis:
* #include "plot3d.h"
* MAKE_SET(attr,type,whichplots)
* Class Membership:
* Defined by the Plot3d class.
* Description:
* This macro expands to an implementation of a private member function of
* the form:
*
* static void Set<Attribute>( AstPlot *this, int axis, <Type> value )
*
* which implements a method for setting a value for an axis specific
* attribute inherited from the parent Plot class.
* Parameters:
* attr
* The name of the attribute to be set, as it appears in the function
* name (e.g. LabelAt in "astSetLabelAt").
* type
* The C type of the attribute.
* whichplots
* A value indicating which Plots should be affected. A negative value
* means "all threee plots", a value of zero means "just the two plots
* that touch at the specified axis in 3D space", a positive value
* means "just the Plot that is used to label the 3D axis."
* Notes:
* - To avoid problems with some compilers, you should not leave any white
* space around the macro arguments.
*-
*/
/* Define the macro. */
#define MAKE_SET(attr,type,whichplots) \
\
/* Private member function. */ \
/* ------------------------ */ \
static void Set##attr( AstPlot *this_plot, int axis, type value, int *status ) { \
\
/* Local Variables: */ \
AstPlot3D *this; \
AstPlot *plot; \
int axis2d; \
\
/* Check the global error status. */ \
if ( !astOK ) return; \
\
/* Set the supplied value in the parent Plot class. This will validate \
the axis index. */ \
(*parent_set##attr)( this_plot, axis, value, status ); \
\
/* If this went OK, also set the value for the appropriate axis of the \
appropriate encapsulated Plot(s). First get a pointer to the Plot3D \
structure. */ \
if( astOK ) { \
this = (AstPlot3D *) this_plot; \
\
/* If requested set the attribute in all three Plots. */ \
if( whichplots < 0 ) { \
astSet##attr( this->plotxy, axis, value ); \
astSet##attr( this->plotxz, axis, value ); \
astSet##attr( this->plotyz, axis, value ); \
\
/* Each axis in 3D graphics space is described by two of the encapsulated \
Plots, but only one of these two Plots is used to generate labels for \
the axis. First deal with cases where we are setting the attribute \
value in both of the two Plots that describe the axis. */ \
} else if( whichplots == 0 ) { \
if( axis == 0 ) { \
astSet##attr( this->plotxy, 0, value ); \
astSet##attr( this->plotxz, 0, value ); \
\
} else if( axis == 1 ) { \
astSet##attr( this->plotxy, 1, value ); \
astSet##attr( this->plotyz, 0, value ); \
\
} else { \
astSet##attr( this->plotxz, 1, value ); \
astSet##attr( this->plotyz, 1, value ); \
} \
\
/* Now deal with cases where we are setting the attribute value only in \
the Plot that is used to label the axis. */ \
} else { \
plot = AxisPlot( this, axis, &axis2d, status ); \
astSet##attr( plot, axis2d, value ); \
} \
} \
}
/* Header files. */
/* ============= */
/* Interface definitions. */
/* ---------------------- */
#include "globals.h" /* Thread-safe global data access */
#include "error.h" /* Error reporting facilities */
#include "memory.h" /* Memory allocation facilities */
#include "object.h" /* Base Object class */
#include "cmpframe.h" /* Compound Frames */
#include "cmpmap.h" /* Compound Mappings */
#include "unitmap.h" /* Unit mappings */
#include "permmap.h" /* Axis permutations */
#include "winmap.h" /* Scale and shift mappings */
#include "frame.h" /* Coordinate systems */
#include "frameset.h" /* Inter-related coordinate systems */
#include "keymap.h" /* Hash array */
#include "plot.h" /* Interface definition for parent class */
#include "plot3d.h" /* Interface definition for this class */
#include "grf3d.h" /* The grf3D interface */
#include "pointset.h" /* Sets of points */
#include "globals.h" /* Thread-safe global data access */
/* Error code definitions. */
/* ----------------------- */
#include "ast_err.h" /* AST error codes */
/* C header files. */
/* --------------- */
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stddef.h>
#include <math.h>
#include <limits.h>
/* Module Variables. */
/* ================= */
/* Address of this static variable is used as a unique identifier for
member of this class. */
static int class_check;
/* Pointers to parent class methods which are used or extended by this
class. */
static AstObject *(* parent_cast)( AstObject *, AstObject *, int * );
static void (* parent_removeframe)( AstFrameSet *, int, int * );
static int (* parent_getobjsize)( AstObject *, int * );
static int (* parent_equal)( AstObject *, AstObject *, int * );
static void (* parent_vset)( AstObject *, const char *, char **, va_list, int * );
static void (* parent_clear)( AstObject *, const char *, int * );
static void (* parent_clearcurrent)( AstFrameSet *, int * );
static void (* parent_setcurrent)( AstFrameSet *, int, int * );
static const char *(* parent_getattrib)( AstObject *, const char *, int * );
static int (* parent_testattrib)( AstObject *, const char *, int * );
static void (* parent_clearattrib)( AstObject *, const char *, int * );
static void (* parent_setattrib)( AstObject *, const char *, int * );
/* A FrameSet pointer that is used when calling astCast. */
static AstFrameSet *dummy_frameset = NULL;
#if defined(THREAD_SAFE)
static int (* parent_managelock)( AstObject *, int, int, AstObject **, int * );
#endif
/* Define macros for accessing each item of thread specific global data. */
#ifdef THREAD_SAFE
/* Define how to initialise thread-specific globals. */
#define GLOBAL_inits \
globals->Class_Init = 0; \
globals->GetAttrib_Buff[ 0 ] = 0;
/* Create the function that initialises global data for this module. */
astMAKE_INITGLOBALS(Plot3D)
/* Define macros for accessing each item of thread specific global data. */
#define class_init astGLOBAL(Plot3D,Class_Init)
#define class_vtab astGLOBAL(Plot3D,Class_Vtab)
#define getattrib_buff astGLOBAL(Plot3D,GetAttrib_Buff)
static pthread_mutex_t mutex2 = PTHREAD_MUTEX_INITIALIZER;
#define LOCK_MUTEX2 pthread_mutex_lock( &mutex2 );
#define UNLOCK_MUTEX2 pthread_mutex_unlock( &mutex2 );
static pthread_mutex_t mutex3 = PTHREAD_MUTEX_INITIALIZER;
#define LOCK_MUTEX3 pthread_mutex_lock( &mutex3 );
#define UNLOCK_MUTEX3 pthread_mutex_unlock( &mutex3 );
/* If thread safety is not needed, declare and initialise globals at static
variables. */
#else
static char getattrib_buff[ 101 ];
/* Define the class virtual function table and its initialisation flag
as static variables. */
static AstPlot3DVtab class_vtab; /* Virtual function table */
static int class_init = 0; /* Virtual function table initialised? */
#define LOCK_MUTEX2
#define UNLOCK_MUTEX2
#define LOCK_MUTEX3
#define UNLOCK_MUTEX3
#endif
/* Prototypes for Private Member Functions. */
/* ======================================== */
static AstFrameSet *Fset3D( AstFrameSet *, int, int * );
static AstKeyMap *GetGrfContext( AstPlot *, int * );
static AstObject *Cast( AstObject *, AstObject *, int * );
static AstPlot *AxisPlot( AstPlot3D *, int, int *, int * );
static AstPointSet *ExtendTicks( AstPlot *, AstPointSet *, int * );
static AstPointSet *Transform( AstMapping *, AstPointSet *, int, AstPointSet *, int * );
static const char *RootCornerString( int, int * );
static int Attr3D( AstKeyMap *, int, double, double *, int, int * );
static int Border( AstPlot *, int * );
static int Element2D( AstPlot3D *, int, int *, int *, int * );
static int Equal( AstObject *, AstObject *, int * );
static int GetObjSize( AstObject *, int * );
static int Plot3DAttr( AstKeyMap *, int, double, double *, int );
static int Plot3DCap( AstKeyMap *, int, int );
static int Plot3DFlush( AstKeyMap * );
static int Plot3DLine( AstKeyMap *, int, const float *, const float * );
static int Plot3DMark( AstKeyMap *, int, const float *, const float *, int );
static int Plot3DQch( AstKeyMap *, float *, float * );
static int Plot3DScales( AstKeyMap *, float *, float * );
static int Plot3DText( AstKeyMap *, const char *, float, float, const char *, float, float );
static int Plot3DTxExt( AstKeyMap *, const char *, float, float, const char *, float, float, float *, float * );
static int RootCornerInt( const char *, int * );
static void BoundingBox( AstPlot *, float[2], float[2], int * );
static void ChangeRootCorner( AstPlot3D *, int, int, int * );
static void Clear( AstObject *, const char *, int * );
static void ClearCurrent( AstFrameSet *, int * );
static void Clip( AstPlot *, int, const double [], const double [], int * );
static void Copy( const AstObject *, AstObject *, int * );
static void CreatePlots( AstPlot3D *, AstFrameSet *, const float *, const double *, int * );
static void Curve( AstPlot *, const double [], const double [], int * );
static void Delete( AstObject *, int * );
static void Dump( AstObject *, AstChannel *, int * );
static void GenCurve( AstPlot *, AstMapping *, int * );
static void GrfPop( AstPlot *, int * );
static void GrfPush( AstPlot *, int * );
static void GrfSet( AstPlot *, const char *, AstGrfFun, int * );
static void Grid( AstPlot *, int * );
static void GridLine( AstPlot *, int, const double [], double, int * );
static void Mark( AstPlot *, int, int, int, const double *, int, int * );
static void PolyCurve( AstPlot *, int, int, int, const double *, int * );
static void RemoveFrame( AstFrameSet *, int, int * );
static void Set3DGrf( AstPlot3D *, AstPlot *, int, int * );
static void SetCurrent( AstFrameSet *, int, int * );
static void SetPlotAttr( AstPlot *, int, int[ 2 ], int * );
static void SetTickValues( AstPlot *, int, int, double *, int, double *, int * );
static void SplitFrameSet( AstFrameSet *, AstFrameSet **, int[2], int[2], AstFrameSet **, int[2], int[2], AstFrameSet **, int[2], int[2], int *, int * );
static void StoreAxisInfo( AstPlot3D *, int[2], int[2], int[2], int[2], int[2], int[2], int * );
static void Text( AstPlot *, const char *, const double [], const float [2], const char *, int * );
static void UpdatePlots( AstPlot3D *, int * );
static void VSet( AstObject *, const char *, char **, va_list, int * );
static const char *GetAttrib( AstObject *, const char *, int * );
static int TestAttrib( AstObject *, const char *, int * );
static void ClearAttrib( AstObject *, const char *, int * );
static void SetAttrib( AstObject *, const char *, int * );
#if defined(THREAD_SAFE)
static int ManageLock( AstObject *, int, int, AstObject **, int * );
#endif
/* Declare private member functions that access Plot3D attributes.
--------------------------------------------------------------*/
/* Axis independent... */
#define DECLARE_PLOT3D_ACCESSORS(attr,type) \
static type Get##attr(AstPlot3D *,int *); \
static void Set##attr(AstPlot3D *,type,int *); \
static void Clear##attr(AstPlot3D *,int *); \
static int Test##attr(AstPlot3D *,int *);
DECLARE_PLOT3D_ACCESSORS(RootCorner,int)
#undef DECLARE_PLOT3D_ACCESSORS
/* Axis specific... */
#define DECLARE_PLOT3D_ACCESSORS(attr,type) \
static type Get##attr(AstPlot3D *,int,int *); \
static void Set##attr(AstPlot3D *,int,type,int *); \
static void Clear##attr(AstPlot3D *,int,int *); \
static int Test##attr(AstPlot3D *,int,int *);
DECLARE_PLOT3D_ACCESSORS(Norm,double)
#undef DECLARE_PLOT3D_ACCESSORS
/* Declare private member functions that access axis-specific attributes
inherited from the Plot class. Also declare pointers to hold the parent
function pointers.
----------------------------------------------------------------------*/
#define DECLARE_PLOT_ACCESSORS(attr,type) \
static type Get##attr(AstPlot *,int,int *); \
static void Set##attr(AstPlot *,int,type,int *); \
static void Clear##attr(AstPlot *,int,int *); \
static type (*parent_get##attr)(AstPlot *,int,int *); \
static void (*parent_set##attr)(AstPlot *,int,type,int *); \
static void (*parent_clear##attr)(AstPlot *,int,int *);
DECLARE_PLOT_ACCESSORS(MinTick,int)
DECLARE_PLOT_ACCESSORS(Abbrev,int)
DECLARE_PLOT_ACCESSORS(Gap,double)
DECLARE_PLOT_ACCESSORS(LogGap,double)
DECLARE_PLOT_ACCESSORS(LogPlot,int)
DECLARE_PLOT_ACCESSORS(LogTicks,int)
DECLARE_PLOT_ACCESSORS(LogLabel,int)
DECLARE_PLOT_ACCESSORS(LabelUp,int)
DECLARE_PLOT_ACCESSORS(DrawAxes,int)
DECLARE_PLOT_ACCESSORS(LabelUnits,int)
DECLARE_PLOT_ACCESSORS(MinTickLen,double)
DECLARE_PLOT_ACCESSORS(MajTickLen,double)
DECLARE_PLOT_ACCESSORS(NumLab,int)
DECLARE_PLOT_ACCESSORS(NumLabGap,double)
DECLARE_PLOT_ACCESSORS(TextLab,int)
DECLARE_PLOT_ACCESSORS(TextLabGap,double)
#undef DECLARE_PLOT_ACCESSORS
/* Declare private member functions that access element-specific attributes
inherited from the Plot class. Also declare pointers to hold the parent
function pointers.
----------------------------------------------------------------------*/
#define DECLARE_PLOT_ACCESSORS(attr,type) \
static void Set##attr(AstPlot *,int,type,int *); \
static void Clear##attr(AstPlot *,int,int *); \
static void (*parent_set##attr)(AstPlot *,int,type,int *); \
static void (*parent_clear##attr)(AstPlot *,int,int *);
DECLARE_PLOT_ACCESSORS(Style,int)
DECLARE_PLOT_ACCESSORS(Font,int)
DECLARE_PLOT_ACCESSORS(Colour,int)
DECLARE_PLOT_ACCESSORS(Width,double)
DECLARE_PLOT_ACCESSORS(Size,double)
#undef DECLARE_PLOT_ACCESSORS
/* Declare private member functions that access attributes inherited from
the Plot class that do not need to override the Get method. This
includes attributes that are not axis-specific or that do not have
dynamic defaults. Also declare pointers to hold the parent function
pointers.
----------------------------------------------------------------------*/
#define DECLARE_PLOT_ACCESSORS(attr,type) \
static void Set##attr(AstPlot *,type,int *); \
static void Clear##attr(AstPlot *,int *); \
static void (*parent_set##attr)(AstPlot *,type,int *); \
static void (*parent_clear##attr)(AstPlot *,int *);
DECLARE_PLOT_ACCESSORS(Ink,int)
DECLARE_PLOT_ACCESSORS(Tol,double)
DECLARE_PLOT_ACCESSORS(Invisible,int)
DECLARE_PLOT_ACCESSORS(TickAll,int)
DECLARE_PLOT_ACCESSORS(ForceExterior,int)
DECLARE_PLOT_ACCESSORS(Border,int)
DECLARE_PLOT_ACCESSORS(Clip,int)
DECLARE_PLOT_ACCESSORS(ClipOp,int)
DECLARE_PLOT_ACCESSORS(Escape,int)
DECLARE_PLOT_ACCESSORS(Grid,int)
DECLARE_PLOT_ACCESSORS(Labelling,int)
#undef DECLARE_PLOT_ACCESSORS
/* Member functions. */
/* ================= */
static int Attr3D( AstKeyMap *grfconID, int attr, double value,
double *old_value, int prim, int *status ){
/*
* Name:
* Attr3D
* Purpose:
* Get or set the value of a 3D grf attribute.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* Attr3D( AstKeyMap *grfconID, int attr, double value, double *old_value,
* int prim, int *status )
* Class Membership:
* Plot3D member function.
* Description:
* This function gets or sets the current value of a specified graphics
* attribute in the parent Plot structure of a Plot3D. It forwards the
* call to the grf3D module being used by this Plot3D. It should be
* registered with the parent Plot using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap.
* attr
* An integer value identifying the required attribute. This should
* be one of the symbolic values defined in grf.h.
* value
* A new value to store for the attribute. If this is AST__BAD
* no value is stored.
* old_value
* A pointer to a double in which to return the attribute value.
* If this is NULL, no value is returned.
* prim
* The sort of graphics primitive to be drawn with the new attribute.
* Identified by one of the values defined in grf.h.
* status
* Pointer to the inherited status variable.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
int result;
/* Check the inherited status. */
if( !astOK ) return 0;
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* Use the function in the external Grf3D module, selected at link-time
using ast_link options. */
result = astG3DAttr( attr, value, old_value, prim );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
/* Return the result. */
return result;
}
static AstPlot *AxisPlot( AstPlot3D *this, int axis3d, int *axis2d, int *status ){
/*
* Name:
* AxisPlot
* Purpose:
* Find the Plot used to label a 3D axis.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* AstPlot *AxisPlot( AstPlot3D *this, int axis3d, int *axis2d, int *status )
* Class Membership:
* Plot method.
* Description:
* This function returns a pointer to the encapsulated 2D Plot that
* is used to label the given 3D axis. It also returns the index
* of the labelled axis within the 2D Plot.
* Parameters:
* this
* Pointer to a Plot3D.
* axis3d
* A zero-based axis index within the Plot3D.
* axis2d
* Pointer to an int in which to put the index of the labelled axis
* within the returned 2D Plot.
* status
* Pointer to the inherited status variable.
* Returned Value:
* Pointer to the Plot used to label the 3D axis. Do not annul this
* pointer.
*-
*/
/* Local Variables: */
AstPlot *plot;
/* Check the global status. */
if( !astOK ) return NULL;
/* Return the required information form the Plot3D structure. */
plot = GET_PLOT( this->axis_plot1[ axis3d ] );
if( ! plot ) {
astError( AST__INTER, "AxisPlot(Plot3D): Illegal value %d "
"for axis3d (internal AST programming error).", status,
this->axis_plot1[ axis3d ] );
}
*axis2d = this->axis_index1[ axis3d ];
return plot;
}
static int Border( AstPlot *this_plot, int *status ){
/*
* Name:
* Border
* Purpose:
* Draw a border around valid regions of a Plot.
* Type:
* Private member function.
* Synopsis:
* #include "plot3d.h"
* int Border( AstPlot *this, int *status )
* Class Membership:
* Plot method (overrides the astBorder method inherited from the
* Plot class)
* Description:
* This function draws a (line) border around regions of the
* plotting area of a Plot which correspond to valid, unclipped
* physical coordinates. For example, when plotting using an
* all-sky map projection, this function could be used to draw the
* boundary of the celestial sphere when it is projected on to the
* plotting surface.
*
* If the entire plotting area contains valid, unclipped physical
* coordinates, then the boundary will just be a rectangular box
* around the edges of the plotting area.
* Parameters:
* this
* Pointer to the Plot.
* status
* Pointer to the inherited status variable.
* Returned Value:
* Zero is returned if the plotting area is completely filled by
* valid, unclipped physical coordinates (so that only a
* rectangular box was drawn around the edge). Otherwise, one is
* returned.
* Notes:
* - The Plot3D implementation of this method, invokes the astBorder
* method on each of the three encapsulated Plots, and returns the
* logical OR of the three returned flags.
* - A value of zero will be returned if this function is invoked
* with the AST error status set, or if it should fail for any
* reason.
* - An error results if either the current Frame or the base Frame
* of the Plot is not 2-dimensional, or (for a Plot3D) 3-dimensional.
* - An error also results if the transformation between the base
* and current Frames of the Plot is not defined (i.e. the Plot's
* TranForward attribute is zero).
*/
/* Local Variables: */
AstPlot3D *this;
const char *class;
const char *method;
float x1;
float y1;
float z1;
float x[ 2 ];
float y[ 2 ];
float z[ 2 ];
int flag1;
int flag2;
int flag3;
int naxes;
int ok;
int result;
int root_corner;
/* Check the global error status. */
if ( !astOK ) return 0;
/* Get a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_plot;
/* Store the current method, and the class of the supplied object for use
in error messages.*/
method = "astBorder";
class = astGetClass( this );
/* Check the base Frame of the Plot is 3-D. */
naxes = astGetNin( this );
if( naxes != 3 && astOK ){
astError( AST__NAXIN, "%s(%s): Number of axes (%d) in the base "
"Frame of the supplied %s is invalid - this number should "
"be 3.", status, method, class, naxes, class );
}
/* Check the current Frame of the Plot is 3-D. */
naxes = astGetNout( this );
if( naxes != 3 && astOK ){
astError( AST__NAXIN, "%s(%s): Number of axes (%d) in the current "
"Frame of the supplied %s is invalid - this number should "
"be 3.", status, method, class, naxes, class );
}
/* Invoke the astBorder method on each of the three encapsulated Plots. */
flag1 = astBorder( this->plotxy );
flag2 = astBorder( this->plotxz );
flag3 = astBorder( this->plotyz );
/* If no bad values were encountered in any of the Plots, draw lines
along the remaining plot edges. */
result = ( flag1 || flag2 || flag3 );
if( !result ) {
/* The three remaining edges to be drawn all meet at the corner
diagonally opposite the root corner. Get the root corner. */
root_corner = astGetRootCorner( this );
/* The (x0,y0,z0) position is the graphics coords at the corner
diagonally opposite the root corner. The x1, y1 and z1 values
are the graphics x, y and z values at the ends of the three
lines that remain to be drawn. */
if( root_corner & 1 ) {
x[ 0 ] = this->gbox[ 0 ];
x1 = this->gbox[ 3 ];
} else {
x[ 0 ] = this->gbox[ 3 ];
x1 = this->gbox[ 0 ];
}
if( root_corner & 2 ) {
y[ 0 ] = this->gbox[ 1 ];
y1 = this->gbox[ 4 ];
} else {
y[ 0 ] = this->gbox[ 4 ];
y1 = this->gbox[ 1 ];
}
if( root_corner & 4 ) {
z[ 0 ] = this->gbox[ 2 ];
z1 = this->gbox[ 5 ];
} else {
z[ 0 ] = this->gbox[ 5 ];
z1 = this->gbox[ 2 ];
}
/* Establish the correct graphical attributes as defined by attributes
with the supplied Plot. */
astGrfAttrs( this, AST__BORDER_ID, 1, GRF__LINE, method, class );
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* Draw the remaining line parallel to the X axis. */
x[ 1 ] = x1;
y[ 1 ] = y[ 0 ];
z[ 1 ] = z[ 0 ];
ok = astG3DLine( 2, x, y, z );
/* Draw the remaining line parallel to the Y axis. */
x[ 1 ] = x[ 0 ];
y[ 1 ] = y1;
z[ 1 ] = z[ 0 ];
ok = ok && astG3DLine( 2, x, y, z );
/* Draw the remaining line parallel to the X axis. */
x[ 1 ] = x[ 0 ];
y[ 1 ] = y[ 0 ];
z[ 1 ] = z1;
ok = ok && astG3DLine( 2, x, y, z );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
/* Re-establish the original graphical attributes. */
astGrfAttrs( this, AST__BORDER_ID, 0, GRF__LINE, method, class );
/* Report an error if anything went wrong in the grf3d module. */
if( !ok && astOK ) {
astError( AST__GRFER, "%s(%s): Graphics error in astG3DLine. ", status,
method, class );
}
}
/* Return zero if an error has occurrred. */
if( !astOK ) result = 0;
/* Return a flag indicating if any bad values were encountered in any of
the Plots. */
return result;
}
static AstObject *Cast( AstObject *this_object, AstObject *obj, int *status ) {
/*
* Name:
* Cast
* Purpose:
* Cast an Object into an instance of a sub-class.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* AstObject *Cast( AstObject *this, AstObject *obj, int *status )
* Class Membership:
* Plot3D member function (over-rides the protected astCast
* method inherited from the Frame class).
* Description:
* This function returns a deep copy of an ancestral component of the
* supplied object. The required class of the ancestral component is
* specified by another object. Specifically, if "this" and "new" are
* of the same class, a copy of "this" is returned. If "this" is an
* instance of a subclass of "obj", then a copy of the component
* of "this" that matches the class of "obj" is returned. Otherwise,
* a NULL pointer is returned without error.
* Parameters:
* this
* Pointer to the Object to be cast.
* obj
* Pointer to an Object that defines the class of the returned Object.
* The returned Object will be of the same class as "obj".
* Returned Value:
* A pointer to the new Object. NULL if "this" is not a sub-class of
* "obj", or if an error occurs.
* Notes:
* - A NULL pointer will be returned if this function is invoked
* with the global error status set, or if it should fail for any
* reason.
*/
/* Local Variables; */
AstObject *new;
astDECLARE_GLOBALS
int generation_gap;
/* Initialise */
new = NULL;
/* Check inherited status */
if( !astOK ) return new;
/* Get a pointer to the thread specific global data structure. */
astGET_GLOBALS(NULL);
/* See how many steps up the class inheritance ladder it is from "obj"
to this class (Plot3D). A positive value is returned if Plot3D
is a sub-class of "obj". A negative value is returned if "obj" is
a sub-class of Plot3D. Zero is returned if "obj" is a Plot3D.
AST__COUSIN is returned if "obj" is not on the same line of descent
as Plot3D. */
generation_gap = astClassCompare( (AstObjectVtab *) &class_vtab,
astVTAB( obj ) );
/* If "obj" is a Plot3D or a sub-class of Plot3D, we can cast by
truncating the vtab for "this" so that it matches the vtab of "obJ",
and then taking a deep copy of "this". */
if( generation_gap <= 0 && generation_gap != AST__COUSIN ) {
new = astCastCopy( this_object, obj );
/* If "obj" is a Plot (the parent class), we cast by returning a deep
copy of the Plot covering the XY face. */
} else if( generation_gap == 1 ) {
new = astCopy( ( (AstPlot3D *) this_object)->plotxy );
/* If "obj" is a FrameSet or higher, we attempt to use the implementation
inherited from the parent class to cast the FrameSet component into the
class indicated by "obj". */
} else {
new = (*parent_cast)( this_object, obj, status );
}
/* Return the new pointer. */
return new;
}
static void ChangeRootCorner( AstPlot3D *this, int old, int new, int *status ){
/*
* Name:
* ChangeRootCorner
* Purpose:
* Use a new RootCorner value.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void ChangeRootCorner( AstPlot3D *this, int old, int new, int *status )
* Class Membership:
* Plot method.
* Description:
* This function sets the attributes of the encapsulated Plots so that
* labels appear on the edges of the 3D graphics cube that join at the
* specified new root corner. It also reverses the graphics axes in
* the encapsulated Plots as required in order to ensure that the Plots
* look "normal" when viewed from the outside of the 3D graphics cube.
* This happens if a the Plot used to label a specific axis moves from
* one face the the 3D graphics cube to the opposite face.
* Parameters:
* this
* Pointer to a Plot3D.
* old
* The old RootCorner value.
* new
* The new RootCorner value.
* status
* Pointer to the inherited status variable.
* Notes:
* - Each RootCorner value is in the range 0 to 7 and is a 3 bit
* bit-mask. Bit 0 describes the 3D graphics X axis, bit 1 describes
* the graphics Y axis and bit 2 describes the graphics Z axis. If a
* bit is set it means that the corner is at the upper bound on the
* corresponding axis. If a bit is unset it means that the corner is
* at the lower bound on the corresponding axis.
*-
*/
/* Local Variables: */
AstKeyMap *grfcon;
AstPlot *plot;
AstPlot *plots[ 24 ];
int edges[ 24 ];
int axes[ 24 ];
int axis2d;
int edge;
int i;
int np;
int xeqy;
int xeqz;
/* Check the global status. */
if( !astOK ) return;
/* If the corner has moved on the 3D X axis (from upper X bound to lower X
bound or vice-versa), mirror the axis of the encapsulated Plot that is
perpendicular to the 3D X axis. This means that the Plot can be thought
of as being viewed from the outside of the 3D graphics cube. Also,
update the constant X axis value at which the YZ plane is drawn. */
if( ( old & 1 ) != ( new & 1 ) ) astMirror( this->plotyz, 0 );
grfcon = (AstKeyMap *) astGetGrfContext( this->plotyz );
astMapPut0D( grfcon, "Gcon", this->gbox[ ( new & 1 ) ? 3 : 0 ], "Constant X value" );
astMapPut0I( grfcon, "RootCorner", new, "Labelled corner" );
grfcon= astAnnul( grfcon );
/* Likewise mirror the other two axes if required. */
if( ( old & 2 ) != ( new & 2 ) ) astMirror( this->plotxz, 0 );
grfcon = (AstKeyMap *) astGetGrfContext( this->plotxz );
astMapPut0D( grfcon, "Gcon", this->gbox[ ( new & 2 ) ? 4 : 1 ], "Constant Y value" );
astMapPut0I( grfcon, "RootCorner", new, "Labelled corner" );
grfcon= astAnnul( grfcon );
if( ( old & 4 ) != ( new & 4 ) ) astMirror( this->plotxy, 0 );
grfcon = (AstKeyMap *) astGetGrfContext( this->plotxy );
astMapPut0D( grfcon, "Gcon", this->gbox[ ( new & 4 ) ? 5 : 2 ], "Constant Z value" );
astMapPut0I( grfcon, "RootCorner", new, "Labelled corner" );
grfcon= astAnnul( grfcon );
/* Set a flag saying whether the limits are equal at the new corner for
the X and Y axes. */
xeqy = ( ( ( new & 1 ) > 0 ) == ( ( new & 2 ) > 0 ) );
/* Set a flag saying whether the limits are equal at the new corner for
the X and Z axes. */
xeqz = ( ( ( new & 1 ) > 0 ) == ( ( new & 4 ) > 0 ) );
/* Ensure all Edge attributes are clear. This means that the public
attribute accessors routines used below will return dynamic defaults for
the Edge attributes. */
astClearEdge( this->plotxy, 0 );
astClearEdge( this->plotxy, 1 );
astClearEdge( this->plotxz, 0 );
astClearEdge( this->plotxz, 1 );
astClearEdge( this->plotyz, 0 );
astClearEdge( this->plotyz, 1 );
/* So far we have recorded no edges changes. */
np = 0;
/* We now adjust the Edge attributes in the Plot used to annotate the 3D
X axis in order to get the X axis labels on the correct edge of the 3D
graphics cube. Get the Plot used to produce X axis labels (this will
be either this->plotxy or this->plotxz). */
plot = AxisPlot( this, 0, &axis2d, status );
/* See what edge of the Plot is used to annotate the first of the two WCS
axis described by the 2D Plot. If the Edge(1) attribute has not been
assigned a value, then a dynamic default will be used by the Plot class.
We want to know what this dynamic default is, so we first cleared the
attribute above. Now we set the attribute value explicitly to the dynamic
default returned by astGetC. Note, we use astGetC rather than astGetEdge
because the dynamic default is not calculated when calling astGetEdge. */
astSetC( plot, "Edge(1)", astGetC( plot, "Edge(1)" ));
edge = astGetEdge( plot, 0 );
astClearEdge( plot, 0 );
/* If the 3D X axis is labelled using the Plot that spans the XY plane... */
if( plot == this->plotxy ) {
/* ... and if the new root corner is at the upper limit on the Y axis... */
if( new & 2 ) {
/* If the first WCS axis is currently labelled on either the top or bottom
edge, ensure it is labelled on the upper Y (top) edge. */
if( edge == 3 || edge == 1 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = TOP;
/* Otherwise ensure that the second WCS axis is labelled on the upper Y (top)
edge. */
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = TOP;
}
/* If the new root corner is at the lower limit on the Y axis... */
} else {
/* If the first WCS axis is currently labelled on either the top or bottom
edge, ensure it is labelled on the lower Y (bottom) edge. */
if( edge == 3 || edge == 1 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = BOTTOM;
/* Otherwise ensure that the second WCS axis is labelled on the lower Y
(bottom) edge. */
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = BOTTOM;
}
}
/* If the 3D X axis is labelled using the Plot that spans the XZ plane... */
} else {
/* ... and if the new root corner is at the upper limit on the Z axis... */
if( new & 4 ) {
/* If the first WCS axis is currently labelled on either the top or bottom
edge, ensure it is labelled on the upper Z (top) edge. */
if( edge == 3 || edge == 1 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = TOP;
/* Otherwise ensure that the second WCS axis is labelled on the upper Y (top)
edge. */
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = TOP;
}
/* If the new root corner is at the lower limit on the Z axis... */
} else {
/* If the first WCS axis is currently labelled on either the top or bottom
edge, ensure it is labelled on the lower Z (bottom) edge. */
if( edge == 3 || edge == 1 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = BOTTOM;
/* Otherwise ensure that the second WCS axis is labelled on the lower Z
(bottom) edge. */
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = BOTTOM;
}
}
}
/* We now adjust the Edge attributes in the Plot used to annotate the 3D
Y axis in order to get the Y axis labels on the correct edge of the 3D
graphics cube. Get the Plot used to produce Y axis labels. */
plot = AxisPlot( this, 1, &axis2d, status );
/* See what edge of the Plot is used to annotate the first of the two WCS
axis described by the Plot. */
astSetC( plot, "Edge(1)", astGetC( plot, "Edge(1)" ));
edge = astGetEdge( plot, 0 );
astClearEdge( plot, 0 );
/* If the 3D Y axis is labelled using the Plot that spans the XY plane... */
if( plot == this->plotxy ) {
/* ... and if the new root corner is at the same limit on the X and Z axes,
put Y labels on the right side of the Plot. */
if( xeqz ) {
if( edge == 0 || edge == 2 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = RIGHT;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = RIGHT;
}
/* If the new root corner is at a different limit on the X and Z axes,
put Y labels on the left side of the Plot. */
} else {
if( edge == 0 || edge == 2 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = LEFT;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = LEFT;
}
}
/* If the 3D Y axis is labelled using the Plot that spans the YZ plane... */
} else {
/* ... and if the new root corner is at the upper Z limit, put Y labels on
the top of the Plot. */
if( new & 4 ) {
if( edge == 1 || edge == 3 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = TOP;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = TOP;
}
/* If the new root corner is at the lower Z limit, put Y labels on the
bottom of the Plot. */
} else {
if( edge == 1 || edge == 3 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = BOTTOM;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = BOTTOM;
}
}
}
/* We now adjust the Edge attributes in the Plot used to annotate the 3D
Z axis in order to get the Z axis labels on the correct edge of the 3D
graphics cube. Get the Plot used to produce Z axis labels. */
plot = AxisPlot( this, 2, &axis2d, status );
/* See what edge of the Plot is used to annotate the first of the two WCS
axis described by the Plot. */
astSetC( plot, "Edge(1)", astGetC( plot, "Edge(1)" ));
edge = astGetEdge( plot, 0 );
astClearEdge( plot, 0 );
/* If the 3D Z axis is labelled using the Plot that spans the XZ plane... */
if( plot == this->plotxz ) {
/* ... and if the new root corner is at the same limit on the X and Y axes,
put Z labels on the left side of the Plot. */
if( xeqy ) {
if( edge == 0 || edge == 2 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = LEFT;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = LEFT;
}
/* If the new root corner is at a different limit on the X and Y axes,
put Y labels on the right side of the Plot. */
} else {
if( edge == 0 || edge == 2 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = RIGHT;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = RIGHT;
}
}
/* If the 3D Z axis is labelled using the Plot that spans the YZ plane... */
} else {
/* ... and if the new root corner is at the same limit on the X and Y axes,
put Z labels on the right side of the Plot. */
if( xeqz ) {
if( edge == 0 || edge == 2 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = RIGHT;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = RIGHT;
}
/* If the new root corner is at a different limit on the X and Y axes,
put Y labels on the left side of the Plot. */
} else {
if( edge == 0 || edge == 2 ) {
plots[ np ] = plot;
axes[ np ] = 0;
edges[ np++ ] = LEFT;
} else {
plots[ np ] = plot;
axes[ np ] = 1;
edges[ np++ ] = LEFT;
}
}
}
/* Apply the set of edge changes determined above. */
for( i = 0; i < np; i++ ) {
astSetEdge( plots[ i ], axes[ i ], edges[ i ] );
}
/* Ensure that the 2 Plot axes that are not being used have suitable values
for their attributes. That is, no labels are drawn, and the ticked
edges are the one that meet at the new RootCorner. */
if( !astTestEdge( this->plotxy, 0 ) ) {
astSetEdge( this->plotxy, 0, ( new & 2 ) ? TOP : BOTTOM );
}
if( !astTestEdge( this->plotxy, 1 ) ) {
astSetEdge( this->plotxy, 1, xeqz ? RIGHT: LEFT );
}
if( !astTestEdge( this->plotxz, 0 ) ) {
astSetEdge( this->plotxz, 0, ( new & 4 ) ? TOP : BOTTOM );
}
if( !astTestEdge( this->plotxz, 1 ) ) {
astSetEdge( this->plotxz, 1, xeqy ? LEFT : RIGHT );
}
if( !astTestEdge( this->plotyz, 0 ) ) {
astSetEdge( this->plotyz, 0, ( new & 4 ) ? TOP : BOTTOM );
}
if( !astTestEdge( this->plotyz, 1 ) ) {
astSetEdge( this->plotyz, 1, xeqy ? RIGHT : LEFT );
}
}
static void Clear( AstObject *this_object, const char *attrib, int *status ) {
/*
* Name:
* Clear
* Purpose:
* Clear attribute values for a Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void Clear( AstObject *this, const char *attrib, int *status )
* Class Membership:
* Plot3D member function (over-rides the public astClear method
* inherited from the Object class).
* Description:
* This function clears the values of a specified set of attributes
* for a Plot3D. Clearing an attribute cancels any value that has
* previously been explicitly set for it, so that the standard
* default attribute value will subsequently be used instead. This
* also causes the astTest function to return the value zero for
* the attribute, indicating that no value has been set.
* Parameters:
* this
* Pointer to the Plot3D.
* attrib
* Pointer to a null-terminated character string containing a
* comma-separated list of the names of the attributes to be
* cleared.
* status
* Pointer to the inherited status variable.
* Notes:
* - This function preserves the integrity of the Plot3D (if
* possible) by appropriately modifying the three encapsulated Plots.
*/
/* Check the global error status. */
if ( !astOK ) return;
/* Invoke the parent astClear method to clear the Plot3D's attribute values. */
(*parent_clear)( this_object, attrib, status );
/* Update the three 2D Plots stored in the Plot3D structure so that they
reflect this modified FrameSet. */
UpdatePlots( (AstPlot3D *) this_object, status );
}
static void ClearAttrib( AstObject *this_object, const char *attrib, int *status ) {
/*
* Name:
* ClearAttrib
* Purpose:
* Clear an attribute value for a Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot.h"
* void ClearAttrib( AstObject *this, const char *attrib )
* Class Membership:
* Plot3D member function (over-rides the astClearAttrib protected
* method inherited from the Plot class).
* Description:
* This function clears the value of a specified attribute for a
* Plot3D, so that the default value will subsequently be used.
* Parameters:
* this
* Pointer to the Plot3D.
* attrib
* Pointer to a null terminated string specifying the attribute
* name. This should be in lower case with no surrounding white
* space.
*/
/* Local Variables: */
AstPlot3D *this; /* Pointer to the Plot3D structure */
AstPlot *plot; /* Pointer to specific Plot */
char attname[50]; /* Plot attribute base name */
char patt[50]; /* Plot attribute full name */
char spec[10]; /* Plane specification */
int axis; /* Axis index */
int len; /* Length of attrib string */
int nc; /* Number of characters read */
/* Check the global error status. */
if ( !astOK ) return;
/* Obtain a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_object;
/* Obtain the length of the "attrib" string. */
len = strlen( attrib );
/* Check the attribute name and clear the appropriate attribute. */
/* Norm. */
/* ----------- */
if ( !strcmp( attrib, "norm" ) ) {
astClearNorm( this, 0 );
astClearNorm( this, 1 );
astClearNorm( this, 2 );
/* Norm(axis). */
/* ----------- */
} else if ( nc = 0,
( 1 == astSscanf( attrib, "norm(%d)%n", &axis, &nc ) )
&& ( nc >= len ) ) {
astClearNorm( this, axis - 1 );
/* RootCorner. */
/* ----------- */
} else if ( !strcmp( attrib, "rootcorner" ) ) {
astClearRootCorner( this );
/* ..._XY etc */
/* ---------- */
} else if ( nc = 0,
( 2 == astSscanf( attrib, "%[a-z]_%[xyz]%n", attname, spec,
&nc ) ) ) {
if( !strcmp( spec, "xy" ) || !strcmp( spec, "yx" ) ) {
plot = this->plotxy;
} else if( !strcmp( spec, "xz" ) || !strcmp( spec, "zx" ) ) {
plot = this->plotyz;
} else if( !strcmp( spec, "yz" ) || !strcmp( spec, "zy" ) ) {
plot = this->plotxz;
} else {
plot = NULL;
}
if( plot ) {
sprintf( patt, "%s%s", attname, attrib + nc );
astClearAttrib( plot, patt );
} else {
(*parent_clearattrib)( this_object, attrib, status );
}
/* If the attribute is still not recognised, pass it on to the parent
method for further interpretation. */
} else {
(*parent_clearattrib)( this_object, attrib, status );
}
}
static void ClearCurrent( AstFrameSet *this_frameset, int *status ) {
/*
* Name:
* ClearCurrent
* Purpose:
* Clear the value of the Current attribute for a Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int astClearCurrent( AstFrameSet *this )
* Class Membership:
* Plot3D member function (over-rides the public astClearCurrent method
* inherited from the FrameSet class).
* Description:
* This function clears the value of the Current attribute for a
* Plot3D. This attribute is an index that identifies the current
* Frame for the Plot3D.
* Parameters:
* this
* Pointer to the Plot3D.
*/
/* Invoke the parent astClearCurrent method. */
(*parent_clearcurrent)( this_frameset, status );
/* Update the three 2D Plots stored in the Plot3D structure so that they
reflect this modified FrameSet. */
UpdatePlots( (AstPlot3D *) this_frameset, status );
}
static void ClearRootCorner( AstPlot3D *this, int *status ){
/*
*+
* Name:
* astClearRootCorner
* Purpose:
* Clear the RootCorner attribute.
* Type:
* Protected virtual function.
* Synopsis:
* #include "plot3d.h"
* void astClearRootCorner( AstPlot3D *this )
* Class Membership:
* Plot method.
* Description:
* This function clears the RootCorner attribute.
* Parameters:
* this
* Pointer to a Plot3D.
*-
*/
/* Local Variables: */
int old;
int new;
/* Check the global status. */
if( !astOK ) return;
/* Get the current rootcorner value. */
old = astGetRootCorner( this );
/* Clear the RootCorner attribute. */
this->rootcorner = -1;
/* Get the new (default) rootcorner value. */
new = astGetRootCorner( this );
/* If the root corner has changed, mirror any axes of the encapsulated Plots
that need mirroring (this is done to ensure that Plots look right when
viewed from the outside of the graphics cube), and modify the Edge
attributes in the encapsulated Plots to ensure the labels appear on the
requested edges of the 3D graphics cube. . */
if( old != new ) ChangeRootCorner( this, old, new, status );
}
static void CreatePlots( AstPlot3D *this, AstFrameSet *fset, const float *gbox,
const double *bbox, int *status ) {
/*
* Name:
* CreatePlots
* Purpose:
* Create three 2D plots and store in the Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void CreatePlots( AstPlot3D *this, AstFrameSet *fset, const float *gbox,
const double *bbox, int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function splits the supplied FrameSet up into 3 independent 2D
* FrameSets, each describing a 2D plane in the supplied 3D FrameSet.
* It then uses these 2D FrameSets to create three Plots, one for each
* plane in the graphics plotting space, and stores them in the Plot3D.
*
* Each of the three Plots is notionally pasted onto one face of the
* 3D graphics cube (the RootCorner attribute is used to determine which
* of the two parallel faces a particular Plot is pasted onto). The
* Plot is pasted in such a way that, when viewed from the outside of
* the graphics cube, the first graphics axis increases left to right
* and the second increases bottom to top (this assumes that "up" is
* parallel to the 3D Z axis).
*
* Initially, the Plots are created assuming the default RootCorner
* value ("LLL"). They will be changed later if the value of the
* RootCorner attribute is changed.
* Parameters:
* this
* Pointer to the Plot3D.
* fset
* Pointer to the FrameSet.
* gbox
* A pointer to an array of 6 values giving the graphics coordinates
* of the bottom left and top right corners of a box on the graphics
* output device. The first triple of values should be the graphics
* coordinates of the bottom left corner of the box and the second
* triple of values are the graphics coordinates of the top right corner.
* bbox
* A pointer to an array of 6 values giving the coordinates in the
* supplied Frame or base Frame of the supplied FrameSet at the bottom
* left and top right corners of the box specified by parameter gbox.
* These should be supplied in the same order as for parameter "gbox".
* status
* Pointer to the inherited status variable.
* Notes:
* - Each returned plot has 3 Frames: Frame 1 is the base (GRAPHICS)
* Frame; Frame 2 is spanned by 2 of the 3 axes in the base Frame of
* the supplied FrameSet; Frame 3 is the current Frame and is spanned
* by 2 of the 3 axes in the current Frame of the supplied FrameSet.
* Any future changes to this function that alter this structure should
* reflected in equivalent changes to function UpdatePlots.
*/
/* Local Variables: */
AstFrameSet *fsetxy;
AstFrameSet *fsetxz;
AstFrameSet *fsetyz;
double basebox2d[ 4 ];
float graphbox2d[ 4 ];
int baseplane;
int labelxy[ 2 ];
int labelxz[ 2 ];
int labelyz[ 2 ];
int wcsxy[ 2 ];
int wcsxz[ 2 ];
int wcsyz[ 2 ];
/* Check the inherited status. */
if( !astOK ) return;
/* Split the supplied FrameSet up into 3 FrameSets, each with a 2D base
and current Frame. Each of these FrameSets describes one plane of
the 3D cube. One of them will be spanned by two axes picked from the
supplied 3D FrameSet. The other two FrameSets will each include a copy
of the remaining 3rd axis from the supplied FrameSet, plus an extra
dummy axis. These dummy axes will never be labelled. */
SplitFrameSet( fset, &fsetxy, labelxy, wcsxy, &fsetxz, labelxz, wcsxz,
&fsetyz, labelyz, wcsyz, &baseplane, status );
/* If OK, annul any existing 2D plots. */
if( astOK ) {
if( this->plotxy ) this->plotxy = astAnnul( this->plotxy );
if( this->plotxz ) this->plotxz = astAnnul( this->plotxz );
if( this->plotyz ) this->plotyz = astAnnul( this->plotyz );
/* Create three Plots; one for each 2D plane in the graphics plotting
space. Set the attributes of these plots so that the required axes are
labelled and other axes are left blank. The "graphbox2d" and "basebox2d"
values used to create each Plot define the sense, as well as the extent,
of each axis. The first pair of values in each give the lower left corner
of the Plot and the second pair give the top right corner. We want each
Plot to have X increasing left to right and Y increasing bottom to
top when viewed from the outside of the cube. We assume an initial
RootCorner value of "LLL" (that is, the Plots are pasted onto the cube
faces that meet at the lower limit on every axis). */
graphbox2d[ 0 ] = gbox[ 3 ];
graphbox2d[ 1 ] = gbox[ 1 ];
graphbox2d[ 2 ] = gbox[ 0 ];
graphbox2d[ 3 ] = gbox[ 4 ];
basebox2d[ 0 ] = bbox[ 3 ];
basebox2d[ 1 ] = bbox[ 1 ];
basebox2d[ 2 ] = bbox[ 0 ];
basebox2d[ 3 ] = bbox[ 4 ];
if( this->plotxy ) this->plotxy = astAnnul( this->plotxy );
this->plotxy = astPlot( fsetxy, graphbox2d, basebox2d, "", status );
SetPlotAttr( this->plotxy, XY, labelxy, status );
graphbox2d[ 0 ] = gbox[ 0 ];
graphbox2d[ 1 ] = gbox[ 2 ];
graphbox2d[ 2 ] = gbox[ 3 ];
graphbox2d[ 3 ] = gbox[ 5 ];
basebox2d[ 0 ] = bbox[ 0 ];
basebox2d[ 1 ] = bbox[ 2 ];
basebox2d[ 2 ] = bbox[ 3 ];
basebox2d[ 3 ] = bbox[ 5 ];
this->plotxz = astPlot( fsetxz, graphbox2d, basebox2d, "", status );
SetPlotAttr( this->plotxz, XZ, labelxz, status );
graphbox2d[ 0 ] = gbox[ 4 ];
graphbox2d[ 1 ] = gbox[ 2 ];
graphbox2d[ 2 ] = gbox[ 1 ];
graphbox2d[ 3 ] = gbox[ 5 ];
basebox2d[ 0 ] = bbox[ 4 ];
basebox2d[ 1 ] = bbox[ 2 ];
basebox2d[ 2 ] = bbox[ 1 ];
basebox2d[ 3 ] = bbox[ 5 ];
this->plotyz = astPlot( fsetyz, graphbox2d, basebox2d, "", status );
SetPlotAttr( this->plotyz, YZ, labelyz, status );
/* Store information that allows each 3D WCS axis to be associatedf with
a pair of Plots. Also store the WCS axis within each Plot that
corresponds to the 3D WCS axis. */
StoreAxisInfo( this, labelxy, wcsxy, labelxz, wcsxz, labelyz, wcsyz, status );
/* Store the Plot that spans two connected 3D axes. */
this->baseplot = baseplane;
/* Free resources */
fsetxy = astAnnul( fsetxy );
fsetxz = astAnnul( fsetxz );
fsetyz = astAnnul( fsetyz );
}
}
static int Element2D( AstPlot3D *this, int element, int *elem2d1,
int *elem2d2, int *status ){
/*
* Name:
* Element2D
* Purpose:
* Convert a 3D graphics element identifier to a corresponding pair of
* 2D identifiers.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Element2D( AstPlot3D *this, int element, int *elem2d1,
* int *elem2d2, int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function takes an integer identifier for an element of a 3D
* annotated grid (e.g. ticks, axis 1 labels, border, etc), and returns
* a element identifers that can be used with the encapsualted 2D Plots.
* Parameters:
* this
* Pointer to the Plot2D structure.
* element
* The 3D element identifier to convert.
* elem2d1
* Pointer to an int in which to return the 2D element identifier
* to use with the first of the two Plots that span the axis to
* which the 3D element identifier refers. Returned holding 0 if
* the given 3D element identifier is not axis specific.
* elem2d2
* Pointer to an int in which to return the 2D element identifier
* to use with the second of the two Plots that span the axis to
* which the 3D element identifier refers. Returned holding 0 if
* the given 3D element identifier is not axis specific.
* status
* Pointer to the inherited status variable.
* Returned Value:
* The zero-based index of the 3D axis to which the given element
* identifier refers, or -1 if the element identifier is not axis
* specific.
*/
/* Local Variables: */
int axis3d;
/* Check the global error status. */
if ( !astOK ) return 0;
/* Get the zero-based index of the 3D axis to which the supplied element
refers. Use an index of -1 to indicate that the element does not
relate to a specific axis. Also get the corresponding element to use
with the two Plots that share the speified 3D axis. */
/* Define a macro used to set the 2d element identifiers for a given 3d
element identifier. */
#define SET_ELEM2D(id1,id2) \
*elem2d1 = this->axis_index1[ axis3d ] ? id2 : id1; \
*elem2d2 = this->axis_index2[ axis3d ] ? id2 : id1;
if( element == AST__BORDER_ID ){
axis3d = -1;
} else if( element == AST__CURVE_ID ){
axis3d = -1;
} else if( element == AST__TITLE_ID ){
axis3d = -1;
} else if( element == AST__MARKS_ID ){
axis3d = -1;
} else if( element == AST__TEXT_ID ){
axis3d = -1;
} else if( element == AST__AXIS1_ID ){
axis3d = 0;
SET_ELEM2D(AST__AXIS1_ID,AST__AXIS2_ID)
} else if( element == AST__AXIS2_ID ){
axis3d = 1;
SET_ELEM2D(AST__AXIS1_ID,AST__AXIS2_ID)
} else if( element == AST__AXIS3_ID ){
axis3d = 2;
SET_ELEM2D(AST__AXIS1_ID,AST__AXIS2_ID)
} else if( element == AST__NUMLAB1_ID ){
axis3d = 0;
SET_ELEM2D(AST__NUMLAB1_ID,AST__NUMLAB2_ID)
} else if( element == AST__NUMLAB2_ID ){
axis3d = 1;
SET_ELEM2D(AST__NUMLAB1_ID,AST__NUMLAB2_ID)
} else if( element == AST__NUMLAB3_ID ){
axis3d = 2;
SET_ELEM2D(AST__NUMLAB1_ID,AST__NUMLAB2_ID)
} else if( element == AST__TEXTLAB1_ID ){
axis3d = 0;
SET_ELEM2D(AST__TEXTLAB1_ID,AST__TEXTLAB2_ID)
} else if( element == AST__TEXTLAB2_ID ){
axis3d = 1;
SET_ELEM2D(AST__TEXTLAB1_ID,AST__TEXTLAB2_ID)
} else if( element == AST__TEXTLAB3_ID ){
axis3d = 2;
SET_ELEM2D(AST__TEXTLAB1_ID,AST__TEXTLAB2_ID)
} else if( element == AST__TICKS1_ID ){
axis3d = 0;
SET_ELEM2D(AST__TICKS1_ID,AST__TICKS2_ID)
} else if( element == AST__TICKS2_ID ){
axis3d = 1;
SET_ELEM2D(AST__TICKS1_ID,AST__TICKS2_ID)
} else if( element == AST__TICKS3_ID ){
axis3d = 2;
SET_ELEM2D(AST__TICKS1_ID,AST__TICKS2_ID)
} else if( element == AST__GRIDLINE1_ID ){
axis3d = 0;
SET_ELEM2D(AST__GRIDLINE1_ID,AST__GRIDLINE2_ID)
} else if( element == AST__GRIDLINE2_ID ){
axis3d = 1;
SET_ELEM2D(AST__GRIDLINE1_ID,AST__GRIDLINE2_ID)
} else if( element == AST__GRIDLINE3_ID ){
axis3d = 2;
SET_ELEM2D(AST__GRIDLINE1_ID,AST__GRIDLINE2_ID)
} else {
axis3d = 0;
astError( AST__INTER, "Element2D(Plot3D): The MAKE_CLEAR2 macro "
"does not yet support element index %d (internal "
"AST programming error).", status, element );
}
#undef SET_ELEM2D
return axis3d;
}
static int Equal( AstObject *this_object, AstObject *that_object, int *status ) {
/*
* Name:
* Equal
* Purpose:
* Test if two Plot3Ds are equivalent.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Equal( AstObject *this, AstObject *that, int *status )
* Class Membership:
* Plot3D member function (over-rides the astEqual protected
* method inherited from the Plot Object class).
* Description:
* This function returns a boolean result (0 or 1) to indicate whether
* two Plot3Ds are equivalent.
* Parameters:
* this
* Pointer to the first Plot3D.
* that
* Pointer to the second Plot3D.
* status
* Pointer to the inherited status variable.
* Returned Value:
* One if the Plot3Ds are equivalent, zero otherwise.
* Notes:
* - A value of zero will be returned if this function is invoked
* with the global status set, or if it should fail for any reason.
*/
/* Local Variables: */
AstPlot3D *that; /* Pointer to the second Plot3D structure */
AstPlot3D *this; /* Pointer to the first Plot3D structure */
int result; /* Result value to return */
/* Initialise. */
result = 0;
/* Check the global error status. */
if ( !astOK ) return result;
/* Invoke the Equal method inherited from the parent Plot class. This checks
that the Plots are both of the same class (amongst other things). */
if( (*parent_equal)( this_object, that_object, status ) ) {
/* Obtain pointers to the two Plot3D structures. */
this = (AstPlot3D *) this_object;
that = (AstPlot3D *) that_object;
/* Check the encapsulated Plots for equality. */
result = ( astEqual( this->plotxz, that->plotxz ) &&
astEqual( this->plotyz, that->plotyz ) &&
astEqual( this->plotxy, that->plotxy ) );
}
/* If an error occurred, clear the result value. */
if ( !astOK ) result = 0;
/* Return the result, */
return result;
}
static AstPointSet *ExtendTicks( AstPlot *plot, AstPointSet *ticks, int *status ){
/*
* Name:
* ExtendTicks
* Purpose:
* Add an extra tick to the start and end of a list of tick marks.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* AstPointSet *ExtendTicks( AstPlot *plot, AstPointSet *ticks, int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function takes a list of tick marks drawn using the supplied
* Plot, and adds in an extra tick mark at the start and end of the
* supplied list of ticks, returning the expanded list in a new
* PointSet. The extra points are guaranteed to fall outside the area
* enclosed within the supplied Plot.
* Parameters:
* plot
* The Plot that was used to generate the list of tick marks.
* ticks
* A PointSet holding the 2D graphics coordinates (within the base
* Frame of the supplied Plot) at which each tick mark starts.
* status
* Pointer to the inherited status variable.
* Returned Value:
* A pointer to a new PointSet that has 2 more entries than the
* supplied PointSet. The first point is a new tick mark, then comes
* all the ticks mark positions supplied in "ticks", and finally there
* is another new tick mark.
*/
/* Local Variables: */
AstPointSet *result;
double **ptr_in;
double **ptr_out;
double *a_in;
double *a_out;
double *b_in;
double *b_out;
double *p;
double delta;
double hi;
double lo;
double range[ 2 ];
double v;
int axis;
int i;
int increasing;
int np;
/* Check inherited status */
if( !astOK || !ticks ) return NULL;
/* Get the number of tick marsk in the supplied PointSet and get pointers
to the 3D Graphics values contained in the PointSet. */
np = astGetNpoint( ticks );
ptr_in = astGetPoints( ticks );
/* Create the returned PointSet with room for an extra pair of ticks. Get
pointers to its data arrays */
result = astPointSet( np + 2, 2, "", status );
ptr_out = astGetPoints( result );
/* Check the pointers can be used safely. */
if( astOK ) {
/* Find the index of the 2D graphics axis (0 or 1) that varies along the
set of tick marks. We do this by finding the max and min value
supplied for each axis, and then choosing the axis that has the highest
range. */
for( axis = 0; axis < 2; axis++ ) {
hi = -DBL_MAX;
lo = DBL_MAX;
p = ptr_in[ axis ];
for( i = 0; i < np; i++, p++ ) {
v = *p;
if( v != AST__BAD ) {
if( v > hi ) hi = v;
if( v < lo ) lo = v;
}
}
if( lo != DBL_MAX ) {
range[ axis ] = hi - lo;
} else {
astError( AST__INTER, "ExtendTicks{Plot3D): no good ticks on "
"axis %d (internal AST prgramming error).", status, axis );
}
}
/* Get the index of the axis with the largest range (the other range
should be zero). */
axis = ( range[ 0 ] > range[ 1 ] ) ? 0 : 1;
/* Copy the input graphics positions to the output PointSet, and add an
extra position at the beginning and end of the output PointSet. */
if( axis == 0 ) {
lo = plot->xlo;
hi = plot->xhi;
a_in = ptr_in[ 0 ];
b_in = ptr_in[ 1 ];
a_out = ptr_out[ 0 ];
b_out = ptr_out[ 1 ];
} else {
lo = plot->ylo;
hi = plot->yhi;
a_in = ptr_in[ 1 ];
b_in = ptr_in[ 0 ];
a_out = ptr_out[ 1 ];
b_out = ptr_out[ 0 ];
}
delta = 0.2*( hi - lo );
if( a_in[ 0 ] < a_in[ 1 ] ) {
increasing = 1;
*(a_out++) = lo - delta;
} else {
increasing = 0;
*(a_out++) = hi + delta;
}
*(b_out++) = *b_in;
for( i = 0; i < np; i++ ) {
*(a_out++) = *(a_in++);
*(b_out++) = *(b_in++);
}
*(b_out++) = b_in[ -1 ];
if( increasing ) {
*(a_out++) = hi + delta;
} else {
*(a_out++) = lo - delta;
}
}
/* Return the extended PointSet. */
return result;
}
static AstFrameSet *Fset3D( AstFrameSet *fset, int ifrm, int *status ) {
/*
* Name:
* Fset3D
* Purpose:
* Create a FrameSet with no more than 3 dimensions for a given Frame.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* AstFrameSet *Fset3D( AstFrameSet *fset, int ifrm, int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function checks a specified Frame in the supplied FrameSet.
* If the Frame has more than 3 dimensions, a new Frame is added to
* the FrameSet containing just the first three axes of the specified
* Frame. A PermMap is used to connect this Frame to the specified
* Frame, which supplied bad values for any missing axes. If the
* specified Frame is the base Frame in the supplied FrameSet, then the
* new Frame becomes the base Frame in the returned FrameSet. Like-wise,
* if the specified Frame is the current Frame, then the new Frame
* will be the current Frame in the returned FrameSet.
*
* If the specified Frame does not have more than 3 axes, then a clone
* of the FrameSet pointer is returned, otherwise the returned pointer
* points to a copy of the supplied FrameSet with the new 3-D Frame
* added.
* Parameters:
* fset
* Pointer to the FrameSet.
* ifrm
* The index of the Frame to check. This should be AST__BASE or
* AST_CURRENT.
* status
* Pointer to the inherited status variable.
* Returned Value:
* A pointer to a FrameSet in which the Frame with index given by ifrm
* has no more than 3 axes.
*/
/* Local Variables: */
AstFrame *frm;
AstFrame *newfrm;
AstFrameSet *ret;
AstPermMap *map;
double zero;
int *inperm;
int axes[3];
int i;
int ic;
int nax;
/* Check the inherited status. */
if( !astOK ) return NULL;
/* Initialise variables to avoid "used of uninitialised variable"
messages from dumb compilers. */
map = NULL;
/* Get a pointer to the requested Frame in the supplied FrameSet. */
frm = astGetFrame( fset, ifrm );
/* See how many dimensions the specified Frame of the supplied FrameSet
has. */
nax = astGetNaxes( frm );
/* If it is more than 3-dimensionbal, create a 3D Frame by picking
axes 1, 2 and 3 from the original Frame. */
if( nax > 3 ) {
axes[ 0 ] = 0;
axes[ 1 ] = 1;
axes[ 2 ] = 2;
newfrm = astPickAxes( frm, 3, axes, NULL );
/* Create a PermMap to describe the mapping between the two Frames.
Use zero as the value for unknown axes (the optional mapping which
can be returned by astPickAxes uses AST__BAD for unknown axes). */
inperm = (int *) astMalloc( sizeof(int)*(size_t) nax );
if( astOK ){
inperm[ 0 ] = 0;
inperm[ 1 ] = 1;
inperm[ 2 ] = 2;
for( i = 3; i < nax; i++ ) inperm[ i ] = -1;
zero = 0.0;
map = astPermMap( nax, inperm, 3, axes, &zero, "", status );
inperm = (int *) astFree( (void *) inperm );
}
/* Get a copy of the supplied FrameSet. */
ret = astCopy( fset );
/* Add the new Frame to the FrameSet (it becomes the current Frame). */
ic = astGetCurrent( ret );
astAddFrame( ret, ifrm, map, newfrm );
newfrm = astAnnul( newfrm );
/* If the new Frame was derived from the base frame, set the new base
Frame, and re-instate the original current Frame */
if( ifrm == AST__BASE ){
astSetBase( ret, astGetCurrent( ret ) );
astSetCurrent( ret, ic );
}
/* If the specified Frame in the supplied FrameSet is 3-dimensional, just
return a clone of it. */
} else {
ret = astClone( fset );
}
/* Annul the pointer to the original Frame. */
frm = astAnnul( frm );
return ret;
}
static const char *GetAttrib( AstObject *this_object, const char *attrib, int *status ) {
/*
* Name:
* GetAttrib
* Purpose:
* Get the value of a specified attribute for a Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* const char *GetAttrib( AstObject *this, const char *attrib, int *status )
* Class Membership:
* Plot3D member function (over-rides the protected astGetAttrib
* method inherited from the FrameSet class).
* Description:
* This function returns a pointer to the value of a specified
* attribute for a Plot3D, formatted as a character string.
* Parameters:
* this
* Pointer to the Plot3D.
* attrib
* Pointer to a null terminated string containing the name of
* the attribute whose value is required. This name should be in
* lower case, with all white space removed.
* status
* Pointer to the inherited status variable.
* Returned Value:
* - Pointer to a null terminated string containing the attribute
* value.
* Notes:
* - The returned string pointer may point at memory allocated
* within the Plot3D, or at static memory. The contents of the
* string may be over-written or the pointer may become invalid
* following a further invocation of the same function or any
* modification of the Plot3D. A copy of the string should
* therefore be made if necessary.
* - A NULL pointer will be returned if this function is invoked
* with the global error status set, or if it should fail for any
* reason.
*/
/* Local Variables: */
AstPlot *plot; /* Pointer to specific Plot */
AstPlot3D *this; /* Pointer to the Plot3D structure */
astDECLARE_GLOBALS /* Pointer to thread-specific global data */
char attname[50]; /* Plot attribute base name */
char patt[50]; /* Plot attribute full name */
char spec[10]; /* Plane specification */
const char *result; /* Pointer value to return */
double dval; /* Floating point attribute value */
int axis; /* Axis index */
int ival; /* Int attribute value */
int len; /* Length of attrib string */
int nc; /* Number of character read */
/* Initialise. */
result = NULL;
/* Check the global error status. */
if ( !astOK ) return result;
/* Get a pointer to the thread specific global data structure. */
astGET_GLOBALS(this_object);
/* Obtain a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_object;
/* Obtain the length of the attrib string. */
len = strlen( attrib );
/* Compare "attrib" with each recognised attribute name in turn,
obtaining the value of the required attribute. If necessary, write
the value into "getattrib_buff" as a null terminated string in an appropriate
format. Set "result" to point at the result string. */
/* Norm(axis). */
/* ----------- */
if ( nc = 0,
( 1 == astSscanf( attrib, "norm(%d)%n", &axis, &nc ) )
&& ( nc >= len ) ) {
dval = astGetNorm( this, axis - 1 );
if ( astOK ) {
(void) sprintf( getattrib_buff, "%.*g", AST__DBL_DIG, dval );
result = getattrib_buff;
}
/* RootCorner. */
/* ----------- */
} else if ( !strcmp( attrib, "rootcorner" ) ) {
ival = astGetRootCorner( this );
result = RootCornerString( ival, status );
if( !result && astOK ) {
astError( AST__INTER, "astGetAttrib(Plot3D): Illegal value %d "
"for RootCorner attribute (internal AST programming "
"error).", status, ival );
}
/* ..._XY etc */
/* ---------- */
} else if ( nc = 0,
( 2 == astSscanf( attrib, "%[a-z]_%[xyz]%n", attname, spec,
&nc ) ) ) {
if( !strcmp( spec, "xy" ) || !strcmp( spec, "yx" ) ) {
plot = this->plotxy;
} else if( !strcmp( spec, "xz" ) || !strcmp( spec, "zx" ) ) {
plot = this->plotyz;
} else if( !strcmp( spec, "yz" ) || !strcmp( spec, "zy" ) ) {
plot = this->plotxz;
} else {
plot = NULL;
}
if( plot ) {
sprintf( patt, "%s%s", attname, attrib + nc );
result = astGetAttrib( plot, patt );
} else {
result = (*parent_getattrib)( this_object, attrib, status );
}
/* If the attribute name was not recognised, pass it on to the parent
method for further interpretation. */
} else {
result = (*parent_getattrib)( this_object, attrib, status );
}
/* Return the result. */
return result;
}
static int GetObjSize( AstObject *this_object, int *status ) {
/*
* Name:
* GetObjSize
* Purpose:
* Return the in-memory size of an Object.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int GetObjSize( AstObject *this, int *status )
* Class Membership:
* Plot3D member function (over-rides the astGetObjSize protected
* method inherited from the parent class).
* Description:
* This function returns the in-memory size of the supplied Plot3D,
* in bytes.
* Parameters:
* this
* Pointer to the Plot3D.
* status
* Pointer to the inherited status variable.
* Returned Value:
* The Object size, in bytes.
* Notes:
* - A value of zero will be returned if this function is invoked
* with the global status set, or if it should fail for any reason.
*/
/* Local Variables: */
AstPlot3D *this; /* Pointer to Plot3D structure */
int result; /* Result value to return */
/* Initialise. */
result = 0;
/* Check the global error status. */
if ( !astOK ) return result;
/* Obtain a pointers to the Plot3D structure. */
this = (AstPlot3D *) this_object;
/* Invoke the GetObjSize method inherited from the parent class, and then
add on any components of the class structure defined by this class
which are stored in dynamically allocated memory. */
result = (*parent_getobjsize)( this_object, status );
result += astGetObjSize( this->plotxy );
result += astGetObjSize( this->plotxz );
result += astGetObjSize( this->plotyz );
/* If an error occurred, clear the result value. */
if ( !astOK ) result = 0;
/* Return the result, */
return result;
}
static void Grid( AstPlot *this_plot, int *status ) {
/*
* Name:
* Grid
* Purpose:
* Draw a set of labelled coordinate axes.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void Grid( AstPlot *this, int *status )
* Class Membership:
* Plot member function (over-rides the astGrid method inherited from
* the Plot class).
* Description:
* This function draws a complete annotated set of 3-dimensional
* coordinate axes for a Plot3D with (optionally) a coordinate grid
* superimposed.
* Parameters:
* this
* Pointer to the Plot3D.
* status
* Pointer to the inherited status variable.
*/
/* Local Variables: */
AstPlot *baseplot;
AstPlot *plot;
AstPlot3D *this;
AstPointSet *majticks;
AstPointSet *minticks;
AstPointSet *tmp;
AstPointSet *wcsmajticks;
AstPointSet *wcsminticks;
const char *edge;
double **ptrmin;
double **ptrmaj;
double gcon;
int base_wax2d;
int itick;
int new_gaxis;
int new_plot;
int new_wax2d;
int nmaj;
int nmin;
int perm[ 2 ];
int rootcorner;
/* Check the global error status. */
if ( !astOK ) return;
/* Obtain a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_plot;
/* Invoke the astGrid method on the 2D base Plot. Both WCS axes in this
Plot are inherited from the 3D FrameSet that was supplied when the Plot3D
was constructed, and will be labelled. The other two Plots encapsulated
in the Plot3D only inherit a single axis from the original 3D FrameSet
(a dummy axis is used for the second WCS axis in these Plots). */
baseplot = GET_PLOT( this->baseplot );
astGrid( baseplot );
/* We next use astGrid to draw a grid on the 2D plane that shares the first
base plot graphics axis. Get the identifier for this Plot and the 2D
graphics axis index within the Plot that corresponds to the first base
plot graphics axis. Also get the constant value on the 3rd graphics
axis over the base plot */
rootcorner = astGetRootCorner( this );
if( this->baseplot == XY ) {
new_plot = XZ;
new_gaxis = 0;
gcon = this->gbox[ ( rootcorner & 4 ) ? 5 : 2 ];
} else if( this->baseplot == XZ ) {
new_plot = XY;
new_gaxis = 0;
gcon = this->gbox[ ( rootcorner & 2 ) ? 4 : 1 ];
} else {
new_plot = XY;
new_gaxis = 1;
gcon = this->gbox[ ( rootcorner & 1 ) ? 3 : 0 ];
}
/* Get a pointer to the Plot upon which astGrid is about to be invoked. */
plot = GET_PLOT( new_plot );
/* Find which 2D WCS axis was labelled on graphics axis 0 (the bottom or
top edge) of the base plot. */
if( ( edge = astGetC( baseplot, "Edge(1)" ) ) ) {
base_wax2d = ( !strcmp( edge, "bottom" ) || !strcmp( edge, "top" ) ) ? 0 : 1;
} else {
base_wax2d = 0;
}
/* Get the 2D graphics coords within the base Plot at which the tick
marks were drawn for this 2D WCS axis. Extend the PointSets holding
the major tick values to include an extra tick above and below the
ticks drawn by astGrid. These extra ticks are placed outside the
bounds of the plot. This ensures that the curves on the other axis
extend the full width of the plot. */
tmp = astGetDrawnTicks( baseplot, base_wax2d, 1 );
if( tmp ) {
majticks = ExtendTicks( baseplot, tmp, status );
nmaj = astGetNpoint( majticks );
ptrmaj = astGetPoints( majticks );
tmp = astAnnul( tmp );
} else {
majticks = NULL;
nmaj = 0;
ptrmaj = NULL;
}
minticks = astGetDrawnTicks( baseplot, base_wax2d, 0 );
if( minticks ) {
nmin = astGetNpoint( minticks );
ptrmin = astGetPoints( minticks );
} else {
nmin = 0;
ptrmin = NULL;
}
/* All the tick marks will have a constant value for the 2D graphics axis
that is not being ticked (axis 1 at the moment). Change this constant
value to be the value appropriate to the new Plot. */
if( ptrmaj && ptrmin ) {
for( itick = 0; itick < nmaj; itick++ ) ptrmaj[ 1 ][ itick ] = gcon;
for( itick = 0; itick < nmin; itick++ ) ptrmin[ 1 ][ itick ] = gcon;
}
/* If required, permute the axes in the tick mark positions. */
if( new_gaxis != 0 ) {
perm[ 0 ] = 1;
perm[ 1 ] = 0;
if( majticks ) astPermPoints( majticks, 1, perm );
if( minticks ) astPermPoints( minticks, 1, perm );
}
/* Transform the tick mark positions from 2D graphics coords to 2D WCS
coords. */
wcsmajticks = majticks ? astTransform( plot, majticks, 1, NULL ) : NULL;
wcsminticks = minticks ? astTransform( plot, minticks, 1, NULL ) : NULL;
/* Find the index of the 2D WCS axis that will be labelled on the bottom
or top edge (i.e. 2D graphics axis zero) of the new Plot. */
if( ( edge = astGetC( plot, "Edge(1)" ) ) ) {
new_wax2d = ( !strcmp( edge, "bottom" ) || !strcmp( edge, "top" ) ) ? 0 : 1;
} else {
new_wax2d = 0;
}
/* Use the other WCS axis if we are ticking the left or right edge (i.e.
2D graphics axis one) of the new Plot. This gives us the index of the
2D WCS axis for which tick values are to be stored in the Plot. */
if( new_gaxis == 1 ) new_wax2d = 1 - new_wax2d;
/* Store the tick mark values to be used on this WCS axis. */
ptrmaj = wcsmajticks ? astGetPoints( wcsmajticks ) : NULL;
ptrmin = wcsminticks ? astGetPoints( wcsminticks ) : NULL;
if( ptrmaj && ptrmin ) {
astSetTickValues( plot, new_wax2d, nmaj, ptrmaj[ new_gaxis ],
nmin, ptrmin[ new_gaxis ] );
}
/* Invoke the astGrid method on this plot. */
astGrid( plot );
/* Clear the stored tick values in the plot. */
astSetTickValues( plot, new_wax2d, 0, NULL, 0, NULL );
/* Free resources */
if( wcsmajticks ) wcsmajticks = astAnnul( wcsmajticks );
if( wcsminticks ) wcsminticks = astAnnul( wcsminticks );
if( majticks ) majticks = astAnnul( majticks );
if( minticks ) minticks = astAnnul( minticks );
/* We next use astGrid to draw a grid on the 2D plane that shares the
second base plot graphics axis. Get the identifier for this Plot and the
2D graphics axis index within the Plot that corresponds to the first
base plot graphics axis. */
if( this->baseplot == XY ) {
new_plot = YZ;
new_gaxis = 0;
} else if( this->baseplot == XZ ) {
new_plot = YZ;
new_gaxis = 1;
} else {
new_plot = XZ;
new_gaxis = 1;
}
/* Get a pointer to the Plot upon which astGrid is about to be invoked. */
plot = GET_PLOT( new_plot );
/* Find which 2D WCS axis was labelled on graphics axis 1 (the left or
right edge) of the base plot. */
base_wax2d = 1 - base_wax2d;
/* Get the 2D graphics coords within the base Plot at which the tick
marks were drawn for this 2D WCS axis. Extend the PointSets holding
the major tick values to include an extra tick above and below the
ticks drawn by astGrid. These extra ticks are placed outside the
bounds of the plot. This ensures that the curves on the other axis
extend the full width of the plot. */
tmp = astGetDrawnTicks( baseplot, base_wax2d, 1 );
if( tmp ) {
majticks = ExtendTicks( baseplot, tmp, status );
nmaj = astGetNpoint( majticks );
ptrmaj = astGetPoints( majticks );
tmp = astAnnul( tmp );
} else {
majticks = NULL;
nmaj = 0;
ptrmaj = NULL;
}
minticks = astGetDrawnTicks( baseplot, base_wax2d, 0 );
if( minticks ) {
nmin = astGetNpoint( minticks );
ptrmin = astGetPoints( minticks );
} else {
nmin = 0;
ptrmin = NULL;
}
/* All the tick marks will have a constant value for the 2D graphics axis
that is not being ticked (axis 0 at the moment). Change this constant
value to be the value appropriate to the new Plot. */
if( ptrmaj && ptrmin ) {
for( itick = 0; itick < nmaj; itick++ ) ptrmaj[ 0 ][ itick ] = gcon;
for( itick = 0; itick < nmin; itick++ ) ptrmin[ 0 ][ itick ] = gcon;
}
/* If required, permute the axes in the tick mark positions. */
if( new_gaxis != 1 ) {
perm[ 0 ] = 1;
perm[ 1 ] = 0;
if( majticks ) astPermPoints( majticks, 1, perm );
if( minticks ) astPermPoints( minticks, 1, perm );
}
/* Transform the tick mark positions from 2D graphics coords to 2D WCS
coords. */
wcsmajticks = majticks ? astTransform( plot, majticks, 1, NULL ) : NULL;
wcsminticks = minticks ? astTransform( plot, minticks, 1, NULL ) : NULL;
/* Find the index of the 2D WCS axis that will be labelled on the bottom
or top edge (i.e. 2D graphics axis zero) of the new Plot. */
if( ( edge = astGetC( plot, "Edge(1)" ) ) ) {
new_wax2d = ( !strcmp( edge, "bottom" ) || !strcmp( edge, "top" ) ) ? 0 : 1;
} else {
new_wax2d = 0;
}
/* Use the other WCS axis if we are ticking the left or right edge (i.e.
2D graphics axis one) of the new Plot. This gives us the index of the
2D WCS axis for which tick values are to be stored in the Plot. */
if( new_gaxis == 1 ) new_wax2d = 1 - new_wax2d;
/* Store the tick mark values to be used on this WCS axis. */
ptrmaj = wcsmajticks ? astGetPoints( wcsmajticks ) : NULL;
ptrmin = wcsminticks ? astGetPoints( wcsminticks ) : NULL;
if( ptrmaj && ptrmin ) {
astSetTickValues( plot, new_wax2d, nmaj, ptrmaj[ new_gaxis ],
nmin, ptrmin[ new_gaxis ] );
}
/* Invoke the astGrid method on this plot. */
astGrid( plot );
/* Clear the stored tick values in the plot. */
astSetTickValues( plot, new_wax2d, 0, NULL, 0, NULL );
/* Free resources */
if( wcsmajticks ) wcsmajticks = astAnnul( wcsmajticks );
if( wcsminticks ) wcsminticks = astAnnul( wcsminticks );
if( majticks ) majticks = astAnnul( majticks );
if( minticks ) minticks = astAnnul( minticks );
}
void astInitPlot3DVtab_( AstPlot3DVtab *vtab, const char *name, int *status ) {
/*
*+
* Name:
* astInitPlot3DVtab
* Purpose:
* Initialise a virtual function table for a Plot3D.
* Type:
* Protected function.
* Synopsis:
* #include "plot3d.h"
* void astInitPlot3DVtab( AstPlot3DVtab *vtab, const char *name )
* Class Membership:
* Plot3D vtab initialiser.
* Description:
* This function initialises the component of a virtual function
* table which is used by the Plot3D class.
* Parameters:
* vtab
* Pointer to the virtual function table. The components used by
* all ancestral classes will be initialised if they have not already
* been initialised.
* name
* Pointer to a constant null-terminated character string which contains
* the name of the class to which the virtual function table belongs (it
* is this pointer value that will subsequently be returned by the Object
* astClass function).
*-
*/
/* Local Variables: */
astDECLARE_GLOBALS /* Pointer to thread-specific global data */
AstFrame *dummy_frame; /* The Frame to put in dummy_frameset */
AstPlotVtab *plot; /* Pointer to Plot component of Vtab */
AstFrameSetVtab *fset; /* Pointer to FrameSet component of Vtab */
AstMappingVtab *mapping; /* Pointer to Mapping component of Vtab */
AstObjectVtab *object; /* Pointer to Object component of Vtab */
/* Check the local error status. */
if ( !astOK ) return;
/* Get a pointer to the thread specific global data structure. */
astGET_GLOBALS(NULL);
/* Initialize the component of the virtual function table used by the
parent class. */
astInitPlotVtab( (AstPlotVtab *) vtab, name );
/* Store a unique "magic" value in the virtual function table. This
will be used (by astIsAPlot3D) to determine if an object belongs
to this class. We can conveniently use the address of the (static)
class_check variable to generate this unique value. */
vtab->id.check = &class_check;
vtab->id.parent = &(((AstPlotVtab *) vtab)->id);
/* Initialise member function pointers. */
/* ------------------------------------ */
/* Store pointers to the member functions (implemented here) that
provide virtual methods for this class. */
#define SET_PLOT3D_ACCESSORS(attr) \
vtab->Set##attr = Set##attr; \
vtab->Get##attr = Get##attr; \
vtab->Test##attr = Test##attr; \
vtab->Clear##attr = Clear##attr;
SET_PLOT3D_ACCESSORS(RootCorner)
SET_PLOT3D_ACCESSORS(Norm)
#undef SET_PLOT3D_ACCESSORS
/* Save the inherited pointers to methods that will be extended, and
replace them with pointers to the new member functions. */
object = (AstObjectVtab *) vtab;
fset = (AstFrameSetVtab *) vtab;
mapping = (AstMappingVtab *) vtab;
plot = (AstPlotVtab *) vtab;
parent_getobjsize = object->GetObjSize;
object->GetObjSize = GetObjSize;
parent_equal = object->Equal;
object->Equal = Equal;
parent_vset = object->VSet;
object->VSet = VSet;
parent_cast = object->Cast;
object->Cast = Cast;
parent_clear = object->Clear;
object->Clear = Clear;
parent_clearattrib = object->ClearAttrib;
object->ClearAttrib = ClearAttrib;
parent_getattrib = object->GetAttrib;
object->GetAttrib = GetAttrib;
parent_setattrib = object->SetAttrib;
object->SetAttrib = SetAttrib;
parent_testattrib = object->TestAttrib;
object->TestAttrib = TestAttrib;
parent_clearcurrent = fset->ClearCurrent;
fset->ClearCurrent = ClearCurrent;
parent_setcurrent = fset->SetCurrent;
fset->SetCurrent = SetCurrent;
parent_removeframe = fset->RemoveFrame;
fset->RemoveFrame = RemoveFrame;
#if defined(THREAD_SAFE)
parent_managelock = object->ManageLock;
object->ManageLock = ManageLock;
#endif
/* Define a macro to override attribute accessors inherited from the
parent Plot class. First do axis specific attributes. */
#define SET_PLOT_ACCESSORS(attr) \
parent_get##attr = plot->Get##attr; \
plot->Get##attr = Get##attr; \
parent_set##attr = plot->Set##attr; \
plot->Set##attr = Set##attr; \
parent_clear##attr = plot->Clear##attr; \
plot->Clear##attr = Clear##attr;
/* Use the above macro to override all the inherited attribute accessors. */
SET_PLOT_ACCESSORS(MinTick)
SET_PLOT_ACCESSORS(Abbrev)
SET_PLOT_ACCESSORS(Gap)
SET_PLOT_ACCESSORS(LogGap)
SET_PLOT_ACCESSORS(LogPlot)
SET_PLOT_ACCESSORS(LogTicks)
SET_PLOT_ACCESSORS(LogLabel)
SET_PLOT_ACCESSORS(LabelUp)
SET_PLOT_ACCESSORS(DrawAxes)
SET_PLOT_ACCESSORS(LabelUnits)
SET_PLOT_ACCESSORS(MinTickLen)
SET_PLOT_ACCESSORS(MajTickLen)
SET_PLOT_ACCESSORS(NumLab)
SET_PLOT_ACCESSORS(NumLabGap)
SET_PLOT_ACCESSORS(TextLab)
SET_PLOT_ACCESSORS(TextLabGap)
#undef SET_PLOT_ACCESSORS
/* Now do attributes that are not axis specific. */
#define SET_PLOT_ACCESSORS(attr) \
parent_set##attr = plot->Set##attr; \
plot->Set##attr = Set##attr; \
parent_clear##attr = plot->Clear##attr; \
plot->Clear##attr = Clear##attr;
SET_PLOT_ACCESSORS(Ink)
SET_PLOT_ACCESSORS(Tol)
SET_PLOT_ACCESSORS(Invisible)
SET_PLOT_ACCESSORS(TickAll)
SET_PLOT_ACCESSORS(ForceExterior)
SET_PLOT_ACCESSORS(Border)
SET_PLOT_ACCESSORS(Clip)
SET_PLOT_ACCESSORS(ClipOp)
SET_PLOT_ACCESSORS(Escape)
SET_PLOT_ACCESSORS(Grid)
SET_PLOT_ACCESSORS(Labelling)
SET_PLOT_ACCESSORS(Style)
SET_PLOT_ACCESSORS(Font)
SET_PLOT_ACCESSORS(Colour)
SET_PLOT_ACCESSORS(Width)
SET_PLOT_ACCESSORS(Size)
#undef SET_PLOT_ACCESSORS
/* Store replacement pointers for methods which will be over-ridden by new
member functions implemented here. */
plot->Grid = Grid;
plot->Text = Text;
plot->SetTickValues = SetTickValues;
plot->PolyCurve = PolyCurve;
plot->Border = Border;
plot->BoundingBox = BoundingBox;
plot->GetGrfContext = GetGrfContext;
plot->GrfPop = GrfPop;
plot->GrfPush = GrfPush;
plot->GrfSet = GrfSet;
plot->GridLine = GridLine;
plot->Mark = Mark;
plot->Curve = Curve;
plot->GenCurve = GenCurve;
plot->Clip = Clip;
mapping->Transform = Transform;
/* Declare the copy constructor, destructor and class dump
function. */
astSetCopy( vtab, Copy );
astSetDelete( vtab, Delete );
astSetDump( vtab, Dump, "Plot3D", "Provide facilities for 3D graphical output" );
/* Create a FrameSet that can be used when calling astCast to indicate
the class to which we want to cast. */
LOCK_MUTEX3
if( !dummy_frameset ) {
dummy_frame = astFrame( 1, " ", status );
dummy_frameset = astFrameSet( dummy_frame, " ", status );
dummy_frame = astAnnul( dummy_frame );
}
UNLOCK_MUTEX3
/* If we have just initialised the vtab for the current class, indicate
that the vtab is now initialised, and store a pointer to the class
identifier in the base "object" level of the vtab. */
if( vtab == &class_vtab ) {
class_init = 1;
astSetVtabClassIdentifier( vtab, &(vtab->id) );
}
}
#if defined(THREAD_SAFE)
static int ManageLock( AstObject *this_object, int mode, int extra,
AstObject **fail, int *status ) {
/*
* Name:
* ManageLock
* Purpose:
* Manage the thread lock on an Object.
* Type:
* Private function.
* Synopsis:
* #include "object.h"
* AstObject *ManageLock( AstObject *this, int mode, int extra,
* AstObject **fail, int *status )
* Class Membership:
* CmpMap member function (over-rides the astManageLock protected
* method inherited from the parent class).
* Description:
* This function manages the thread lock on the supplied Object. The
* lock can be locked, unlocked or checked by this function as
* deteremined by parameter "mode". See astLock for details of the way
* these locks are used.
* Parameters:
* this
* Pointer to the Object.
* mode
* An integer flag indicating what the function should do:
*
* AST__LOCK: Lock the Object for exclusive use by the calling
* thread. The "extra" value indicates what should be done if the
* Object is already locked (wait or report an error - see astLock).
*
* AST__UNLOCK: Unlock the Object for use by other threads.
*
* AST__CHECKLOCK: Check that the object is locked for use by the
* calling thread (report an error if not).
* extra
* Extra mode-specific information.
* fail
* If a non-zero function value is returned, a pointer to the
* Object that caused the failure is returned at "*fail". This may
* be "this" or it may be an Object contained within "this". Note,
* the Object's reference count is not incremented, and so the
* returned pointer should not be annulled. A NULL pointer is
* returned if this function returns a value of zero.
* status
* Pointer to the inherited status variable.
* Returned Value:
* A local status value:
* 0 - Success
* 1 - Could not lock or unlock the object because it was already
* locked by another thread.
* 2 - Failed to lock a POSIX mutex
* 3 - Failed to unlock a POSIX mutex
* 4 - Bad "mode" value supplied.
* Notes:
* - This function attempts to execute even if an error has already
* occurred.
*/
/* Local Variables: */
AstPlot3D *this; /* Pointer to Plot3D structure */
int result; /* Returned status value */
/* Initialise */
result = 0;
/* Check the supplied pointer is not NULL. */
if( !this_object ) return result;
/* Obtain a pointers to the Plot3D structure. */
this = (AstPlot3D *) this_object;
/* Invoke the ManageLock method inherited from the parent class. */
if( !result ) result = (*parent_managelock)( this_object, mode, extra,
fail, status );
/* Invoke the astManageLock method on any Objects contained within
the supplied Object. */
if( !result ) result = astManageLock( this->plotxy, mode, extra, fail );
if( !result ) result = astManageLock( this->plotxz, mode, extra, fail );
if( !result ) result = astManageLock( this->plotyz, mode, extra, fail );
return result;
}
#endif
static void Mark( AstPlot *this_plot, int nmark, int ncoord, int indim,
const double *in, int type, int *status ){
/*
* Name:
* Mark
* Purpose:
* Draw a set of markers for a Plot3D.
* Type:
* Private member function.
* Synopsis:
* #include "plot3d.h"
* void Mark( AstPlot *this, int nmark, int ncoord, int indim,
* const double *in, int type, int *status )
* Class Membership:
* Plot3d member function (overrides the astMark method inherited form
* the parent Plot class).
* Description:
* This function draws a set of markers (symbols) at positions
* specified in the physical coordinate system of a Plot3D. The
* positions are transformed into graphical coordinates to
* determine where the markers should appear within the plotting
* area.
*
* They are drawn on a 2D plane that has a normal vector given by the
* current value of the Plot3D's "Norm" attribute.
* Parameters:
* this
* Pointer to the Plot3D.
* nmark
* The number of markers to draw. This may be zero, in which
* case nothing will be drawn.
* ncoord
* The number of coordinates being supplied for each mark
* (i.e. the number of axes in the current Frame of the Plot, as
* given by its Naxes attribute).
* indim
* The number of elements along the second dimension of the "in"
* array (which contains the marker coordinates). This value is
* required so that the coordinate values can be correctly
* located if they do not entirely fill this array. The value
* given should not be less than "nmark".
* in
* The address of the first element of a 2-dimensional array of
* shape "[ncoord][indim]" giving the
* physical coordinates of the points where markers are to be
* drawn. These should be stored such that the value of
* coordinate number "coord" for input mark number "mark" is
* found in element "in[coord][mark]".
* type
* A value specifying the type (e.g. shape) of marker to be
* drawn. The set of values which may be used (and the shapes
* that will result) is determined by the underlying graphics
* system.
* status
* Pointer to the inherited status variable.
* Notes:
* - Markers are not drawn at positions which have any coordinate
* equal to the value AST__BAD (or where the transformation into
* graphical coordinates yields coordinates containing the value
* AST__BAD).
* - An error results if the base Frame of the Plot is not 3-dimensional.
* - An error also results if the transformation between the
* current and base Frames of the Plot is not defined (i.e. the
* Plot's TranInverse attribute is zero).
*/
/* Local Variables: */
AstMapping *mapping; /* Pointer to graphics->physical mapping */
AstPlot3D *this; /* Pointer to the Plot3D structure */
AstPointSet *pset1; /* PointSet holding physical positions */
AstPointSet *pset2; /* PointSet holding graphics positions */
const char *class; /* Object class */
const char *method; /* Current method */
const double **ptr1; /* Pointer to physical positions */
double **ptr2; /* Pointer to graphics positions */
double *xpd; /* Pointer to next double precision x value */
double *ypd; /* Pointer to next double precision y value */
double *zpd; /* Pointer to next double precision z value */
float *x; /* Pointer to single precision x values */
float *xpf; /* Pointer to next single precision x value */
float *y; /* Pointer to single precision y values */
float *ypf; /* Pointer to next single precision y value */
float *z; /* Pointer to single precision z values */
float *zpf; /* Pointer to next single precision z value */
float norm[ 3 ]; /* Single precision normal vector */
int axis; /* Axis index */
int i; /* Loop count */
int naxes; /* No. of axes in the base Frame */
int nn; /* Number of good marker positions */
/* Check the global error status. */
if ( !astOK ) return;
/* Get a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_plot;
/* Store the current method and class for inclusion in error messages
generated by lower level functions. */
method = "astMark";
class = astClass( this );
/* Check the base Frame of the Plot is 3-D. */
naxes = astGetNin( this );
if( naxes != 3 && astOK ){
astError( AST__NAXIN, "%s(%s): Number of axes (%d) in the base "
"Frame of the supplied %s is invalid - this number should "
"be 3.", status, method, class, naxes, class );
}
/* Also validate the input array dimension argument. */
if ( astOK && ( indim < nmark ) ) {
astError( AST__DIMIN, "%s(%s): The input array dimension value "
"(%d) is invalid.", status, method, class, indim );
astError( AST__DIMIN, "This should not be less than the number of "
"markers being drawn (%d).", status, nmark );
}
/* Establish the correct graphical attributes as defined by attributes
with the supplied Plot. */
astGrfAttrs( this, AST__MARKS_ID, 1, GRF__MARK, method, class );
/* Create a PointSet to hold the supplied physical coordinates. */
pset1 = astPointSet( nmark, ncoord, "", status );
/* Allocate memory to hold pointers to the first value on each axis. */
ptr1 = (const double **) astMalloc( sizeof( const double * )*
(size_t)( ncoord ));
/* Check the pointer can be used, then store pointers to the first value
on each axis. */
if( astOK ){
for( axis = 0; axis < ncoord; axis++ ){
ptr1[ axis ] = in + axis*indim;
}
}
/* Store these pointers in the PointSet. */
astSetPoints( pset1, (double **) ptr1 );
/* Transform the supplied data from the current frame (i.e. physical
coordinates) to the base frame (i.e. graphics coordinates) using
the inverse Mapping defined by the Plot. */
mapping = astGetMapping( this, AST__BASE, AST__CURRENT );
pset2 = astTransform( mapping, pset1, 0, NULL );
mapping = astAnnul( mapping );
/* Get pointers to the graphics coordinates. */
ptr2 = astGetPoints( pset2 );
/* Allocate memory to hold single precision versions of the graphics
coordinates. */
x = (float *) astMalloc( sizeof( float )*(size_t) nmark );
y = (float *) astMalloc( sizeof( float )*(size_t) nmark );
z = (float *) astMalloc( sizeof( float )*(size_t) nmark );
/* Check the pointers can be used. */
if( astOK ){
/* Store pointers to the next single and double precision x, y and z
values. */
xpf = x;
ypf = y;
zpf = z;
xpd = ptr2[ 0 ];
ypd = ptr2[ 1 ];
zpd = ptr2[ 2 ];
/* Convert the double precision values to single precision, rejecting
any bad marker positions. */
nn = 0;
for( i = 0; i < nmark; i++ ){
if( *xpd != AST__BAD && *ypd != AST__BAD && *zpd != AST__BAD ){
nn++;
*(xpf++) = (float) *(xpd++);
*(ypf++) = (float) *(ypd++);
*(zpf++) = (float) *(zpd++);
} else {
xpd++;
ypd++;
zpd++;
}
}
/* If the nornmal vector has non-zero length, draw the remaining markers. */
norm[ 0 ] = (float) astGetNorm( this, 0 );
norm[ 1 ] = (float) astGetNorm( this, 1 );
norm[ 2 ] = (float) astGetNorm( this, 2 );
if( norm[ 0 ] != 0.0 || norm[ 1 ] != 0.0 || norm[ 2 ] != 0.0 ){
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
if( !astG3DMark( nn, x, y, z, type, norm ) ) {
astError( AST__GRFER, "%s(%s): Graphics error in astG3DMark. ", status,
method, class );
}
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
} else if( astOK ) {
astError( AST__ATTIN, "%s(%s): The vector specified by the Norm "
"attribute has zero length.", status, method, class );
}
}
/* Free the memory used to store single precision graphics coordinates. */
x = (float *) astFree( (void *) x );
y = (float *) astFree( (void *) y );
z = (float *) astFree( (void *) z );
/* Annul the PointSets. */
pset1 = astAnnul( pset1 );
pset2 = astAnnul( pset2 );
/* Free the memory holding the pointers to the first value on each axis. */
ptr1 = (const double **) astFree( (void *) ptr1 );
/* Re-establish the original graphical attributes. */
astGrfAttrs( this, AST__MARKS_ID, 0, GRF__MARK, method, class );
/* Return */
return;
}
static int Plot3DAttr( AstKeyMap *grfconID, int attr, double value,
double *old_value, int prim ){
/*
* Name:
* Plot3DAttr
* Purpose:
* Get or set the value of a 3D grf attribute.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DAttr( AstKeyMap *grfconID, int attr, double value,
* double *old_value, int prim )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* get or set the current value of a specified graphics attribute. It
* forwards the call to the grf3D module being used by this Plot3D. It
* should be registered with each of the 2D Plots using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is used to identify which of
* the three Plots is calling this function.
* attr
* An integer value identifying the required attribute. This should
* be one of the symbolic values defined in grf.h.
* value
* A new value to store for the attribute. If this is AST__BAD
* no value is stored.
* old_value
* A pointer to a double in which to return the attribute value.
* If this is NULL, no value is returned.
* prim
* The sort of graphics primitive to be drawn with the new attribute.
* Identified by one of the values defined in grf.h.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
int result;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return 0;
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* Use the function in the external Grf3D module, selected at link-time
using ast_link options. Note, attribute values are the same for each
of the three Plot. */
result = astG3DAttr( attr, value, old_value, prim );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
/* Return the result. */
return result;
}
static int Plot3DCap( AstKeyMap *grfconID, int cap, int value ){
/*
* Name:
* Plot3DCap
* Purpose:
* Determine if the 3D grf module has a given capability.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DCap( AstKeyMap *grfconID, int cap, int value )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* determine if a given graphics capability is available. It forwards
* the call to the grf3D module being used by this Plot3D. It should be
* registered with each of the 2D Plots using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* cap
* The capability being inquired about. This will be one of the
* following constants defined in grf.h: GRF__SCALES, GRF__MJUST,
* GRF__ESC,
* value
* The use of this parameter depends on the value of "cap" as
* described in the documentation for the astGrfSet function in the
* Plot class.
* Returned Value:
* The value returned by the function depends on the value of "cap"
* as described in the astGrfSet documentation. Zero is returned if
* the supplied capability is not recognised.
*/
/* Local Variables: */
int result;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return 0;
/* The astGScales function is implemented by code within the Plot3D class
(not within the grf3D module). The Plot3D class assumes all axes are
equally scaled. */
if( cap == GRF__SCALES ) {
result = 1;
/* All grf3D modules are assumed to support "M" justification. */
} else if( cap == GRF__MJUST ) {
result = 1;
/* Forward all other capability requests to the grf3D module. */
} else {
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
result = astG3DCap( cap, value );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
}
/* Return the result. */
return result;
}
static int Plot3DFlush( AstKeyMap *grfconID ){
/*
* Name:
* Plot3DFlush
* Purpose:
* Flush any buffered graphical output.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DFlush( AstKeyMap *grfconID )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* ensure that the display device is up-to-date by flushing any pending
* graphics to the output device. It forwards the call to the grf3D module
* being used by this Plot3D. It should be registered with each of the
* 2D Plots using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
int result;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return 0;
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* Use the function in the external Grf3D module, selected at link-time
using ast_link options. */
result = astG3DFlush();
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
/* Return the result. */
return result;
}
static int Plot3DLine( AstKeyMap *grfconID, int n, const float *x, const float *y ){
/*
* Name:
* Plot3DLine
* Purpose:
* Draw a polyline on a 2D surface.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DLine( AstKeyMap *grfconID, int n, const float *x,
* const float *y )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* draw a polyline. It forwards the call to the grf3D module being used
* by this Plot3D. It should be registered with each of the 2D Plots
* using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* n
* The number of positions to be joined together.
* x
* A pointer to an array holding the "n" x values.
* y
* A pointer to an array holding the "n" y values.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
AstKeyMap *grfcon;
double gcon;
float *work;
float *x3d = NULL;
float *y3d = NULL;
float *z3d = NULL;
int i;
int plane;
int result = 0;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return result;
/* Get a genuine pointer from the supplied grfcon identifier. */
grfcon = astMakePointer( grfconID );
/* Report an error if no grfcon object was supplied. */
if( !grfcon ) {
astError( AST__INTER, "astG3DLine(Plot3D): No grfcon Object supplied "
"(internal AST programming error)." , status);
/* If a grfcon Object was supplied, get the graphics box array out of it. */
} else if( !astMapGet0D( grfcon, "Gcon", &gcon ) ) {
astError( AST__INTER, "astG3DLine(Plot3D): No \"Gcon\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* Also get the plane index out of it. */
} else if( !astMapGet0I( grfcon, "Plane", &plane ) ) {
astError( AST__INTER, "astG3DLine(Plot3D): No \"Plane\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
}
/* Allocate memory to hold the "n" values for the missing coordinate. */
work = astMalloc( sizeof( float )*(size_t) n );
if( work ) {
/* Set up pointers to the x, y and z arrays in the 3D graphics system.
Fill the missing array with suitable values (the constant value of
the third axis on the plane being drawn). */
if( plane == XY ) {
x3d = (float *) x;
y3d = (float *) y;
z3d = work;
for( i = 0; i < n; i++ ) z3d[ i ] = gcon;
} else if( plane == XZ ) {
x3d = (float *) x;
y3d = work;
z3d = (float *) y;
for( i = 0; i < n; i++ ) y3d[ i ] = gcon;
} else if( plane == YZ ) {
x3d = work;
y3d = (float *) x;
z3d = (float *) y;
for( i = 0; i < n; i++ ) x3d[ i ] = gcon;
} else {
astError( AST__INTER, "astG3DLine(Plot3D): Illegal plane "
"identifier %d supplied (internal AST programming "
"error).", status, plane );
}
/* If ok, draw the lines in the 3D graphics coordinate space. */
if( x3d ) {
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* Draw the line */
result = astG3DLine( n, x3d, y3d, z3d );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
}
}
/* Free resources. */
work = astFree( work );
/* Return the result. */
return result;
}
static int Plot3DMark( AstKeyMap *grfconID, int n, const float *x,
const float *y, int type ){
/*
* Name:
* Plot3DMark
* Purpose:
* Draw a set of markers.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DMark( AstKeyMap *grfconID, int n, const float *x,
* const float *y, int type )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* draw a set of markers. It forwards the call to the grf3D module being
* used by this Plot3D. It should be registered with each of the 2D Plots
* using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* n
* The number of markers to draw.
* x
* A pointer to an array holding the "n" x values.
* y
* A pointer to an array holding the "n" y values.
* type
* An integer which can be used to indicate the type of marker symbol
* required.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
AstKeyMap *grfcon;
double gcon;
float *work;
float *x3d = NULL;
float *y3d = NULL;
float *z3d = NULL;
float norm[ 3 ];
int i;
int plane;
int rc;
int result = 0;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return result;
/* Get a genuine pointer from the supplied grfcon identifier. */
grfcon = astMakePointer( grfconID );
/* Report an error if no grfcon object was supplied. */
if( !grfcon ) {
astError( AST__INTER, "astG3DMark(Plot3D): No grfcon Object supplied "
"(internal AST programming error)." , status);
/* If a grfcon Object was supplied, get the graphics box array out of it. */
} else if( !astMapGet0D( grfcon, "Gcon", &gcon ) ) {
astError( AST__INTER, "astG3DMark(Plot3D): No \"Gcon\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* If a grfcon Object was supplied, get the RootCorner value out of it. */
} else if( !astMapGet0I( grfcon, "RootCorner", &rc ) ) {
astError( AST__INTER, "astG3DLine(Plot3D): No \"RootCornern\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* Also get the plane index out of it. */
} else if( !astMapGet0I( grfcon, "Plane", &plane ) ) {
astError( AST__INTER, "astG3DMark(Plot3D): No \"Plane\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
}
/* Allocate memory to hold the "n" values for the missing coordinate. */
work = astMalloc( sizeof( float )*(size_t) n );
if( work ) {
/* Set up pointers to the x, y and z arrays in the 3D graphics system.
Fill the missing array with suitable values (the constant value of
the third axis on the plane being drawn). Set the normal vector for
the markers so that they are drawn in the plane described by the Plot.*/
if( plane == XY ) {
x3d = (float *) x;
y3d = (float *) y;
z3d = work;
for( i = 0; i < n; i++ ) z3d[ i ] = gcon;
norm[ 0 ] = 0;
norm[ 1 ] = 0;
norm[ 2 ] = ( rc & 4 ) ? 1 : -1;
} else if( plane == XZ ) {
x3d = (float *) x;
y3d = work;
z3d = (float *) y;
for( i = 0; i < n; i++ ) y3d[ i ] = gcon;
norm[ 0 ] = 0;
norm[ 1 ] = ( rc & 2 ) ? 1 : -1;
norm[ 2 ] = 0;
} else if( plane == YZ ) {
x3d = work;
y3d = (float *) x;
z3d = (float *) y;
for( i = 0; i < n; i++ ) x3d[ i ] = gcon;
norm[ 0 ] = ( rc & 1 ) ? 1 : -1;
norm[ 1 ] = 0;
norm[ 2 ] = 0;
} else {
astError( AST__INTER, "astG3DMark(Plot3D): Illegal plane "
"identifier %d supplied (internal AST programming "
"error).", status, plane );
}
/* If ok, draw the markers in the 3D graphics coordinate space. */
if( x3d ) {
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* Draw the markers */
result = astG3DMark( n, x3d, y3d, z3d, type, norm );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
}
}
/* Free resources. */
work = astFree( work );
/* Return the result. */
return result;
}
static int Plot3DQch( AstKeyMap *grfconID, float *chv, float *chh ){
/*
* Name:
* Plot3DQch
* Purpose:
* Get the current text size.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DQch( AstKeyMap *grfconID, float *chv, float *chh )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* get the current text size. It forwards the call to the grf3D module
* being used by this Plot3D. It should be registered with each of the
* 2D Plots using astGrfSet.
*
* The grf3D module assumes that the 3D graphics axes are equally
* scaled and therefore the text height does not depend on the text
* orientation. Therefore, "chv" and "chh" are returned holding the
* same value.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* chv
* A pointer to the float which is to receive the height of
* characters drawn with a vertical baseline in the 2D Plot. This
* will be an increment in the 2D X axis.
* chh
* A pointer to the float which is to receive the height of
* characters drawn with a horizontal baseline in the 2D Plot. This
* will be an increment in the 2D Y axis.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
int result;
float ch;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return 0;
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* Use the function in the external Grf3D module, selected at link-time
using ast_link options. Note, text height is the same for each
of the three Plot. */
result = astG3DQch( &ch );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
/* Store the value in both the returned values. */
*chv = ch;
*chh = ch;
/* Return the error flag. */
return result;
}
static int Plot3DScales( AstKeyMap *grfconID, float *alpha, float *beta ){
/*
* Name:
* Plot3DScales
* Purpose:
* Get the 2D axis scales.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DScales( AstKeyMap *grfconID, float *alpha, float *beta )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* get the relative scales of the 2D axes. Since the grf3D module
* assumes that all graphics axes are equally scaled, it just returns 1.0
* for alpha and beta.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* alpha
* A pointer to the float which is to receive the scale for the X
* axis
* beta
* A pointer to the float which is to receive the scale for the Y
* axis
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
*alpha = 1.0;
*beta = 1.0;
return 1;
}
static int Plot3DText( AstKeyMap *grfconID, const char *text, float x, float y,
const char *just, float upx, float upy ){
/*
* Name:
* Plot3DText
* Purpose:
* Draw a text string.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DText( AstKeyMap *grfconID, const char *text, float x, float y,
* const char *just, float upx, float upy )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* draw a text string. It forwards the call to the grf3D module being
* used by this Plot3D. It should be registered with each of the 2D Plots
* using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* text
* Pointer to a null-terminated character string to be displayed.
* x
* The reference x coordinate.
* y
* The reference y coordinate.
* just
* A character string which specifies the location within the
* text string which is to be placed at the reference position
* given by x and y.
* upx
* The x component of the up-vector for the text.
* upy
* The y component of the up-vector for the text.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
AstKeyMap *grfcon;
double gcon;
float norm[ 3 ];
float ref[ 3 ];
float up[ 3 ];
int plane;
int rc;
int result = 0;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return result;
/* Get a genuine pointer from the supplied grfcon identifier. */
grfcon = astMakePointer( grfconID );
/* Report an error if no grfcon object was supplied. */
if( !grfcon ) {
astError( AST__INTER, "astG3DText(Plot3D): No grfcon Object supplied "
"(internal AST programming error)." , status);
/* If a grfcon Object was supplied, get the graphics box array out of it. */
} else if( !astMapGet0D( grfcon, "Gcon", &gcon ) ) {
astError( AST__INTER, "astG3DText(Plot3D): No \"Gcon\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* If a grfcon Object was supplied, get the RootCorner value out of it. */
} else if( !astMapGet0I( grfcon, "RootCorner", &rc ) ) {
astError( AST__INTER, "astG3DLine(Plot3D): No \"RootCornern\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* Also get the plane index out of it. */
} else if( !astMapGet0I( grfcon, "Plane", &plane ) ) {
astError( AST__INTER, "astG3DText(Plot3D): No \"Plane\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* If OK, draw the text. */
} else {
/* Set up the reference, up and normal vectors so that the text appears
on the required plane. */
if( plane == XY ) {
ref[ 0 ] = x;
ref[ 1 ] = y;
ref[ 2 ] = gcon;
norm[ 0 ] = 0;
norm[ 1 ] = 0;
norm[ 2 ] = ( rc & 4 ) ? 1 : -1;
up[ 0 ] = upx;
up[ 1 ] = upy;
up[ 2 ] = 0;
} else if( plane == XZ ) {
ref[ 0 ] = x;
ref[ 1 ] = gcon;
ref[ 2 ] = y;
norm[ 0 ] = 0;
norm[ 1 ] = ( rc & 2 ) ? 1 : -1;
norm[ 2 ] = 0;
up[ 0 ] = upx;
up[ 1 ] = 0;
up[ 2 ] = upy;
} else if( plane == YZ ) {
ref[ 0 ] = gcon;
ref[ 1 ] = x;
ref[ 2 ] = y;
norm[ 0 ] = ( rc & 1 ) ? 1 : -1;
norm[ 1 ] = 0;
norm[ 2 ] = 0;
up[ 0 ] = 0;
up[ 1 ] = upx;
up[ 2 ] = upy;
} else {
astError( AST__INTER, "astG3DText(Plot3D): Illegal plane "
"identifier %d supplied (internal AST programming "
"error).", status, plane );
}
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* If ok, draw the markers in the 3D graphics coordinate space. */
if( astOK ) result = astG3DText( text, ref, just, up, norm );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
}
/* Return the result. */
return result;
}
static int Plot3DTxExt( AstKeyMap *grfconID, const char *text, float x, float y,
const char *just, float upx, float upy, float *xb,
float *yb ){
/*
* Name:
* Plot3DTxExt
* Purpose:
* Determine the plotted extent of a text string.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int Plot3DTxExt( AstKeyMap *grfconID, const char *text, float x,
* float y, const char *just, float upx, float upy,
* float *xb, float *yb )
* Class Membership:
* Plot3D member function.
* Description:
* This function is called by one of the three encapsulated 2D Plots to
* determine the extent a string would have if plotted using Plot3DText.
* It forwards the call to the grf3D module being used by this Plot3D. It
* should be registered with each of the 2D Plots using astGrfSet.
* Parameters:
* grfconID
* The Plot's GrfContext KeyMap. This is
* used to identify which of the three Plots is calling this function.
* text
* Pointer to a null-terminated character string to be displayed.
* x
* The reference x coordinate.
* y
* The reference y coordinate.
* just
* A character string which specifies the location within the
* text string which is to be placed at the reference position
* given by x and y.
* upx
* The x component of the up-vector for the text.
* upy
* The y component of the up-vector for the text.
* xb
* An array of 4 elements in which to return the x coordinate of
* each corner of the bounding box.
* yb
* An array of 4 elements in which to return the y coordinate of
* each corner of the bounding box.
* Returned Value:
* An integer value of 0 is returned if an error occurs, and 1 otherwise.
*/
/* Local Variables: */
AstKeyMap *grfcon;
double gcon;
float *xb3d = NULL;
float *yb3d = NULL;
float *zb3d = NULL;
float bl[ 3 ];
float norm[ 3 ];
float ref[ 3 ];
float unused[ 4 ];
float up[ 3 ];
int plane;
int rc;
int result = 0;
int *status;
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the inherited status. */
if( !astOK ) return result;
/* Get a genuine pointer from the supplied grfcon identifier. */
grfcon = astMakePointer( grfconID );
/* Report an error if no grfcon object was supplied. */
if( !grfcon ) {
astError( AST__INTER, "astG3DTxExt(Plot3D): No grfcon Object supplied "
"(internal AST programming error)." , status);
/* If a grfcon Object was supplied, get the graphics box array out of it. */
} else if( !astMapGet0D( grfcon, "Gcon", &gcon ) ) {
astError( AST__INTER, "astG3DTxExt(Plot3D): No \"Gcon\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* If a grfcon Object was supplied, get the RootCorner value out of it. */
} else if( !astMapGet0I( grfcon, "RootCorner", &rc ) ) {
astError( AST__INTER, "astG3DLine(Plot3D): No \"RootCornern\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* Also get the plane index out of it. */
} else if( !astMapGet0I( grfcon, "Plane", &plane ) ) {
astError( AST__INTER, "astG3DTxExt(Plot3D): No \"Plane\" key found "
"in the supplied grfcon Object (internal AST programming "
"error)." , status);
/* If OK, get the extent of the text. */
} else {
/* Set up the reference, up and normal vectors so that the text appears
on the required plane. */
if( plane == XY ) {
ref[ 0 ] = x;
ref[ 1 ] = y;
ref[ 2 ] = gcon;
norm[ 0 ] = 0;
norm[ 1 ] = 0;
norm[ 2 ] = ( rc & 4 ) ? 1 : -1;
up[ 0 ] = upx;
up[ 1 ] = upy;
up[ 2 ] = 0;
xb3d = xb;
yb3d = yb;
zb3d = unused;
} else if( plane == XZ ) {
ref[ 0 ] = x;
ref[ 1 ] = gcon;
ref[ 2 ] = y;
norm[ 0 ] = 0;
norm[ 1 ] = ( rc & 2 ) ? 1 : -1;
norm[ 2 ] = 0;
up[ 0 ] = upx;
up[ 1 ] = 0;
up[ 2 ] = upy;
xb3d = xb;
yb3d = unused;
zb3d = yb;
} else if( plane == YZ ) {
ref[ 0 ] = gcon;
ref[ 1 ] = x;
ref[ 2 ] = y;
norm[ 0 ] = ( rc & 1 ) ? 1 : -1;
norm[ 1 ] = 0;
norm[ 2 ] = 0;
up[ 0 ] = 0;
up[ 1 ] = upx;
up[ 2 ] = upy;
xb3d = unused;
yb3d = xb;
zb3d = yb;
} else {
astError( AST__INTER, "astG3DTxExt(Plot3D): Illegal plane "
"identifier %d supplied (internal AST programming "
"error).", status, plane );
}
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
/* If ok, get the extent of the text. */
if( astOK ) result = astG3DTxExt( text, ref, just, up, norm, xb3d, yb3d,
zb3d, bl );
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
}
/* Return the result. */
return result;
}
static void PolyCurve( AstPlot *this, int npoint, int ncoord, int indim,
const double *in, int *status ){
/*
* Name:
* PolyCurve
* Purpose:
* Draw a series of connected geodesic curves.
* Type:
* Private member function.
* Synopsis:
* #include "plot3d.h"
* void PolyCurve( AstPlot *this, int npoint, int ncoord, int indim,
* const double *in, int *status )
* Class Membership:
* Plot method (overrides the astPolyCurve method inherited form the
* Plot class)
* Description:
* This function joins a series of points specified in the physical
* coordinate system of a Plot by drawing a sequence of geodesic
* curves. It is equivalent to making repeated use of the astCurve
* function (q.v.), except that astPolyCurve will generally be more
* efficient when drawing many geodesic curves end-to-end. A
* typical application of this might be in drawing contour lines.
*
* As with astCurve, full account is taken of the Mapping between
* physical and graphical coordinate systems. This includes any
* discontinuities and clipping established using astClip.
* Parameters:
* this
* Pointer to the Plot.
* npoint
* The number of points between which geodesic curves are to be drawn.
* ncoord
* The number of coordinates being supplied for each point (i.e.
* the number of axes in the current Frame of the Plot, as given
* by its Naxes attribute).
* indim
* The number of elements along the second dimension of the "in"
* array (which contains the input coordinates). This value is
* required so that the coordinate values can be correctly
* located if they do not entirely fill this array. The value
* given should not be less than "npoint".
* in
* The address of the first element in a 2-dimensional array of shape
* "[ncoord][indim]" giving the
* physical coordinates of the points which are to be joined in
* sequence by geodesic curves. These should be stored such that
* the value of coordinate number "coord" for point number
* "point" is found in element "in[coord][point]".
* status
* Pointer to the inherited status variable.
* Notes:
* - No curve is drawn on either side of any point which has any
* coordinate equal to the value AST__BAD.
* - An error results if the base Frame of the Plot is not
* 2-dimensional.
* - An error also results if the transformation between the
* current and base Frames of the Plot is not defined (i.e. the
* Plot's TranInverse attribute is zero).
*/
/* Check the global error status. */
if ( !astOK ) return;
astError( AST__INTER, "astPolyCurve(%s): The astPolyCurve "
"method cannot be used with a %s (programming error).", status,
astGetClass( this ), astGetClass( this ) );
}
static void RemoveFrame( AstFrameSet *this_fset, int iframe, int *status ) {
/*
* Name:
* RemoveFrame
* Purpose:
* Remove a Frame from a Plot3D.
* Type:
* Public virtual function.
* Synopsis:
* #include "plot.h"
* void RemoveFrame( AstFrameSet *this_fset, int iframe, int *status )
* Class Membership:
* Plot3D member function (over-rides the astRemoveFrame public
* method inherited from the Plot class).
* Description:
* This function removes a Frame from a Plot3D. All other Frames
* in the Plot3D have their indices re-numbered from one (if
* necessary), but are otherwise unchanged.
*
* If the index of the original base Frame is changed, the index value
* stored in the Plot3D is updated. If the base Frame itself is
* removed, an error is reported.
* Parameters:
* this_fset
* Pointer to the FrameSet component of the Plot3D.
* iframe
* The index within the Plot3D of the Frame to be removed.
* This value should lie in the range from 1 to the number of
* Frames in the Plot3D (as given by its Nframe attribute).
* status
* Pointer to the inherited status variable.
*/
/* Local Variables: */
AstPlot3D *this; /* Pointer to Plot3D structure */
int ifrm; /* Validated frame index */
/* Check the global error status. */
if ( !astOK ) return;
/* Obtain a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_fset;
/* Validate the frame index. This translated AST__BASE and AST__CURRENT
into actual Frame indices. */
ifrm = astValidateFrameIndex( this_fset, iframe, "astRemoveFrame" );
/* Report an error if an attempt is made to delete the Frame that defines
the mapping onto the screen (the original base Frame in the FrameSet
supplied when the Plot3D was constructed). */
if( ifrm == this->pix_frame ){
astError( AST__PXFRRM, "astRemoveFrame(%s): Cannot delete Frame "
"number %d from the supplied %s since it is the Frame "
"that defines the mapping onto the graphics plane.", status,
astGetClass( this ), iframe, astGetClass( this ) );
/* Otherwise, invoke the parent astRemoveFrame method to remove the Frame. */
} else {
(*parent_removeframe)( this_fset, iframe, status );
/* If the index of the removed Frame is smaller than the original base Frame
index, then decrement the original base Frame index so that the same Frame
will be used in future. */
if( astOK ){
if( ifrm < this->pix_frame ) (this->pix_frame)--;
}
}
}
static int RootCornerInt( const char *rootcorner, int *status ){
/*
* Name:
* RootCornerInt
* Purpose:
* Convert a RootCorner string to an integer.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int RootCornerInt( const char *rootcorner, int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function converts a RootCorner string to an integer.
* Parameters:
* rootcorner
* The string value to convert. Should be 3 characters long
* and contain nothing but "U" or "L" (upper or lower case).
* status
* Pointer to the inherited status variable.
* Returned Value:
* The integer value that is is the protected equivalent of the
* supplied string. A negative value is returned if an error has
* already occurred, of the supplied string is not legal.
*/
/* Local Variables: */
int result;
/* Initialise */
result = -1;
/* Check the inherited status. */
if( !astOK ) return result;
/* Compare thr supplied value with every legal value. */
if( astChrMatch( rootcorner, "LLL" ) ) {
result = LLL;
} else if( astChrMatch( rootcorner, "ULL" ) ) {
result = ULL;
} else if( astChrMatch( rootcorner, "LUL" ) ) {
result = LUL;
} else if( astChrMatch( rootcorner, "UUL" ) ) {
result = UUL;
} else if( astChrMatch( rootcorner, "LLU" ) ) {
result = LLU;
} else if( astChrMatch( rootcorner, "ULU" ) ) {
result = ULU;
} else if( astChrMatch( rootcorner, "LUU" ) ) {
result = LUU;
} else if( astChrMatch( rootcorner, "UUU" ) ) {
result = UUU;
}
/* Return the result. */
return result;
}
static const char *RootCornerString( int rootcorner, int *status ){
/*
* Name:
* RootCornerString
* Purpose:
* Convert a RootCorner integer to a string.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* const char *RootCornerString( int rootcorner, int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function converts a RootCorner integer to a string.
* Parameters:
* rootcorner
* The integer value to convert. Should be in the range 0 to 7.
* status
* Pointer to the inherited status variable.
* Returned Value:
* A pointer to a static string that is the public equivalent of the
* supplied integer. A NULL pointer is returned if an error has
* already occurred, of the supplied integer is not legal.
*/
/* Local Variables: */
char *result;
/* Initialise */
result = NULL;
/* Check the inherited status. */
if( !astOK ) return result;
/* Compare thr supplied value with every legal value. */
if( rootcorner == LLL ) {
result = "LLL";
} else if( rootcorner == ULL ) {
result = "ULL";
} else if( rootcorner == LUL ) {
result = "LUL";
} else if( rootcorner == UUL ) {
result = "UUL";
} else if( rootcorner == LLU ) {
result = "LLU";
} else if( rootcorner == ULU ) {
result = "ULU";
} else if( rootcorner == LUU ) {
result = "LUU";
} else if( rootcorner == UUU ) {
result = "UUU";
}
/* Return the result. */
return result;
}
static void Set3DGrf( AstPlot3D *this, AstPlot *plot, int plane, int *status ){
/*
* Name:
* Set3DGrf
* Purpose:
* Associate GRF functions with a Plot.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void Set3DGrf( AstPlot3D *this, AstPlot *plot, int plane, int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function registers grf functions defined in this class with
* the supplied Plot, so that, whenever the Plot draws anything, the
* plotting request is caught by this class and converted into an
* appropriate grf3D call.
* Parameters:
* this
* Pointer to the Plot3D.
* plot
* Pointer to the Plot.
* plane
* An integer identifier for the plane within 3D GRAPHICS
* coordinates upon which the supplied Plot should draw.
* status
* Pointer to the inherited status variable.
*/
/* Local Variables: */
AstKeyMap *grfcon;
/* Check the global error status. */
if ( !astOK ) return;
/* Register the plotting functions defined in this class, so that the
plot will call these functions to do its 2D plotting. */
astGrfSet( plot, "Attr", (AstGrfFun) Plot3DAttr );
astGrfSet( plot, "Cap", (AstGrfFun) Plot3DCap );
astGrfSet( plot, "Flush", (AstGrfFun) Plot3DFlush );
astGrfSet( plot, "Line", (AstGrfFun) Plot3DLine );
astGrfSet( plot, "Mark", (AstGrfFun) Plot3DMark );
astGrfSet( plot, "Qch", (AstGrfFun) Plot3DQch );
astGrfSet( plot, "Scales", (AstGrfFun) Plot3DScales );
astGrfSet( plot, "Text", (AstGrfFun) Plot3DText );
astGrfSet( plot, "TxExt", (AstGrfFun) Plot3DTxExt );
/* Ensure that the Plot uses the grf interface registered using
astGrfSet. */
astSetGrf( plot, 1 );
/* When the above functions are called, they need to know which plane
they are drawing on. So we put this information into the GrfContext
KeyMap stored in the Plot. This KeyMap will be passed to the above
drawing functions when they are called from within the Plot class. */
grfcon = astGetGrfContext( plot );
astMapPut0I( grfcon, "Plane", plane, "The 2D plane being drawn on" );
if( plane == XY ) {
astMapPut0D( grfcon, "Gcon", this->gbox[2], "Constant Z value" );
} else if( plane == XZ ) {
astMapPut0D( grfcon, "Gcon", this->gbox[1], "Constant Y value" );
} else {
astMapPut0D( grfcon, "Gcon", this->gbox[0], "Constant X value" );
}
astMapPut0I( grfcon, "RootCorner", astGetRootCorner(this), "The labelled corner" );
grfcon = astAnnul( grfcon );
}
static void SetAttrib( AstObject *this_object, const char *setting, int *status ) {
/*
* Name:
* SetAttrib
* Purpose:
* Set an attribute value for a Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void SetAttrib( AstObject *this, const char *setting, int *status )
* Class Membership:
* Plot3D member function (over-rides the astSetAttrib protected
* method inherited from the Plot class).
* Description:
* This function assigns an attribute value for a Plot3D, the
* attribute and its value being specified by means of a string of
* the form:
*
* "attribute= value "
*
* Here, "attribute" specifies the attribute name and should be in
* lower case with no white space present. The value to the right
* of the "=" should be a suitable textual representation of the
* value to be assigned and this will be interpreted according to
* the attribute's data type. White space surrounding the value is
* only significant for string attributes.
* Parameters:
* this
* Pointer to the Plot3D.
* setting
* Pointer to a null terminated string specifying the new attribute
* value.
* status
* Pointer to the inherited status variable.
*/
/* Local Variables: */
AstPlot *plot; /* Pointer to specific Plot */
AstPlot3D *this; /* Pointer to the Plot3D structure */
char pat[30]; /* Regular expression pattern */
char spec[10]; /* Plane specification */
const char *null = ""; /* Pointer to null string */
const char *psetting; /* Pointer to plot-specific attrib setting */
double dval; /* Floating point attribute value */
int axis; /* Axis index */
int ival; /* Int attribute value */
int len; /* Length of setting string */
int nc; /* Number of characters read by astSscanf */
/* Check the global error status. */
if ( !astOK ) return;
/* Obtain a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_object;
/* Obtain the length of the setting string. */
len = (int) strlen( setting );
/* Test for each recognised attribute in turn, using "astSscanf" to parse
the setting string and extract the attribute value (or an offset to
it in the case of string values). In each case, use the value set
in "nc" to check that the entire string was matched. Once a value
has been obtained, use the appropriate method to set it. */
/* Norm(axis). */
/* ----------- */
if ( nc = 0,
( 2 == astSscanf( setting, "norm(%d)= %lg %n",
&axis, &dval, &nc ) )
&& ( nc >= len ) ) {
astSetNorm( this, axis - 1, dval );
/* RootCorner. */
/* ----------- */
} else if( nc = 0,
( 0 == astSscanf( setting, "rootcorner=%n%*[^\n]%n", &ival, &nc ) )
&& ( nc >= len ) ) {
ival = RootCornerInt( setting + ival, status );
if( astOK && ival < 0 ) {
astError( AST__ATTIN, "astSetAttrib(Plot3D): Unusable value \"%s\" "
"given for attribute RootCorner.", status, setting + ival );
} else {
astSetRootCorner( this, ival );
}
/* ..._XY etc */
/* ---------- */
} else if ( nc = 0,
( 1 == astSscanf( setting, "%*[a-z]_%[xyz]%n", spec, &nc ) ) ) {
if( !strcmp( spec, "xy" ) || !strcmp( spec, "yx" ) ) {
plot = this->plotxy;
} else if( !strcmp( spec, "xz" ) || !strcmp( spec, "zx" ) ) {
plot = this->plotyz;
} else if( !strcmp( spec, "yz" ) || !strcmp( spec, "zy" ) ) {
plot = this->plotxz;
} else {
plot = NULL;
}
if( plot ) {
sprintf( pat, ".*(_%s).*", spec );
psetting = astChrSub( setting, pat, &null, 1 );
astSetAttrib( plot, psetting );
psetting = astFree( (void *) psetting );
} else {
(*parent_setattrib)( this_object, setting, status );
}
/* If the attribute is still not recognised, pass it on to the parent
method for further interpretation. */
} else {
(*parent_setattrib)( this_object, setting, status );
}
/* Undefine macros local to this function. */
#undef MATCH
}
static void SetCurrent( AstFrameSet *this_frameset, int iframe, int *status ) {
/*
* Name:
* SetCurrent
* Purpose:
* Set a value for the Current attribute of a Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int astSetCurrent( AstFrameSet *this, int iframe, int *status )
* Class Membership:
* Plot3D member function (over-rides the public astSetCurrent method
* inherited from the FrameSet class).
* Description:
* This function sets a value for the Current attribute of a
* Plot3D. This attribute is an index that identifies the current
* Frame for the Plot3D.
* Parameters:
* this
* Pointer to the Plot3D.
* iframe
* Value to be set for the Current attribute.
* status
* Pointer to the inherited status variable.
*/
/* Invoke the parent astSetCurrent method. */
(*parent_setcurrent)( this_frameset, iframe, status );
/* Update the three 2D Plots stored in the Plot3D structure so that they
reflect this modified FrameSet. */
UpdatePlots( (AstPlot3D *) this_frameset, status );
}
static void SetPlotAttr( AstPlot *plot, int plane, int label[ 2 ], int *status ){
/*
* Name:
* SetPlotAttr
* Purpose:
* Set the attributes ofr one of the encapsulated Plots.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void SetPlotAttr( AstPlot *plot, int plane, int label[ 2 ], int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function sets the attributes of one of the encapsulated Plots.
* Parameters:
* plot
* Pointer to the Plot to modify.
* plane
* The 3D plane spanned by the 2D plot.
* label
* Array indicating if each WCS axis should be labelled or not.
* status
* Pointer to the inherited status variable.
*/
/* Local Variables: */
int axis;
/* Check the inherited status. */
if( !astOK ) return;
/* Ensure that the Plot uses the grf interface registered using
astGrfSet. */
astSetGrf( plot, 1 );
/* Ensure that no title is drawn. */
astSetDrawTitle( plot, 0 );
/* For each axis, ensure that no axis labels or ticks are produced unless
the axis is indicated as a labelled axis in the supplied array. */
for( axis = 0; axis < 2; axis++ ) {
if( !label[ axis ] ) {
astSetLabelUnits( plot, axis, 0 );
astSetNumLab( plot, axis, 0 );
astSetTextLab( plot, axis, 0 );
}
}
}
static void SetRootCorner( AstPlot3D *this, int rootcorner, int *status ){
/*
*+
* Name:
* astSetRootCorner
* Purpose:
* Set a new value for the RootCorner attribute.
* Type:
* Protected virtual function.
* Synopsis:
* #include "plot3d.h"
* void astSetRootCorner( AstPlot3D *this, int rootcorner )
* Class Membership:
* Plot method.
* Description:
* This function sets a new value for the RootCorner attribute.
* Parameters:
* this
* Pointer to a Plot3D.
* rootcorner
* The new RootCorner value.
*-
*/
/* Check the global status. */
if( !astOK ) return;
/* Report an error if the new value is out of bounds. */
if( rootcorner < 0 || rootcorner > 7 ){
astError( AST__ATTIN, "astSetRootCorner(Plot3D): Invalid value %d "
"supplied for RootCorner attribute", status,rootcorner);
/* If the new corner is OK, mirror any axes of the encapsulated Plots
that need mirroring (this is done to ensure that Plots look right when
viewed from the outside of the graphics cube), and modify the Edge
attributes in the encapsulated Plots to ensure the labels appear on the
requested edges of the 3D graphics cube. . */
} else {
ChangeRootCorner( this, astGetRootCorner(this), rootcorner, status );
/* Store the new value. */
this->rootcorner = rootcorner;
}
}
static void SetTickValues( AstPlot *this, int axis, int nmajor, double *major,
int nminor, double *minor, int *status ){
/*
* Name:
* SetTickValues
* Purpose:
* Store the tick mark values to use for a given Plot axis.
* Type:
* Private member function.
* Synopsis:
* #include "plot3d.h"
* void SetTickValues( AstPlot *this, int axis, int nmajor,
* double *major, int nminor, double *minor, int *status )
* Class Membership:
* Plot method (overrides the astSetTickValues method inherited form
* the Plot class)
* Description:
* This function stores a set of tick mark values that should be used by
* subsequent calls to astGrid.
* Parameters:
* this
* Pointer to a Plot.
* axis
* The zero-based index of the axis for which tick marks values
* have been supplied.
* nmajor
* The number of major tick mark values. If zero is supplied then
* the other parameters are ignored, and subsequent calls to
* astGrid will itself determine the tick values to be used.
* major
* Pointer to an array holding "nmajor" values for axis "axis" in
* the current Frame of the suppled Plot. Major tick marks will be
* drawn at these values.
* nminor
* The number of minor tick mark values.
* minor
* Pointer to an array holding "nminor" values for axis "axis" in
* the current Frame of the suppled Plot. Minor tick marks will be
* drawn at these values.
* status
* Pointer to the inherited status variable.
*/
/* Check the global status. */
if( !astOK ) return;
astError( AST__INTER, "astSetTickValues(%s): The astSetTickValues "
"method cannot be used with a %s (programming error).", status,
astGetClass( this ), astGetClass( this ) );
}
static void SplitFrameSet( AstFrameSet *fset,
AstFrameSet **fsetxy, int labelxy[2], int wcsxy[2],
AstFrameSet **fsetxz, int labelxz[2], int wcsxz[2],
AstFrameSet **fsetyz, int labelyz[2], int wcsyz[2],
int *baseplane, int *status ){
/*
* Name:
* SplitFrameSet
* Purpose:
* Split a 3D FrameSet into three 2D FrameSets.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void SplitFrameSet( AstFrameSet *fset,
* AstFrameSet **fsetxy, int labelxy[2], int wcsxy[2],
* AstFrameSet **fsetxz, int labelxz[2], int wcsxz[2],
* AstFrameSet **fsetyz, int labelyz[2], int wcsyz[2],
* int *baseplane, int *status )
* Class Membership:
* Plot3D member function
* Description:
* This function returns 3 FrameSets, each of which has 2-dimensional
* base and current Frames. Each of the 2D base Frames span a single
* plane in the 3D base Frame of the supplied FrameSet. Likewise, each
* of the 2D current Frames span a single plane in the 3D current Frame
* of the supplied FrameSet. An error is reported if there is no
* one-to-one association between the three planes in the supplied
* current Frame and the 3 planes in the supplied base Frame.
* Parameters:
* fset
* Pointer to a FrameSet that has a 3D base Frame and a 3D current
* Frame.
* fsetxy
* Pointer to a location at which to return a pointer to a new FrameSet
* that has a 2D base Frame and a 2D current. The base Frame spans
* axes 1 and 2 of the 3D base Frame in "fset".
* labelxy
* Returned holding flags indicating if the two axes of the current
* Frame in *fsetxy should be labelled or not.
* wcsxy
* Returned holding the zero based axis index within the current Frame
* of the supplied FrameSet that corresponds to each of the two
* current Frame axes in the "fsetxy" FrameSet.
* fsetxz
* Pointer to a location at which to return a pointer to a new FrameSet
* that has a 2D base Frame and a 2D current. The base Frame spans
* axes 1 and 3 of the 3D base Frame in "fset".
* labelxz
* Returned holding flags indicating if the two axes of the current
* Frame in *fsetxz should be labelled or not.
* wcsxz
* Returned holding the zero based axis index within the current Frame
* of the supplied FrameSet that corresponds to each of the two
* current Frame axes in the "fsetxz" FrameSet.
* fsetyz
* Pointer to a location at which to return a pointer to a new FrameSet
* that has a 2D base Frame and a 2D current. The base Frame spans
* axes 2 and 3 of the 3D base Frame in "fset".
* labelyz
* Returned holding flags indicating if the two axes of the current
* Frame in *fsetyz should be labelled or not.
* wcsyz
* Returned holding the zero based axis index within the current Frame
* of the supplied FrameSet that corresponds to each of the two
* current Frame axes in the "fsetxy" FrameSet.
* baseplane
* Index of the plane that is spanned by two connected 3D axes.
* status
* Pointer to the inherited status variable.
* Notes:
* - Null pointers will be returned for the three new FrameSets if this
* function is invoked with the global status set, or if it should fail
* for any reason.
* - Each returned FrameSet has 2 Frames: Frame 1 is the base Frame
* and is spanned by 2 of the 3 axes in the base Frame of the supplied
* FrameSet; Frame 2 is the current Frame and is spanned by 2 of the 3
* axes in the current Frame of the supplied FrameSet. Any future changes
* to this function that alter this structure should reflected in
* equivalent changes to functions CreatePlots and UpdatePlots.
*/
/* Local Variables: */
AstFrame *bfrm2d;
AstFrame *bfrm;
AstFrame *cfrm1d;
AstFrame *cfrm2d;
AstFrame *cfrm;
AstFrame *dummy;
AstFrameSet *fset1;
AstFrameSet *fset2;
AstFrameSet *fset3;
AstMapping *map1d;
AstMapping *map2d;
AstMapping *map;
AstMapping *smap;
AstUnitMap *unit1d;
int *axout;
int *other_axout;
int axin2[ 2 ];
int axin[ 2 ];
int i;
int label1[ 2 ];
int label2[ 2 ];
int label3[ 2 ];
int other_axin;
int wcsax1[ 2 ];
int wcsax2[ 2 ];
int wcsax3[ 2 ];
/* Initialise. */
*fsetxy = NULL;
*fsetxz = NULL;
*fsetyz = NULL;
*baseplane = 0;
/* Check the global error status. */
if ( !astOK ) return;
/* Get the simplified base -> current Mapping form the supplied FrameSet.
Also get the base and current Frames themselves. */
map = astGetMapping( fset, AST__BASE, AST__CURRENT );
smap = astSimplify( map );
map = astAnnul( map );
cfrm = astGetFrame( fset, AST__CURRENT );
bfrm = astGetFrame( fset, AST__BASE );
/* Create a 1D UnitMap. */
unit1d = astUnitMap( 1, "", status );
/* First try to identify a pair of base Frame axes that map onto a pair
of current Frame axes. This will be the case for instance if the 3D
FrameSet describes a spectral cube in which two of the axes are spanned
by a SkyFrame. We try all three possible pairs of axes in turn until a
pair is found succesfully. */
for( i = 0; i < 3 && ! *fsetxy; i++ ) {
axin[ 0 ] = ( i < 2 ) ? 0 : 1;
axin[ 1 ] = ( i == 0 ) ? 1 : 2;
/* Try to get a Mapping that connects the inputs given by axin to a
distinct subset of outputs. */
axout = astMapSplit( smap, 2, axin, &map2d );
/* If succesful, check that the 2 inputs correspond to exactly 2 outputs. */
if( map2d ){
if( astGetNout( map2d ) == 2 ) {
/* Get the index of the other input axis (the one not included in the pair). */
other_axin = 3 - axin[ 0 ] - axin[ 1 ];
/* Try to get a Mapping that connects this remaining input to a distinct
subset of outputs. */
other_axout = astMapSplit( smap, 1, &other_axin, &map1d );
/* If succesful, check that the 1 input correspond to exactly 1 output. */
if( map1d ){
if( astGetNout( map1d ) == 1 ) {
/* Pick the two axes from the 3D base and current Frames that correspond to
the paired axes found above. */
bfrm2d = astPickAxes( bfrm, 2, axin, NULL );
cfrm2d = astPickAxes( cfrm, 2, axout, NULL );
/* Pick the axis from the 3D current Frame that correspond to
the other axis. */
cfrm1d = astPickAxes( cfrm, 1, other_axout, NULL );
/* Construct a FrameSet using these 2D Frames and Mapping. */
fset1 = astFrameSet( bfrm2d, "", status );
astAddFrame( fset1, AST__BASE, map2d, cfrm2d );
bfrm2d = astAnnul( bfrm2d );
cfrm2d = astAnnul( cfrm2d );
map2d = astAnnul( map2d );
/* Indicate that both axes in the current Frame of this FrameSet should
be labelled. */
label1[ 0 ] = 1;
label1[ 1 ] = 1;
/* Store the index of the axis within the supplied current Frame that
corresponds to each axis in the current Frame of the FrameSet created
above. */
wcsax1[ 0 ] = axout[ 0 ];
wcsax1[ 1 ] = axout[ 1 ];
/* Pick the two axes from the 3D base Frame that correspond to the first of
the paired axes, and the unpaired axis. Order them so that we get the
2 axes in the order xy, xz or yz. Also, store the index of the axis
within the supplied current Frame that corresponds to each axis in
the current Frame of the FrameSet created below. */
if( i < 2 ) {
axin2[ 0 ] = axin[ 0 ];
axin2[ 1 ] = other_axin;
wcsax2[ 0 ] = axout[ 0 ];
wcsax2[ 1 ] = other_axout[ 0 ];
} else {
axin2[ 0 ] = other_axin;
axin2[ 1 ] = axin[ 0 ];
wcsax2[ 0 ] = other_axout[ 0 ];
wcsax2[ 1 ] = axout[ 0 ];
}
bfrm2d = astPickAxes( bfrm, 2, axin2, NULL );
/* The corresponding current Frame in the new FrameSet will be a compound
2D Frame holding the other current Frame axis and a copy of the input
base Frame axis. Combine them so that we get the 2 axes in the order
xy, xz or yz. */
dummy = astPickAxes( bfrm, 1, axin, NULL );
if( i < 2 ) {
cfrm2d = (AstFrame *) astCmpFrame( dummy, cfrm1d, "", status );
} else {
cfrm2d = (AstFrame *) astCmpFrame( cfrm1d, dummy, "", status );
}
dummy = astAnnul( dummy );
/* The Mapping that joins this 2D base Frame to the 2D current Frame uses
the above 1D mapping for the other axis, and a UnitMap for the copied
base Frame axis. */
if( i < 2 ) {
map2d = (AstMapping *) astCmpMap( unit1d, map1d, 0, "", status );
} else {
map2d = (AstMapping *) astCmpMap( map1d, unit1d, 0, "", status );
}
/* Construct a FrameSet using these 2D Frames and Mapping. */
fset2 = astFrameSet( bfrm2d, "", status );
astAddFrame( fset2, AST__BASE, map2d, cfrm2d );
bfrm2d = astAnnul( bfrm2d );
cfrm2d = astAnnul( cfrm2d );
map2d = astAnnul( map2d );
/* Indicate that only one of the axes in the current Frame of this FrameSet
should be labelled. */
if( i < 2 ) {
label2[ 0 ] = 0;
label2[ 1 ] = 1;
} else {
label2[ 0 ] = 1;
label2[ 1 ] = 0;
}
/* Pick the two axes from the 3D base Frame that correspond to the second
of the paired axes, and the unpaired axis. Order them so that we get the
2 axes in the order xy, xz or yz. Also, store the index of the axis
within the supplied current Frame that corresponds to each axis in
the current Frame of the FrameSet created below. */
if( i == 0 ) {
axin2[ 0 ] = axin[ 1 ];
axin2[ 1 ] = other_axin;
wcsax3[ 0 ] = axout[ 1 ];
wcsax3[ 1 ] = other_axout[ 0 ];
} else {
axin2[ 0 ] = other_axin;
axin2[ 1 ] = axin[ 1 ];
wcsax3[ 0 ] = other_axout[ 0 ];
wcsax3[ 1 ] = axout[ 1 ];
}
bfrm2d = astPickAxes( bfrm, 2, axin2, NULL );
/* The corresponding current Frame in the new FrameSet will be a compound
2D Frame holding the other current Frame axis and a copy of the input
base Frame axis. Combine them so that we get the 2 axes in the order
xy, xz or yz. */
dummy = astPickAxes( bfrm, 1, axin + 1, NULL );
if( i == 0 ) {
cfrm2d = (AstFrame *) astCmpFrame( dummy, cfrm1d, "", status );
} else {
cfrm2d = (AstFrame *) astCmpFrame( cfrm1d, dummy, "", status );
}
dummy = astAnnul( dummy );
/* The Mapping that joins this 2D base Frame to the 2D current Frame uses
the above 1D mapping for the other axis, and a UnitMap for the copied
base Frame axis. */
if( i == 0 ) {
map2d = (AstMapping *) astCmpMap( unit1d, map1d, 0, "", status );
} else {
map2d = (AstMapping *) astCmpMap( map1d, unit1d, 0, "", status );
}
/* Construct a FrameSet using these 2D Frames and Mapping. */
fset3 = astFrameSet( bfrm2d, "", status );
astAddFrame( fset3, AST__BASE, map2d, cfrm2d );
bfrm2d = astAnnul( bfrm2d );
cfrm2d = astAnnul( cfrm2d );
map2d = astAnnul( map2d );
/* Indicate that neither axis in the current Frame of this FrameSet
should be labelled. */
label3[ 0 ] = 0;
label3[ 1 ] = 0;
/* Store each FrameSet in the correct returned pointer. */
if( i == 0 ) {
*baseplane = XY;
*fsetxy = fset1;
*fsetxz = fset2;
*fsetyz = fset3;
labelxy[ 0 ] = label1[ 0 ];
labelxy[ 1 ] = label1[ 1 ];
labelxz[ 0 ] = label2[ 0 ];
labelxz[ 1 ] = label2[ 1 ];
labelyz[ 0 ] = label3[ 0 ];
labelyz[ 1 ] = label3[ 1 ];
wcsxy[ 0 ] = wcsax1[ 0 ];
wcsxy[ 1 ] = wcsax1[ 1 ];
wcsxz[ 0 ] = wcsax2[ 0 ];
wcsxz[ 1 ] = wcsax2[ 1 ];
wcsyz[ 0 ] = wcsax3[ 0 ];
wcsyz[ 1 ] = wcsax3[ 1 ];
} else if( i == 1 ) {
*baseplane = XZ;
*fsetxy = fset2;
*fsetxz = fset1;
*fsetyz = fset3;
labelxy[ 0 ] = label2[ 0 ];
labelxy[ 1 ] = label2[ 1 ];
labelxz[ 0 ] = label1[ 0 ];
labelxz[ 1 ] = label1[ 1 ];
labelyz[ 0 ] = label3[ 0 ];
labelyz[ 1 ] = label3[ 1 ];
wcsxy[ 0 ] = wcsax2[ 0 ];
wcsxy[ 1 ] = wcsax2[ 1 ];
wcsxz[ 0 ] = wcsax1[ 0 ];
wcsxz[ 1 ] = wcsax1[ 1 ];
wcsyz[ 0 ] = wcsax3[ 0 ];
wcsyz[ 1 ] = wcsax3[ 1 ];
} else {
*baseplane = YZ;
*fsetxy = fset2;
*fsetxz = fset3;
*fsetyz = fset1;
labelxy[ 0 ] = label2[ 0 ];
labelxy[ 1 ] = label2[ 1 ];
labelxz[ 0 ] = label3[ 0 ];
labelxz[ 1 ] = label3[ 1 ];
labelyz[ 0 ] = label1[ 0 ];
labelyz[ 1 ] = label1[ 1 ];
wcsxy[ 0 ] = wcsax2[ 0 ];
wcsxy[ 1 ] = wcsax2[ 1 ];
wcsxz[ 0 ] = wcsax3[ 0 ];
wcsxz[ 1 ] = wcsax3[ 1 ];
wcsyz[ 0 ] = wcsax1[ 0 ];
wcsyz[ 1 ] = wcsax1[ 1 ];
}
/* Free resources */
cfrm1d = astAnnul( cfrm1d );
}
/* Free resources */
map1d = astAnnul( map1d );
other_axout = astFree( other_axout );
}
}
/* Free resources */
if( map2d ) map2d = astAnnul( map2d );
axout = astFree( axout );
/* Leave the loop if we now have the required FrameSets, or an error has
occurred. */
if( *fsetxy || !astOK ) break;
}
}
/* Free resources */
cfrm = astAnnul( cfrm );
bfrm = astAnnul( bfrm );
smap = astAnnul( smap );
unit1d = astAnnul( unit1d );
/* Return null pointers if an error has occurred. */
if( !astOK ) {
*fsetxy = astAnnul( *fsetxy );
*fsetxz = astAnnul( *fsetxz );
*fsetyz = astAnnul( *fsetyz );
/* Report an error if the supplied FrameSet could not be split into 3
independent 2D planes. */
} if( ! *fsetxy ) {
astError( AST__3DFSET, "astInitPlot3D(Plot3D): Supplied %s contains "
"no independent axes.", status, astGetClass( fset ) );
}
}
static void StoreAxisInfo( AstPlot3D *this, int labelxy[2], int wcsxy[2],
int labelxz[2], int wcsxz[2], int labelyz[2],
int wcsyz[2], int *status ) {
/*
* Name:
* StoreAxisInfo
* Purpose:
* Store information connecting 3D axis with associuated 2D Plot axes.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void StoreAxisInfo( AstPlot3D *this, int labelxy[2], int wcsxy[2],
* int labelxz[2], int wcsxz[2], int labelyz[2],
* int wcsyz[2], int *status )
* Class Membership:
* Plot3D method.
* Description:
* This function stores information inside the Plot3D that allows each
* 3D axis to be associated with the 2 Plots that share the 3D axis,
* and with the axis index within each of these two Plots.
* Parameters:
* this
* Pointer to the Plot3D.
* labelxy
* Flags indicating if the two axes of the current Frame in the XY
* Plot should be labelled or not.
* wcsxy
* The zero based axis index within the 3D current Frame that
* corresponds to each of the two current Frame axes in the XY Plot.
* A value of -1 should be used for 2D axes that do not correspond
* to any 3D axis.
* labelxz
* Flags indicating if the two axes of the current Frame in the XZ
* Plot should be labelled or not.
* wcsxz
* The zero based axis index within the 3D current Frame that
* corresponds to each of the two current Frame axes in the XZ Plot.
* A value of -1 should be used for 2D axes that do not correspond
* to any 3D axis.
* labelyz
* Flags indicating if the two axes of the current Frame in the YZ
* Plot should be labelled or not.
* wcsyz
* The zero based axis index within the 3D current Frame that
* corresponds to each of the two current Frame axes in the YZ Plot.
* A value of -1 should be used for 2D axes that do not correspond
* to any 3D axis.
* status
* Pointer to the inherited status variable.
*/
/* Local Variables: */
int axis2d;
int axis3d;
int gotfirst;
int gotsecond;
int temp;
/* Check the inherited status. */
if( !astOK ) return;
/* Store information that allows each 3D WCS axis to be associated with
a pair of Plots. Also store the WCS axis within each Plot that
corresponds to the 3D WCS axis. Do each 3D WCS axis in turn. */
for( axis3d = 0; axis3d < 3; axis3d++ ) {
/* Indicate we have not yet found either of the two Plots that share the
current 3D axis. */
gotfirst = 0;
gotsecond = 0;
/* Check each of the 2 axes in the plot spanning the XY face of the 3D
graphics cube. Break early if we have found both Plots for the current
3D WCS axis. */
for( axis2d = 0; axis2d < 2 && !gotsecond; axis2d++ ) {
/* See if this 2D axis corresponds to the required 3D axis. If so, store
the Plot identifier and the 2D axis index. */
if( wcsxy[ axis2d ] == axis3d ) {
if( gotfirst ) {
this->axis_plot2[ axis3d ] = XY;
this->axis_index2[ axis3d ] = axis2d;
gotsecond = 1;
} else {
this->axis_plot1[ axis3d ] = XY;
this->axis_index1[ axis3d ] = axis2d;
gotfirst = 1;
}
}
}
/* Check the plot spanning the XZ face in the same way. */
for( axis2d = 0; axis2d < 2 && !gotsecond; axis2d++ ) {
if( wcsxz[ axis2d ] == axis3d ) {
if( gotfirst ) {
this->axis_plot2[ axis3d ] = XZ;
this->axis_index2[ axis3d ] = axis2d;
gotsecond = 1;
} else {
this->axis_plot1[ axis3d ] = XZ;
this->axis_index1[ axis3d ] = axis2d;
gotfirst = 1;
}
}
}
/* Check the plot spanning the YZ face in the same way. */
for( axis2d = 0; axis2d < 2 && !gotsecond; axis2d++ ) {
if( wcsyz[ axis2d ] == axis3d ) {
if( gotfirst ) {
this->axis_plot2[ axis3d ] = YZ;
this->axis_index2[ axis3d ] = axis2d;
gotsecond = 1;
} else {
this->axis_plot1[ axis3d ] = YZ;
this->axis_index1[ axis3d ] = axis2d;
gotfirst = 1;
}
}
}
}
/* Ensure that the first Plot within each pair is the one that is used to
generate labels for the 3D axis. */
for( axis2d = 0; axis2d < 2; axis2d++ ) {
if( labelxy[ axis2d ] ) {
axis3d = wcsxy[ axis2d ];
if( this->axis_plot1[ axis3d ] != XY ){
temp = this->axis_plot1[ axis3d ];
this->axis_plot1[ axis3d ] = this->axis_plot2[ axis3d ];
this->axis_plot2[ axis3d ] = temp;
temp = this->axis_index1[ axis3d ];
this->axis_index1[ axis3d ] = this->axis_index2[ axis3d ];
this->axis_index1[ axis3d ] = temp;
}
}
}
for( axis2d = 0; axis2d < 2; axis2d++ ) {
if( labelxz[ axis2d ] ) {
axis3d = wcsxz[ axis2d ];
if( this->axis_plot1[ axis3d ] != XZ ){
temp = this->axis_plot1[ axis3d ];
this->axis_plot1[ axis3d ] = this->axis_plot2[ axis3d ];
this->axis_plot2[ axis3d ] = temp;
temp = this->axis_index1[ axis3d ];
this->axis_index1[ axis3d ] = this->axis_index2[ axis3d ];
this->axis_index1[ axis3d ] = temp;
}
}
}
for( axis2d = 0; axis2d < 2; axis2d++ ) {
if( labelyz[ axis2d ] ) {
axis3d = wcsyz[ axis2d ];
if( this->axis_plot1[ axis3d ] != YZ ){
temp = this->axis_plot1[ axis3d ];
this->axis_plot1[ axis3d ] = this->axis_plot2[ axis3d ];
this->axis_plot2[ axis3d ] = temp;
temp = this->axis_index1[ axis3d ];
this->axis_index1[ axis3d ] = this->axis_index2[ axis3d ];
this->axis_index1[ axis3d ] = temp;
}
}
}
}
static int TestAttrib( AstObject *this_object, const char *attrib, int *status ) {
/*
* Name:
* TestAttrib
* Purpose:
* Test if a specified attribute value is set for a Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* int TestAttrib( AstObject *this, const char *attrib, int *status )
* Class Membership:
* Plot3D member function (over-rides the astTestAttrib protected
* method inherited from the Plot class).
* Description:
* This function returns a boolean result (0 or 1) to indicate whether
* a value has been set for one of a Plot3D's attributes.
* Parameters:
* this
* Pointer to the Plot3D.
* attrib
* Pointer to a null terminated string specifying the attribute
* name. This should be in lower case with no surrounding white
* space.
* status
* Pointer to the inherited status variable.
* Returned Value:
* One if a value has been set, otherwise zero.
* Notes:
* - A value of zero will be returned if this function is invoked
* with the global status set, or if it should fail for any reason.
*/
/* Local Variables: */
AstPlot *plot; /* Pointer to specific Plot */
AstPlot3D *this; /* Pointer to the Plot3D structure */
char attname[50]; /* Plot attribute base name */
char patt[50]; /* Plot attribute full name */
char spec[10]; /* Plane specification */
int axis; /* Axis index */
int len; /* Length of attrib string */
int nc; /* Number of character read */
int result; /* Result value to return */
/* Initialise. */
result = 0;
/* Check the global error status. */
if ( !astOK ) return result;
/* Obtain a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_object;
/* Obtain the length of the attrib string. */
len = strlen( attrib );
/* Check the attribute name and test the appropriate attribute. */
/* Norm. */
/* ----- */
if ( !strcmp( attrib, "norm" ) ) {
result = astTestNorm( this, 0 ) ||
astTestNorm( this, 1 ) ||
astTestNorm( this, 2 );
/* Norm(axis). */
/* ----------- */
} else if ( nc = 0,
( 1 == astSscanf( attrib, "norm(%d)%n", &axis, &nc ) )
&& ( nc >= len ) ) {
result = astTestNorm( this, axis - 1 );
/* RootCorner. */
/* ----------- */
} else if ( !strcmp( attrib, "rootcorner" ) ) {
result = astTestRootCorner( this );
/* ..._XY etc */
/* ---------- */
} else if ( nc = 0,
( 2 == astSscanf( attrib, "%[a-z]_%[xyz]%n", attname, spec,
&nc ) ) ) {
if( !strcmp( spec, "xy" ) || !strcmp( spec, "yx" ) ) {
plot = this->plotxy;
} else if( !strcmp( spec, "xz" ) || !strcmp( spec, "zx" ) ) {
plot = this->plotyz;
} else if( !strcmp( spec, "yz" ) || !strcmp( spec, "zy" ) ) {
plot = this->plotxz;
} else {
plot = NULL;
}
if( plot ) {
sprintf( patt, "%s%s", attname, attrib + nc );
result = astTestAttrib( plot, patt );
} else {
result = (*parent_testattrib)( this_object, attrib, status );
}
/* If the attribute is still not recognised, pass it on to the parent
method for further interpretation. */
} else {
result = (*parent_testattrib)( this_object, attrib, status );
}
/* Return the result, */
return result;
}
static void Text( AstPlot *this_plot, const char *text, const double pos[],
const float up[], const char *just, int *status ){
/*
* Name:
* Text
* Purpose:
* Draw a text string for a Plot3D.
* Type:
* Private member function.
* Synopsis:
* #include "plot3d.h"
* void Text( AstPlot *this, const char *text, const double pos[],
* const float up[], const char *just, int *status )
* Class Membership:
* Plot3D method (overrides the Text method inherited form the Plot
* class).
* Description:
* This function draws a string of text at a position specified in
* the physical coordinate system of a Plot3D. The physical position
* is transformed into graphical coordinates to determine where the
* text should appear within the plotting area.
*
* The text is drawn on a 2D plane that has a normal vector given by the
* current value of the Plot3D's "Norm" attribute.
* Parameters:
* this
* Pointer to the Plot3D.
* text
* Pointer to a null-terminated character string containing the
* text to be drawn. Trailing white space is ignored.
* pos
* An array, with one element for each axis of the Plot3D, giving
* the physical coordinates of the point where the reference
* position of the text string is to be placed.
* up
* An array holding the components of a vector in the "up"
* direction of the text (in graphical coordinates). For
* example, to get horizontal text, the vector {0.0f,1.0f} should
* be supplied. "Up" is taken to be the projection of the positive
* Z axis onto the plane specified by the current value of the
* just
* Pointer to a null-terminated character string identifying the
* reference point for the text being drawn. The first character in
* this string identifies the reference position in the "up" direction
* and may be "B" (baseline), "C" (centre), "T" (top) or "M" (bottom).
* The second character identifies the side-to-side reference position
* and may be "L" (left), "C" (centre) or "R" (right ). The string is
* case-insensitive, and only the first two characters are significant.
*
* For example, a value of "BL" means that the left end of the
* baseline of the original (un-rotated) text is to be drawn at the
* position given by "pos".
* status
* Pointer to the inherited status variable.
*/
/* Local Variables: */
AstMapping *mapping; /* Pointer to graphics->physical mapping */
AstPlot3D *this; /* Pointer to the Plot3D structure */
AstPointSet *pset1; /* PointSet holding physical positions */
AstPointSet *pset2; /* PointSet holding graphics positions */
char *ltext; /* Local copy of "text" excluding trailing spaces */
char ljust[3]; /* Upper case copy of "just" */
const char *class; /* Object class */
const char *method; /* Current method */
const double **ptr1; /* Pointer to physical positions */
double **ptr2; /* Pointer to graphics positions */
float norm[ 3 ]; /* Single precision normal vector */
float ref[ 3 ]; /* Single precision ref position */
int axis; /* Axis index */
int escs; /* Original astEscapes value */
int naxes; /* No. of axes in the base Frame */
int ncoord; /* No. of axes in the current Frame */
int ulen; /* Length of "text" excluding trailing spaces */
/* Check the global error status. */
if ( !astOK || !text ) return;
/* Store a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_plot;
/* Store the current method and class for inclusion in error messages
generated by lower level functions. */
method = "astText";
class = astClass( this );
/* Check the base Frame of the Plot is 3-D. */
naxes = astGetNin( this );
if( naxes != 3 && astOK ){
astError( AST__NAXIN, "%s(%s): Number of axes (%d) in the base "
"Frame of the supplied %s is invalid - this number should "
"be 3.", status, method, class, naxes, class );
}
/* Ensure AST functions do not included graphical escape sequences in any
returned text strings. This is because the Plot3D implementation of
this method cannot currently handle graphical escape sequences. */
escs = astEscapes( 0 );
/* Establish the correct graphical attributes as defined by attributes
with the supplied Plot. */
astGrfAttrs( this, AST__TEXT_ID, 1, GRF__TEXT, method, class );
/* Get the number of coordinates in the physical coordinate frame. */
ncoord = astGetNout( this );
/* Create a PointSet to hold the supplied physical coordinates. */
pset1 = astPointSet( 1, ncoord, "", status );
/* Allocate memory to hold pointers to the first value on each axis. */
ptr1 = (const double **) astMalloc( sizeof( const double * )*
(size_t)( ncoord ));
/* Check the pointer can be used, then store pointers to the first value
on each axis. */
if( astOK ){
for( axis = 0; axis < ncoord; axis++ ){
ptr1[ axis ] = pos + axis;
}
}
/* Store these pointers in the PointSet. */
astSetPoints( pset1, (double **) ptr1 );
/* Transform the supplied data from the current frame (i.e. physical
coordinates) to the base frame (i.e. graphics coordinates) using
the inverse Mapping defined by the Plot. */
mapping = astGetMapping( this, AST__BASE, AST__CURRENT );
pset2 = astTransform( mapping, pset1, 0, NULL );
mapping = astAnnul( mapping );
/* Get pointers to the graphics coordinates. */
ptr2 = astGetPoints( pset2 );
/* Take a copy of the string excluding any trailing white space. */
ulen = astChrLen( text );
ltext = (char *) astStore( NULL, (void *) text, ulen + 1 );
/* Check the pointers can be used. */
if( astOK ){
/* Terminate the local copy of the text string. */
ltext[ ulen ] = 0;
/* Produce an upper-case copy of the first two characters in "just". */
ljust[0] = (char) toupper( (int) just[0] );
ljust[1] = (char) toupper( (int) just[1] );
ljust[2] = 0;
/* Convert the double precision values to single precision, checking for
bad positions. */
if( ptr2[0][0] != AST__BAD && ptr2[1][0] != AST__BAD &&
ptr2[2][0] != AST__BAD ){
ref[ 0 ] = (float) ptr2[0][0];
ref[ 1 ] = (float) ptr2[1][0];
ref[ 2 ] = (float) ptr2[2][0];
/* If the nornmal vector has non-zero length, draw the text. */
norm[ 0 ] = (float) astGetNorm( this, 0 );
norm[ 1 ] = (float) astGetNorm( this, 1 );
norm[ 2 ] = (float) astGetNorm( this, 2 );
/* Since we are about to call an external function which may not be
thread safe, prevent any other thread from executing the following code
until the current thread has finished executing it. */
LOCK_MUTEX2;
if( norm[ 0 ] != 0.0 || norm[ 1 ] != 0.0 || norm[ 2 ] != 0.0 ){
if( !astG3DText( ltext, ref, ljust, (float *) up, norm ) ) {
astError( AST__GRFER, "%s(%s): Graphics error in astG3DText. ", status,
method, class );
}
} else if( astOK ) {
astError( AST__ATTIN, "%s(%s): The vector specified by the Norm "
"attribute has zero length.", status, method, class );
}
/* Allow the next thread to proceed. */
UNLOCK_MUTEX2;
}
/* Free the local copy of the string. */
ltext = (char *) astFree( (void *) ltext );
}
/* Annul the PointSets. */
pset1 = astAnnul( pset1 );
pset2 = astAnnul( pset2 );
/* Free the memory holding the pointers to the first value on each axis. */
ptr1 = (const double **) astFree( (void *) ptr1 );
/* Re-establish the original graphical attributes. */
astGrfAttrs( this, AST__TEXT_ID, 0, GRF__TEXT, method, class );
/* Restore the original value of the flag which says whether graphical
escape sequences should be incldued in any returned text strings. */
astEscapes( escs );
/* Return */
return;
}
static AstPointSet *Transform( AstMapping *this_mapping, AstPointSet *in,
int forward, AstPointSet *out, int *status ) {
/*
* Name:
* Transform
* Purpose:
* Use a Plot to transform a set of points.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* AstPointSet *Transform( AstMapping *this, AstPointSet *in,
* int forward, AstPointSet *out, int *status )
* Class Membership:
* Plot3D member function (over-rides the astTransform protected
* method inherited from the Plot class).
* Description:
* This function takes a Plot3D and a set of points encapsulated in a
* PointSet and transforms the points from graphics coordinates to
* physical coordinates (in the forward direction). No clipping or
* normalisation is applied.
* Parameters:
* this
* Pointer to the Plot3D.
* in
* Pointer to the PointSet holding the input coordinate data.
* forward
* A non-zero value indicates that the forward coordinate
* transformation should be applied while a zero value requests the
* inverse transformation.
* out
* Pointer to a PointSet which will hold the transformed (output)
* coordinate values. A NULL value may also be given, in which case a
* new PointSet will be created by this function.
* status
* Pointer to the inherited status variable.
* Returned Value:
* Pointer to the output (possibly new) PointSet.
* Notes:
* - A null pointer will be returned if this function is invoked with the
* global error status set, or if it should fail for any reason.
* - The number of coordinate values per point in the input PointSet must
* match the number of coordinates for the Plot being applied.
* - If an output PointSet is supplied, it must have space for sufficient
* number of points and coordinate values per point to accommodate the
* result. Any excess space will be ignored.
*/
/* Local Variables: */
AstMapping *map; /* Pointer to the mapping */
AstPointSet *result; /* Positions in output Frame */
AstPlot3D *this; /* The Plot3D */
/* Check the global error status. */
if ( !astOK ) return NULL;
/* Get a pointer to the Plot3D. */
this = (AstPlot3D *) this_mapping;
/* Get the Mapping from the base to the current Frame. */
map = astGetMapping( this, AST__BASE, AST__CURRENT );
/* Do the transformation. */
result = astTransform( map, in, forward, out );
/* Annul the mapping. */
map = astAnnul( map );
/* If an error has occurred, annul the result. */
if( !astOK ) result = astAnnul( result );
/* Return a pointer to the output PointSet. */
return result;
}
static void UpdatePlots( AstPlot3D *this, int *status ) {
/*
* Name:
* UpdatePlots
* Purpose:
* Update the three 2D plots stored in the Plot3D.
* Type:
* Private function.
* Synopsis:
* #include "plot3d.h"
* void UpdatePlots( AstPlot3D *this )
* Class Membership:
* Plot3D method.
* Description:
* This function splits the parent FrameSet up into 3 independent 2D
* FrameSets, each describing a 2D plane in the supplied 3D FrameSet.
* It then uses these 2D FrameSets to update the three Plots in the
* Plot3D, by removing the existing current Frame and adding in the
* new current Frame with the associated Mapping.
* Parameters:
* this
* Pointer to the Plot3D.
* Notes:
* - Each of the 3 plots has 3 Frames: Frame 1 is the base (GRAPHICS)
* Frame; Frame 2 is spanned by 2 of the 3 axes in the base Frame of
* the supplied FrameSet; Frame 3 is the current Frame and is spanned
* by 2 of the 3 axes in the current Frame of the supplied FrameSet.
* Any future changes to this function that alter this structure should
* reflected in equivalewnt changes to function CreatePlots.
*/
/* Local Variables: */
AstFrame *frm;
AstFrameSet *fsetxy;
AstFrameSet *fsetxz;
AstFrameSet *fsetyz;
AstFrameSet *fset;
AstMapping *map;
int baseplane;
int labelxy[ 2 ];
int labelxz[ 2 ];
int labelyz[ 2 ];
int wcsxy[ 2 ];
int wcsxz[ 2 ];
int wcsyz[ 2 ];
int rootcorner;
/* Check the inherited status. */
if( !astOK ) return;
/* Return without action if the Plot3D does not contain the three 2D
Plots. This may be the case for instance if this function is called
before the Plot3D is fully constructed. */
if( this->plotxy && this->plotxz && this->plotyz ){
/* We need a FrameSet that is equivalent to the one that was used to
construct the Plot3D (i.e. a FrameSet that does not have the GRAPHICS
Frame that was added by the Plot3D constructor). So take a copy of the
parent FrameSet, remove the GRAPHICS Frame (Frame 1) and set the base
Frame to be the Frame that was the base Frame when the Plot3D was
constructed. */
fset = (AstFrameSet *) astCast( this, dummy_frameset );
astSetBase( fset, this->pix_frame );
astRemoveFrame( fset, 1 );
/* Split the supplied FrameSet up into 3 FrameSets, each with a 2D base
and current Frame. Each of these FrameSets describes one plane of
the 3D cube. */
SplitFrameSet( fset, &fsetxy, labelxy, wcsxy, &fsetxz, labelxz, wcsxz,
&fsetyz, labelyz, wcsyz, &baseplane, status );
/* First do the XY Plot. Extract the current Frame and base->current
Mapping from the new FrameSet. It is assumed that he base Frame in the
new FrameSet is equivalent to Frame 2 in the existing Plot. This
assumption is based on the way the CreatePlots and SplitFrameSet
functions work, and should be reviewed if either of these functions
is changed. */
frm = astGetFrame( fsetxy, 2 );
map = astGetMapping( fsetxy, 1, 2 );
/* Add the new Frame into the existing Plot using the Mapping to connect
it to Frame 2 in the Plot. It becomes the current Frame in the Plot. */
astAddFrame( this->plotxy, 2, map, frm );
/* Delete the original current Frame in the Plot since it is not needed
any more. */
astRemoveFrame( this->plotxy, 3 );
/* Set the Plot attributes. */
SetPlotAttr( this->plotxy, XY, labelxy, status );
/* Free resources */
fsetxy = astAnnul( fsetxy );
map = astAnnul( map );
frm = astAnnul( frm );
/* Do the same for the XZ plot. */
frm = astGetFrame( fsetxz, 2 );
map = astGetMapping( fsetxz, 1, 2 );
astAddFrame( this->plotxz, 2, map, frm );
astRemoveFrame( this->plotxz, 3 );
SetPlotAttr( this->plotxz, XZ, labelxz, status );
fsetxz = astAnnul( fsetxz );
map = astAnnul( map );
frm = astAnnul( frm );
/* Do the same for the YZ plot. */
frm = astGetFrame( fsetyz, 2 );
map = astGetMapping( fsetyz, 1, 2 );
astAddFrame( this->plotyz, 2, map, frm );
astRemoveFrame( this->plotyz, 3 );
SetPlotAttr( this->plotyz, YZ, labelyz, status );
fsetyz = astAnnul( fsetyz );
map = astAnnul( map );
frm = astAnnul( frm );
/* Store information that allows each 3D WCS axis to be associatedf with
a pair of Plots. Also store the WCS axis within each Plot that
corresponds to the 3D WCS axis. */
StoreAxisInfo( this, labelxy, wcsxy, labelxz, wcsxz, labelyz, wcsyz, status );
/* Set up the Edges attributes in the encapsulated Plots to produce labels
on the required edges of the 3D graphics cube. */
rootcorner = astGetRootCorner( this );
ChangeRootCorner( this, rootcorner, rootcorner, status );
/* Store the plane spanned by two connected 3D axes. */
this->baseplot = baseplane;
/* Free remaining resources */
fset = astAnnul( fset );
}
}
static void VSet( AstObject *this_object, const char *settings,
char **text, va_list args, int *status ) {
/*
* Name:
* VSet
* Purpose:
* Set values for a Plot3D's attributes.
* Type:
* Private function.
* Synopsis:
* #include "frameset.h"
* void VSet( AstObject *this, const char *settings, char **text,
* va_list args, int *status )
* Class Membership:
* Plot3D member function (over-rides the protected astVSet
* method inherited from the Object class).
* Description:
* This function assigns a set of attribute values for a Plot3D,
* the attributes and their values being specified by means of a
* string containing a comma-separated list of the form:
*
* "attribute1 = value1, attribute2 = value2, ... "
*
* Here, "attribute" specifies an attribute name and the value to
* the right of each "=" sign should be a suitable textual
* representation of the value to be assigned to that attribute. This
* will be interpreted according to the attribute's data type.
*
* The string supplied may also contain "printf"-style format
* specifiers identified by a "%" sign in the usual way. If
* present, these will be substituted by values supplied as
* optional arguments (as a va_list variable argument list), using
* the normal "printf" rules, before the string is used.
* Parameters:
* this
* Pointer to the Plot3D.
* settings
* Pointer to a null-terminated string containing a
* comma-separated list of attribute settings.
* text
* Pointer to a location at which to return a pointer to dynamic
* memory holding a copy of the expanded setting string. This memory
* should be freed using astFree when no longer needed. If a NULL
* pointer is supplied, no string is created.
* args
* The variable argument list which contains values to be
* substituted for any "printf"-style format specifiers that
* appear in the "settings" string.
* status
* Pointer to the inherited status variable.
* Notes:
* - This function preserves the integrity of the Plot3D (if
* possible) by appropriately modifying the three encapsulated Plots.
*/
/* Invoke the parent astVSet method to set the Plot3D's attribute values. */
(*parent_vset)( this_object, settings, text, args, status );
/* Update the three 2D Plots stored in the Plot3D structure so that they
reflect this modified FrameSet. */
UpdatePlots( (AstPlot3D *) this_object, status );
}
/* Functions which access Plot3D class attributes. */
/* ----------------------------------------------- */
/* RootCorner. */
/* ----------- */
/*
*att++
* Name:
* RootCorner
* Purpose:
* Specifies which edges of the 3D box should be annotated.
* Type:
* Public attribute.
* Synopsis:
* String.
* Description:
* This attribute controls the appearance of an annotated
c coordinate grid (drawn with the astGrid function) by determining
f coordinate grid (drawn with the AST_GRID routine) by determining
* which edges of the cube enclosing the 3D graphics space are used
* for displaying numerical and descriptive axis labels. The attribute
* value identifies one of the eight corners of the cube within
* which graphics are being drawn (i.e. the cube specified by the
c "graphbox" parameter when astPlot3D
f GRAPHBOX argument when AST_PLOT3D
* was called tp create the Plot3D). Axis labels and tick marks will
* be placed on the three cube edges that meet at the given corner.
*
* The attribute value should consist of three character, each of
* which must be either "U" or "L". The first character in the string
* specifies the position of the corner on the first graphics axis.
* If the character is "U" then the corner is at the upper bound on the
* first graphics axis. If it is "L", then the corner is at the lower
* bound on the first axis. Likewise, the second and third characters
* in the string specify the location of the corner on the second and
* third graphics axes.
*
* For instance, corner "LLL" is the corner that is at the lower bound
* on all three graphics axes, and corner "ULU" is at the upper bound
* on axes 1 and 3 but at the lower bound on axis 2.
*
* The default value is "LLL".
* Applicability:
* Plot3D
* All Plot3Ds have this attribute.
*att--
*/
/* Internally, the RootCorner is represented as an integer bit mask, with
bit zero for the X axis, bit 1 for the Y axis and bit 2 for the Z axis.
A bit is set if the corner is at the upper bound on the axis and unset
if it is at the lower bound. A value of -1 indicates that the attribue
has not been assigned a value. */
astMAKE_GET(Plot3D,RootCorner,int,0,( this->rootcorner == -1 ? 0 : this->rootcorner))
astMAKE_TEST(Plot3D,RootCorner,( this->rootcorner != -1 ))
/* Norm(axis). */
/* ----------- */
/*
*att++
* Name:
* Norm(axis)
* Purpose:
* Specifies the plane upon which a Plot3D draws text and markers.
* Type:
* Public attribute.
* Synopsis:
* Floating point.
* Description:
* This attribute controls the appearance of text and markers drawn
* by a Plot3D. It specifies the orientation of the plane upon which
* text and markers will be drawn by all subsequent invocations of the
c astText and astMark functions.
f AST_TEXT and AST_MARK functions.
*
* When setting or getting the Norm attribute, the attribute name must
* be qualified by an axis index in the range 1 to 3. The 3 elements of
* the Norm attribute are together interpreted as a vector in 3D graphics
* coordinates that is normal to the plane upon which text and marks
* should be drawn. When testing or clearing the attribute, the axis
* index is optional. If no index is supplied, then clearing the Norm
* attribute will clear all three elements, and testing the Norm attribute
* will return a non-zero value if any of the three elements are set.
*
* The default value is 1.0 for each of the 3 elements. The length of
* the vector is insignificant, but an error will be reported when
* attempting to draw text or markers if the vector has zero length.
* Applicability:
* Plot
* All Plot3Ds have this attribute.
*att--
*/
MAKE_CLEAR3(Norm,norm,AST__BAD,3)
MAKE_SET3(Norm,double,norm,value,3)
MAKE_TEST3(Norm,( this->norm[axis] != AST__BAD ),3)
MAKE_GET3(Norm,double,AST__BAD,(this->norm[axis]!=AST__BAD?this->norm[axis]:1.0),3)
/* Functions which access Plot class attributes. */
/* --------------------------------------------- */
/* First do axis specific attributes. */
#define MAKE_ALL(attr,type,badval,whichplots) \
MAKE_CLEAR(attr,whichplots) \
MAKE_SET(attr,type,whichplots) \
MAKE_GET(attr,type,badval )
MAKE_ALL(MinTick,int,0,0)
MAKE_ALL(Abbrev,int,0,1)
MAKE_ALL(Gap,double,AST__BAD,1)
MAKE_ALL(LogGap,double,AST__BAD,1)
MAKE_ALL(LogPlot,int,0,0)
MAKE_ALL(LogTicks,int,0,0)
MAKE_ALL(LogLabel,int,0,1)
MAKE_ALL(LabelUp,int,0,1)
MAKE_ALL(DrawAxes,int,0,0)
MAKE_ALL(LabelUnits,int,0,1)
MAKE_ALL(MinTickLen,double,0.0,0)
MAKE_ALL(MajTickLen,double,0.0,0)
MAKE_ALL(NumLab,int,0,1)
MAKE_ALL(NumLabGap,double,AST__BAD,1)
MAKE_ALL(TextLab,int,0,1)
MAKE_ALL(TextLabGap,double,AST__BAD,1)
#undef MAKE_ALL
/* Now do attributes that are not axis specific. */
#define MAKE_ALL(attr,type) \
MAKE_CLEAR1(attr) \
MAKE_SET1(attr,type)
MAKE_ALL(Ink,int)
MAKE_ALL(Tol,double)
MAKE_ALL(Invisible,int)
MAKE_ALL(TickAll,int)
MAKE_ALL(ForceExterior,int)
MAKE_ALL(Border,int)
MAKE_ALL(Clip,int)
MAKE_ALL(ClipOp,int)
MAKE_ALL(Escape,int)
MAKE_ALL(Grid,int)
MAKE_ALL(Labelling,int)
#undef MAKE_ALL
/* First do element-specific attributes. */
#define MAKE_ALL(attr,type) \
MAKE_CLEAR2(attr) \
MAKE_SET2(attr,type)
MAKE_ALL(Style,int)
MAKE_ALL(Font,int)
MAKE_ALL(Colour,int)
MAKE_ALL(Width,double)
MAKE_ALL(Size,double)
#undef MAKE_ALL
/* Copy constructor. */
/* ----------------- */
static void Copy( const AstObject *objin, AstObject *objout, int *status ) {
/*
* Name:
* Copy
* Purpose:
* Copy constructor for Plot3D objects.
* Type:
* Private function.
* Synopsis:
* void Copy( const AstObject *objin, AstObject *objout, int *status )
* Description:
* This function implements the copy constructor for Plot3D objects.
* Parameters:
* objin
* Pointer to the object to be copied.
* objout
* Pointer to the object being constructed.
* status
* Pointer to the inherited status variable.
* Notes:
* - This constructor makes a deep copy.
*/
/* Local Variables: */
AstPlot3D *in; /* Pointer to input Plot3D */
AstPlot3D *out; /* Pointer to output Plot3D */
/* Check the global error status. */
if ( !astOK ) return;
/* Obtain pointers to the input and output Plot3Ds. */
in = (AstPlot3D *) objin;
out = (AstPlot3D *) objout;
/* Nullify the pointers stored in the output object since these will
currently be pointing at the input data (since the output is a simple
byte-for-byte copy of the input). Otherwise, the input data could be
freed by accidient if the output object is deleted due to an error
occuring in this function. */
out->plotxy = NULL;
out->plotxz = NULL;
out->plotyz = NULL;
/* Copy the encapsulated Plots */
if( in->plotxy ) out->plotxy = astCopy( in->plotxy );
if( in->plotxz ) out->plotxz = astCopy( in->plotxz );
if( in->plotyz ) out->plotyz = astCopy( in->plotyz );
/* If an error has occurred, free the output resources. */
if( !astOK ) Delete( (AstObject *) out, status );
}
/* Destructor. */
/* ----------- */
static void Delete( AstObject *obj, int *status ) {
/*
* Name:
* Delete
* Purpose:
* Destructor for Plot3D objects.
* Type:
* Private function.
* Synopsis:
* void Delete( AstObject *obj, int *status )
* Description:
* This function implements the destructor for Plot3D objects.
* Parameters:
* obj
* Pointer to the object to be deleted.
* status
* Pointer to the inherited status variable.
* Notes:
* This function attempts to execute even if the global error status is
* set.
*/
/* Local Variables: */
AstPlot3D *this;
/* Release the memory referred to in the Plot3D structure. */
this = (AstPlot3D *) obj;
if( this ) {
this->plotxy = astDelete( this->plotxy );
this->plotxz = astDelete( this->plotxz );
this->plotyz = astDelete( this->plotyz );
}
}
/* Dump function. */
/* -------------- */
static void Dump( AstObject *this_object, AstChannel *channel, int *status ) {
/*
* Name:
* Dump
* Purpose:
* Dump function for Plot3D objects.
* Type:
* Private function.
* Synopsis:
* void Dump( AstObject *this, AstChannel *channel, int *status )
* Description:
* This function implements the Dump function which writes out data
* for the Plot3D class to an output Channel.
* Parameters:
* this
* Pointer to the Plot3D whose data are being written.
* channel
* Pointer to the Channel to which the data are being written.
* status
* Pointer to the inherited status variable.
*/
/* Local Constants: */
#define KEY_LEN 50 /* Maximum length of a keyword */
/* Local Variables: */
AstPlot3D *this;
double dval;
char key[ KEY_LEN + 1 ];
int axis;
int helpful;
int ival;
int set;
const char *text;
/* Check the global error status. */
if ( !astOK ) return;
/* Obtain a pointer to the Plot3D structure. */
this = (AstPlot3D *) this_object;
/* Write out values representing the instance variables for the
Plot3D class. Accompany these with appropriate comment strings,
possibly depending on the values being written.*/
/* In the case of attributes, we first use the appropriate (private)
Test... member function to see if they are set. If so, we then use
the (private) Get... function to obtain the value to be written
out.
For attributes which are not set, we use the astGet... method to
obtain the value instead. This will supply a default value
(possibly provided by a derived class which over-rides this method)
which is more useful to a human reader as it corresponds to the
actual default attribute value. Since "set" will be zero, these
values are for information only and will not be read back. */
/* Norm. */
/* ----- */
for ( axis = 0; axis < 3; axis++ ) {
dval = astGetNorm( this, axis );
helpful = ( dval != -DBL_MAX );
(void) sprintf( key, "Norm%d", axis + 1 );
astWriteDouble( channel, key, 0, helpful, dval, "Text plane normal vector");
}
/* RootCorner. */
/* ----------- */
set = TestRootCorner( this, status );
ival = set ? GetRootCorner( this, status ) : astGetRootCorner( this );
text = RootCornerString( ival, status );
if( text ) {
astWriteString( channel, "RootCn", set, 1, text, "Corner where labelled axes meet" );
} else if( astOK ) {
astError( AST__INTER, "astDump(Plot3D): Illegal value %d found for "
"RootCorner attribute (interbal AST programming error).", status,
ival );
}
/* Labelled axes */
astWriteInt( channel, "AxPlX1", 1, 1, this->axis_plot1[0],
"Plot used to label the 3D X axis" );
astWriteInt( channel, "AxPlY1", 1, 1, this->axis_plot1[1],
"Plot used to label the 3D Y axis" );
astWriteInt( channel, "AxPlZ1", 1, 1, this->axis_plot1[2],
"Plot used to label the 3D Z axis" );
astWriteInt( channel, "AxInX1", 1, 1, this->axis_index1[0],
"Plot axis index used to label the 3D X axis" );
astWriteInt( channel, "AxInY1", 1, 1, this->axis_index1[1],
"Plot axis index used to label the 3D Y axis" );
astWriteInt( channel, "AxInZ1", 1, 1, this->axis_index1[2],
"Plot axis index used to label the 3D Z axis" );
/* Unlabelled axes */
astWriteInt( channel, "AxPlX2", 1, 1, this->axis_plot2[0],
"Other Plot touching the 3D X axis" );
astWriteInt( channel, "AxPlY2", 1, 1, this->axis_plot2[1],
"Other Plot touching the 3D Y axis" );
astWriteInt( channel, "AxPlZ2", 1, 1, this->axis_plot2[2],
"Other Plot touching the 3D Z axis" );
astWriteInt( channel, "AxInX2", 1, 1, this->axis_index2[0],
"Other Plot axis index touching the 3D X axis" );
astWriteInt( channel, "AxInY2", 1, 1, this->axis_index2[1],
"Other Plot axis index touching the 3D Y axis" );
astWriteInt( channel, "AxInZ2", 1, 1, this->axis_index2[2],
"Other Plot axis index touching the 3D Z axis" );
/* The Plot that spans the two connected axes. */
astWriteInt( channel, "BasePl", 1, 1, this->baseplot,
"Plot spanning two connected 3D axes" );
/* XY Plot */
astWriteObject( channel, "PlotXY", 1, 1, this->plotxy,
"Plot describing the XY plane" );
/* XZ Plot */
astWriteObject( channel, "PlotXZ", 1, 1, this->plotxz,
"Plot describing the XZ plane" );
/* YZ Plot */
astWriteObject( channel, "PlotYZ", 1, 1, this->plotyz,
"Plot describing the YZ plane" );
/* The index within the Plot3D FrameSet, of the original base Frame in
the FrameSet supplied when the Plot3D was constructed. */
astWriteInt( channel, "PixFrm", 1, 0, this->pix_frame,
"Index of original base Frame" );
/* Undefine macros local to this function. */
#undef KEY_LEN
}
/* Standard class functions. */
/* ========================= */
/* Implement the astIsAPlot3D and astCheckPlot3D functions using the
macros defined for this purpose in the "object.h" header file. */
astMAKE_ISA(Plot3D,Plot)
astMAKE_CHECK(Plot3D)
AstPlot3D *astPlot3D_( void *frame_void, const float *graphbox,
const double *basebox, const char *options, int *status, ...) {
/*
*+
* Name:
* astPlot3D
* Purpose:
* Create a Plot3D.
* Type:
* Protected function.
* Synopsis:
* #include "plot3d.h"
* AstPlot3D *astPlot3D( AstFrame *frame, const float *graphbox,
* const double *basebox, const char *options, ..., int *status )
* Class Membership:
* Plot3D constructor.
* Description:
* This function creates a new Plot3D and optionally initialises its
* attributes.
*
* The supplied Frame (or the base frame if a FrameSet was supplied) is
* assumed to be related to the graphics world coordinate system by a
* simple shift and scale along each axis. The mapping between graphics
* world coordinates and this Frame is specified by supplying the
* coordinates in both systems at the lower bounds and upper bounds corners
* of a box on the graphics device. By default, no graphics will be
* produced outside the supplied box, but this default behaviour can be
* changed by setting explicit values for the various clipping attributes.
* Parameters:
* frame
* A pointer to a Frame or FrameSet to be annotated. If a NULL pointer
* is supplied, then a default 3-D Frame will be created to which labels,
* etc, can be attached by setting the relevant Frame attributes.
* graphbox
* A pointer to an array of 6 values giving the graphics world
* coordinates of the lower bounds and upper bound corners of a box on
* the graphics output device. The first triple of values should be the
* coordinates of the lower bounds corner of the box and the second
* triple of values should be the coordinates of the upper bounds corner.
* basebox
* A pointer to an array of 6 values giving the coordinates in the
* supplied Frame, or base frame of the supplied FrameSet, at the
* lower bounds corner and upper bounds corners of the box specified
* by parameter graphbox. These should be supplied in the same order as
* for parameter "graphbox".
* options
* Pointer to a null terminated string containing an optional
* comma-separated list of attribute assignments to be used for
* initialising the new Plot3D. The syntax used is the same as for the
* astSet method and may include "printf" format specifiers identified
* by "%" symbols in the normal way.
* status
* Pointer to the inherited status variable.
* ...
* If the "options" string contains "%" format specifiers, then an
* optional list of arguments may follow it in order to supply values to
* be substituted for these specifiers. The rules for supplying these
* are identical to those for the astSet method (and for the C "printf"
* function).
* Returned Value:
* A pointer to the new Plot3D.
* Notes:
* - A NULL pointer will be returned if this function is invoked with the
* global error status set, or if it should fail for any reason.
*-
* Implementation Notes:
* - This function implements the basic Plot3D constructor which
* is available via the protected interface to the Plot3D class.
* A public interface is provided by the astPlot3DId_ function.
*/
/* Local Variables: */
astDECLARE_GLOBALS /* Pointer to thread-specific global data */
AstFrame *frame; /* Pointer to Frame structure */
AstPlot3D *new; /* Pointer to new Plot3D */
va_list args; /* Variable argument list */
/* Get a pointer to the thread specific global data structure. */
astGET_GLOBALS(NULL);
/* Check the global status. */
if ( !astOK ) return NULL;
/* Initialise variables to avoid "used of uninitialised variable"
messages from dumb compilers. */
new = NULL;
/* Obtain and validate a pointer to any supplied Frame structure. */
if( frame_void ){
frame = astCheckFrame( frame_void );
} else {
frame = NULL;
}
/* Check the pointer can be used. */
if ( astOK ) {
/* Initialise the Plot3D, allocating memory and initialising the
virtual function table as well if necessary. */
new = astInitPlot3D( NULL, sizeof( AstPlot3D ), !class_init,
&class_vtab, "Plot3D", frame, graphbox,
basebox );
/* If successful, note that the virtual function table has been
initialised. */
if ( astOK ) {
class_init = 1;
/* Obtain the variable argument list and pass it along with the
options string to the astVSet method to initialise the new
Plot's attributes. */
va_start( args, status );
astVSet( new, options, NULL, args );
va_end( args );
/* If an error occurred, clean up by deleting the new object. */
if ( !astOK ) new = astDelete( new );
}
}
/* Return a pointer to the new Plot. */
return new;
}
AstPlot3D *astInitPlot3D_( void *mem, size_t size, int init,
AstPlot3DVtab *vtab, const char *name,
AstFrame *frame, const float *graphbox,
const double *basebox, int *status ) {
/*
*+
* Name:
* astInitPlot3D
* Purpose:
* Initialise a Plot3D.
* Type:
* Protected function.
* Synopsis:
* #include "plot3d.h"
* AstPlot3D *astInitPlot3D( void *mem, size_t size, int init,
* AstPlotVtab *vtab, const char *name,
* AstFrame *frame, const float *graphbox,
* const double *basebox )
* Class Membership:
* Plot3D initialiser.
* Description:
* This function is provided for use by class implementations to
* initialise a new Plot3D object. It allocates memory (if
* necessary) to accommodate the Plot3D plus any additional data
* associated with the derived class. It then initialises a
* Plot3D structure at the start of this memory. If the "init"
* flag is set, it also initialises the contents of a virtual function
* table for a Plot3D at the start of the memory passed via the
* "vtab" parameter.
* Parameters:
* mem
* A pointer to the memory in which the Plot3D is to be
* created. This must be of sufficient size to accommodate the
* Plot3D data (sizeof(Plot3D)) plus any data used by
* the derived class. If a value of NULL is given, this function
* will allocate the memory itself using the "size" parameter to
* determine its size.
* size
* The amount of memory used by the Plot3D (plus derived
* class data). This will be used to allocate memory if a value of
* NULL is given for the "mem" parameter. This value is also stored
* in the Plot3D structure, so a valid value must be supplied
* even if not required for allocating memory.
* init
* A logical flag indicating if the Plot3D's virtual function
* table is to be initialised. If this value is non-zero, the
* virtual function table will be initialised by this function.
* vtab
* Pointer to the start of the virtual function table to be
* associated with the new Plot3D.
* name
* Pointer to a constant null-terminated character string which
* contains the name of the class to which the new object belongs
* (it is this pointer value that will subsequently be returned by
* the astGetClass method).
* fset
* A pointer to the Frame or Frameset to be annotated.
* graphbox
* A pointer to an array of 6 values giving the graphics coordinates
* of the bottom left and top right corners of a box on the graphics
* output device. The first triple of values should be the graphics
* coordinates of the bottom left corner of the box and the second
* triple of values are the graphics coordinates of the top right corner.
* basebox
* A pointer to an array of 6 values giving the coordinates in the
* supplied Frame or base Frame of the supplied FrameSet at the bottom
* left and top right corners of the box specified by parameter graphbox.
* These should be supplied in the same order as for parameter "graphbox".
* Returned Value:
* A pointer to the new Plot3D.
* Notes:
* - A null pointer will be returned if this function is invoked with the
* global error status set, or if it should fail for any reason.
*-
*/
/* Local Variables: */
AstFrame *baseframe = NULL; /* Pointer to base frame */
AstFrame *graphicsframe = NULL; /* Pointer to graphics frame */
AstFrameSet *fset0 = NULL; /* The n-D FrameSet to be annotated */
AstFrameSet *fset = NULL; /* The 2-D FrameSet to be annotated */
AstMapping *map = NULL; /* Mapping for converting bbox -> gbox */
AstPlot3D *new = NULL; /* Pointer to new Plot3D */
char *mess = NULL; /* Pointer to a descriptive message */
double djunkbox[ 4 ] = { 0.0, 0.0, 1.0, 1.0 }; /* Dummy 2D basebox */
float fjunkbox[ 4 ] = { 0.0, 0.0, 1.0, 1.0 }; /* Dummy 2D graphbox */
int bi; /* Index of base frame */
int ci; /* Index of current frame */
int i; /* Loop count */
int ii; /* Loop count */
int naxes; /* No. of axes in frame */
int nfrm; /* Number of Frames in frameset */
/* Check the global status. */
if ( !astOK ) return NULL;
/* If necessary, initialise the virtual function table. */
if ( init ) astInitPlot3DVtab( vtab, name );
/* First of all we need to ensure that we have a FrameSet and a base
Frame on which to base the new Plot3D. If a NULL Frame pointer was
supplied, create a default 3-D Frame, and then create a FrameSet
containing just this default Frame. Also store a pointer to a
message which can be used to describe the object within error
messages. */
if( !frame ){
baseframe = astFrame( 3, "", status );
fset = astFrameSet( baseframe, "", status );
mess = "default 3-d Frame";
/* If an object was supplied, report an error if it is not a Frame or
an object derived from a Frame (such as a FrameSet). */
} else if( !astIsAFrame( frame ) ){
if( astOK ){
astError( AST__BDOBJ, "astInitPlot3D(%s): Supplied Object (class '%s') "
"is not a Frame.", status, name, astGetClass( frame ) );
}
/* If the supplied object is a Plot3D or an object derived from a Plot3D
(a Plot3D is a sort of Frame and so will pass the above test), extract a
FrameSet from the Plot3D, and clear the Domain attribute for any existing
Frames which have Domain GRAPHICS. */
} else if( astIsAPlot3D( frame ) ){
fset0 = astFrameSet( frame, "", status );
fset = astCopy( fset0 );
fset0 = astAnnul( fset0 );
for( i = 0; i < astGetNframe( fset ); i++ ) {
graphicsframe = astGetFrame( fset, i );
if( !strcmp( astGetDomain( graphicsframe ), "GRAPHICS" ) ) {
astClearDomain( graphicsframe );
}
graphicsframe = astAnnul( graphicsframe );
}
baseframe = astGetFrame( fset, astGetBase( fset ) );
mess = "base Frame of the supplied Plot3D";
/* If the object is not a FrameSet, create a FrameSet holding the
supplied Frame. If the Frame is not 3D, an extra 3D Frame is
included in the FrameSet derived from axes 1, 2 and 3 of the supplied
Frame. This new Frame becomes the base Frame. */
} else if( !astIsAFrameSet( frame ) ){
fset0 = astFrameSet( frame, "", status );
mess = "supplied Frame";
fset = Fset3D( fset0, AST__BASE, status );
fset0 = astAnnul( fset0 );
baseframe = astGetFrame( fset, astGetBase( fset ) );
/* If a FrameSet was supplied, ensure it has a 3D base Frame.
If the supplied FrameSet is not 3D, then a new base Frame is
inserted into it which is derived from axes 1, 2 and 3 of the
original base Frame. */
} else {
fset = Fset3D( (AstFrameSet *) frame, AST__BASE, status );
baseframe = astGetFrame( fset, astGetBase( fset ) );
mess = "base Frame of the supplied FrameSet";
}
/* Check that there are 3 axes in the base frame of the FrameSet. */
naxes = astGetNaxes( baseframe );
if ( naxes != 3 && astOK ) {
astError( AST__NAXIN, "astInitPlot3D(%s): Number of axes (%d) in the %s "
"is invalid - this number should be 3.", status, name, naxes, mess );
}
/* Check that no dimension of the graphbox is bad. */
if( astISBAD(graphbox[0]) || astISBAD(graphbox[1]) ||
astISBAD(graphbox[2]) || astISBAD(graphbox[3]) ||
astISBAD(graphbox[4]) || astISBAD(graphbox[5]) ) {
astError( AST__BADBX, "astInitPlot3D(%s): The plotting volume has undefined limits "
"in the graphics world coordinate system.", status, name );
}
/* Check that no dimension of the graphbox is zero. */
if( ( graphbox[ 3 ] == graphbox[ 0 ] ||
graphbox[ 4 ] == graphbox[ 1 ] ||
graphbox[ 5 ] == graphbox[ 2 ] ) && astOK ){
astError( AST__BADBX, "astInitPlot3D(%s): The plotting volume has zero size "
"in the graphics world coordinate system.", status, name );
}
/* Check that no dimension of the basebox is bad. */
if( astISBAD(basebox[0]) || astISBAD(basebox[1]) ||
astISBAD(basebox[2]) || astISBAD(basebox[3]) ||
astISBAD(basebox[4]) || astISBAD(basebox[5]) ) {
astError( AST__BADBX, "astInitPlot3D(%s): The limits of "
"the %s are undefined or bad.", status, name, name );
}
/* Create a Frame which describes the graphics world coordinate system. */
graphicsframe = astFrame( 3, "Domain=GRAPHICS,Title=Graphical Coordinates", status );
/* Initialise a 2D Plot structure (the parent class) as the first component
within the Plot3D structure, allocating memory if necessary. We supply
dummy arguments since we will not be using the parent Plot class to
draw anything. We supply a NULL vtab pointer so that methods defined by
the Plot class will be used during the construction of the Plot3D. Once
the Plot3D is fully constructed, we will use astSetVtab to establish
the correct vtab. */
new = (AstPlot3D *) astInitPlot( mem, size, 0, NULL, name, NULL, fjunkbox,
djunkbox );
if ( astOK ) {
/* Initialise the Plot3D data. */
/* ----------------------------- */
/* Remove all Frames from the parent FrameSet except for the base (2D graphics)
Frame (we leave this last Frame since an error is reported if the last
Frame is removed from a FrameSet). We do this by repeatedly removing the
first Frame, causing all remaining Frames to have their index reduced by 1.
When the base Frame arrives at index 1, we skip it and start removing the
second frame instead. */
nfrm = astGetNframe( new );
i = 1;
for( ii = 0; ii < nfrm; ii++ ) {
if( i > 1 || astGetBase( new ) != 1 ) {
astRemoveFrame( new, i );
} else {
i = 2;
}
}
/* Add in the 3D graphics Frame, using a PermMap to connect it to the
2D graphics Frame. */
map = (AstMapping *) astPermMap( 2, NULL, 3, NULL, NULL, "", status );
astAddFrame( new, 1, map, graphicsframe );
map = astAnnul( map );
/* And remove the 2D GRAPHICS Frame, leaving just the 3D GRAPHICS Frame
in the FrameSet, with index 1. */
astRemoveFrame( new, 1 );
/* Get the index of the current (physical) and base (pixel) Frames in
the supplied FrameSet. */
bi = astGetBase( fset );
ci = astGetCurrent( fset );
/* Temporarily set the current Frame to be the pixel frame. */
astSetCurrent( fset, bi );
/* Get a double precision version of "graphbox", and store it in the
Plot3D structure. */
new->gbox[ 0 ] = (double) graphbox[ 0 ];
new->gbox[ 1 ] = (double) graphbox[ 1 ];
new->gbox[ 2 ] = (double) graphbox[ 2 ];
new->gbox[ 3 ] = (double) graphbox[ 3 ];
new->gbox[ 4 ] = (double) graphbox[ 4 ];
new->gbox[ 5 ] = (double) graphbox[ 5 ];
/* The base Frame of the supplied FrameSet is mapped linearly onto the
graphics frame. Create a WinMap that maps the base box (within the
base Frame of the supplied FrameSet) onto the graphics box. */
map = (AstMapping *) astWinMap( 3, new->gbox, new->gbox + 3, basebox,
basebox + 3, "", status );
/* Add the supplied FrameSet into the Plot3D (i.e. FrameSet) created
earlier. This leaves the graphics frame with index 1 in the
returned Plot3D. */
astAddFrame( (AstFrameSet *) new, 1, map, fset );
map = astAnnul( map );
/* Set the current Frame in the Plot to be the physical coordinate Frame
(with index incremented by one because the graphics Frame has been added). */
astSetCurrent( (AstFrameSet *) new, ci + 1 );
/* Note the index of the original base Frame in the Plot3D FrameSet */
new->pix_frame = bi + 1;
/* Re-establish the original current Frame in the supplied FrameSet. */
astSetCurrent( fset, ci );
/* Initialise the Plot pointers. */
new->plotxy = NULL;
new->plotxz = NULL;
new->plotyz = NULL;
/* Initialise other attributes */
new->rootcorner = -1;
/* Initialise the normal vector to the plane used by astText and astMark. */
new->norm[ 0 ] = AST__BAD;
new->norm[ 1 ] = AST__BAD;
new->norm[ 2 ] = AST__BAD;
/* Create three 2D Plots to describe the three planes in the cube. */
CreatePlots( new, fset, graphbox, basebox, status );
/* Ensure that attempts to use the graphics interface of the parent
Plot structure get forwarded to the relevant 3D routines defined in
this class. */
astGrfSet( new, "Attr", (AstGrfFun) Attr3D );
astSetGrf( new, 1 );
/* Change the virtual function table stored in the new Plot3D, from the Plot
vtab (established when astINitPlot was called above), to the supplied
vtab. */
if( vtab ) astSetVtab( new, vtab );
/* Ensure that these Plots use the grf functions defined by this class
(Plot3D). This means that whenever a Plot draws anything, it will use
the appropriate grf function defined in this class to do the drawing.
The grf functions defined in this class, convert the grf call into a
grf3D call apprpriate the plane spanned by the Plot. */
Set3DGrf( new, new->plotxy, XY, status );
Set3DGrf( new, new->plotxz, XZ, status );
Set3DGrf( new, new->plotyz, YZ, status );
/* Set up the Edges attributes in the encapsulated Plots so that labels
appear on the requited edges. Initially, the root corner is "LLL"
(i.e. the lower bound on every axis). */
ChangeRootCorner( new, 0, 0, status );
}
/* Annul the frame. */
graphicsframe = astAnnul( graphicsframe );
/* If an error occurred, clean up by deleting the new object. */
if ( !astOK ) new = astDelete( new );
/* Annul the pointer to the base Frame and FrameSet. */
baseframe = astAnnul( baseframe );
fset = astAnnul( fset );
/* Return a pointer to the new object. */
return new;
}
AstPlot3D *astLoadPlot3D_( void *mem, size_t size, AstPlot3DVtab *vtab,
const char *name, AstChannel *channel, int *status ) {
/*
*+
* Name:
* astLoadPlot3D
* Purpose:
* Load a Plot3D.
* Type:
* Protected function.
* Synopsis:
* #include "plot3d.h"
* AstPlot3D *astLoadPlot3D( void *mem, size_t size,
* AstPlot3DVtab *vtab,
* const char *name, AstChannel *channel )
* Class Membership:
* Plot3D loader.
* Description:
* This function is provided to load a new Plot3D using data read
* from a Channel. It first loads the data used by the parent class
* (which allocates memory if necessary) and then initialises a
* Plot3D structure in this memory, using data read from the
* input Channel.
* Parameters:
* mem
* A pointer to the memory into which the Plot3D is to be
* loaded. This must be of sufficient size to accommodate the
* Plot3D data (sizeof(Plot3D)) plus any data used by
* derived classes. If a value of NULL is given, this function
* will allocate the memory itself using the "size" parameter to
* determine its size.
* size
* The amount of memory used by the Plot3D (plus derived class
* data). This will be used to allocate memory if a value of
* NULL is given for the "mem" parameter. This value is also
* stored in the Plot3D structure, so a valid value must be
* supplied even if not required for allocating memory.
*
* If the "vtab" parameter is NULL, the "size" value is ignored
* and sizeof(AstPlot3D) is used instead.
* vtab
* Pointer to the start of the virtual function table to be
* associated with the new Plot3D. If this is NULL, a pointer
* to the (static) virtual function table for the Plot3D class
* is used instead.
* name
* Pointer to a constant null-terminated character string which
* contains the name of the class to which the new object
* belongs (it is this pointer value that will subsequently be
* returned by the astGetClass method).
*
* If the "vtab" parameter is NULL, the "name" value is ignored
* and a pointer to the string "Plot3D" is used instead.
* Returned Value:
* A pointer to the new Plot3D.
* Notes:
* - A null pointer will be returned if this function is invoked
* with the global error status set, or if it should fail for any
* reason.
*-
*/
/* Local Constants: */
#define KEY_LEN 50 /* Maximum length of a keyword */
/* Local Variables: */
astDECLARE_GLOBALS
AstPlot3D *new;
char key[ KEY_LEN + 1 ];
char *text;
int axis;
int i;
/* Initialise. */
new = NULL;
/* Check the global error status. */
if( !astOK ) return new;
/* Get a pointer to the thread specific global data structure. */
astGET_GLOBALS(channel);
/* If a NULL virtual function table has been supplied, then this is
the first loader to be invoked for this Plot3D. In this case the
Plot3D belongs to this class, so supply appropriate values to be
passed to the parent class loader (and its parent, etc.). */
if ( !vtab ) {
size = sizeof( AstPlot3D );
vtab = &class_vtab;
name = "Plot3D";
/* If required, initialise the virtual function table for this class. */
if ( !class_init ) {
astInitPlot3DVtab( vtab, name );
class_init = 1;
}
}
/* Allocate memory to hold the new Object. We allocate it now rather than
waiting for astInitObject to allocate it so that we can pass a NULL
vtab pointer to the Plot loader, thus causing the Plot loader to use the
function implementations provided by the Plot class rather than those
provided by the class being instantiated. */
if( !mem ) mem = astMalloc( size );
/* Invoke the parent class loader to load data for all the ancestral
classes of the current one, returning a pointer to the resulting
partly-built Plot3D. Pass a NULL vtab pointer so that the "new" object
will be loaded using Plot methods rather than than Plot3D methods.
This is important because the implementations provided by the Plot3D
class for the Plot attribute accessors require the existence of the
encapsulated Plots held within the Plot3D, but these have not yet been
created. */
new = astLoadPlot( mem, size, NULL, name, channel );
if ( astOK ) {
/* Now modify the new object to use the supplied vtab. */
astSetVtab( new, vtab );
/* Read input data. */
/* ================ */
/* Request the input Channel to read all the input data appropriate to
this class into the internal "values list". */
astReadClassData( channel, "Plot3D" );
/* Now read each individual data item from this list and use it to
initialise the appropriate instance variable(s) for this class. */
/* In the case of attributes, we first read the "raw" input value,
supplying the "unset" value as the default. If a "set" value is
obtained, we then use the appropriate (private) Set... member
function to validate and set the value properly. */
/* Norm. */
/* ----- */
for( axis = 0; axis < 3; axis++ ) {
(void) sprintf( key, "norm%d", axis + 1 );
new->norm[ axis ] = astReadDouble( channel, key, AST__BAD );
if( TestNorm( new, axis, status ) ) SetNorm( new, axis, new->norm[ axis ], status );
}
/* RootCorner. */
/* ----------- */
text = astReadString( channel, "rootcn", " " );
if( astOK && strcmp( text, " " ) ) {
new->rootcorner = RootCornerInt( text, status );
if( new->rootcorner < 0 && astOK ) {
astError( AST__INTER, "astRead(Plot3D): Corrupt Plot3D contains "
"invalid RootCorner attribute value (%s).", status, text );
}
} else {
new->rootcorner = -1;
}
text = astFree( text );
/* Labelled axes */
new->axis_plot1[0] = astReadInt( channel, "axplx1", -1 );
new->axis_plot1[1] = astReadInt( channel, "axply1", -1 );
new->axis_plot1[2] = astReadInt( channel, "axplz1", -1 );
new->axis_index1[0] = astReadInt( channel, "axinx1", -1 );
new->axis_index1[1] = astReadInt( channel, "axiny1", -1 );
new->axis_index1[2] = astReadInt( channel, "axinz1", -1 );
/* Unlabelled axes */
new->axis_plot2[0] = astReadInt( channel, "axplx2", -1 );
new->axis_plot2[1] = astReadInt( channel, "axply2", -1 );
new->axis_plot2[2] = astReadInt( channel, "axplz2", -1 );
new->axis_index2[0] = astReadInt( channel, "axinx2", -1 );
new->axis_index2[1] = astReadInt( channel, "axiny2", -1 );
new->axis_index2[2] = astReadInt( channel, "axinz2", -1 );
/* Plot that spans two connected 3D axes. */
new->baseplot = astReadInt( channel, "basepl", -1 );
/* XY Plot */
new->plotxy = astReadObject( channel, "plotxy", NULL );
/* XZ Plot */
new->plotxz = astReadObject( channel, "plotxz", NULL );
/* YZ Plot */
new->plotyz = astReadObject( channel, "plotyz", NULL );
/* The index within the Plot3D FrameSet, of the original base Frame in
the FrameSet supplied when the Plot3D was constructed. */
new->pix_frame = astReadInt( channel, "pixfrm", AST__NOFRAME );
/* Ensure that these Plots use the grf functions defined by this class
(Plot3D). This means that whener a Plot draws anything, it will use
the appropriate grf function defined in this class to do the drawing.
The grf functions defined in this class, convert the grf call into a
grf3D call apprpriate the plane spanned by the Plot. */
Set3DGrf( new, new->plotxy, XY, status );
Set3DGrf( new, new->plotxz, XZ, status );
Set3DGrf( new, new->plotyz, YZ, status );
/* For attributes of the parent Plot class will have been loaded
each attribute that has a set value in the parent Plot structure,
re-set the value so that it gets copied to the copy the to the
encapsulated Plots. First do axis specific attributes. */
#define COPY_ATTR(attr,nval) \
for( i = 0; i < nval; i++ ) { \
if( astTest##attr(new,i) ) astSet##attr(new,i,astGet##attr(new,i)); \
}
COPY_ATTR(MinTick,3)
COPY_ATTR(Abbrev,3)
COPY_ATTR(Gap,3)
COPY_ATTR(LogGap,3)
COPY_ATTR(LogPlot,3)
COPY_ATTR(LogTicks,3)
COPY_ATTR(LogLabel,3)
COPY_ATTR(LabelUp,3)
COPY_ATTR(DrawAxes,3)
COPY_ATTR(LabelUnits,3)
COPY_ATTR(MinTickLen,3)
COPY_ATTR(MajTickLen,3)
COPY_ATTR(NumLab,3)
COPY_ATTR(NumLabGap,3)
COPY_ATTR(TextLab,3)
COPY_ATTR(TextLabGap,3)
COPY_ATTR(Style,AST__NPID)
COPY_ATTR(Font,AST__NPID)
COPY_ATTR(Colour,AST__NPID)
COPY_ATTR(Width,AST__NPID)
COPY_ATTR(Size,AST__NPID)
#undef COPY_ATTR
/* Now do attributes that are not axis specific. */
#define COPY_ATTR(attr) \
if( astTest##attr(new) ) astSet##attr(new,astGet##attr(new));
COPY_ATTR(Ink)
COPY_ATTR(Tol)
COPY_ATTR(Invisible)
COPY_ATTR(TickAll)
COPY_ATTR(ForceExterior)
COPY_ATTR(Border)
COPY_ATTR(Clip)
COPY_ATTR(ClipOp)
COPY_ATTR(Escape)
COPY_ATTR(Grid)
COPY_ATTR(Labelling)
#undef COPY_ATTR
/* If an error occurred, clean up by deleting the new Plot3D. */
if ( !astOK ) new = astDelete( new );
}
/* Return the new Plot3D pointer. */
return new;
/* Undefine macros local to this function. */
#undef KEY_LEN
}
/* Virtual function interfaces. */
/* ============================ */
/* These provide the external interface to the virtual functions defined by
this class. Each simply checks the global error status and then locates and
executes the appropriate member function, using the function pointer stored
in the object's virtual function table (this pointer is located using the
astMEMBER macro defined in "object.h").
Note that the member function may not be the one defined here, as it may
have been over-ridden by a derived class. However, it should still have the
same interface. */
void astClearRootCorner_( AstPlot3D *this, int *status ) {
if ( !astOK ) return;
(**astMEMBER(this,Plot3D,ClearRootCorner))( this, status );
}
void astSetRootCorner_( AstPlot3D *this, int value, int *status ) {
if ( !astOK ) return;
(**astMEMBER(this,Plot3D,SetRootCorner))( this, value, status );
}
/* Special public interface functions. */
/* =================================== */
/* These provide the public interface to certain special functions
whose public interface cannot be handled using macros (such as
astINVOKE) alone. In general, they are named after the
corresponding protected version of the function, but with "Id"
appended to the name. */
/* Public Interface Function Prototypes. */
/* ------------------------------------- */
/* The following functions have public prototypes only (i.e. no
protected prototypes), so we must provide local prototypes for use
within this module. */
AstPlot3D *astPlot3DId_( void *frame_void, const float graphbox[6],
const double basebox[6], const char *, ... );
/* Special interface function implementations. */
/* ------------------------------------------- */
AstPlot3D *astPlot3DId_( void *frame_void, const float graphbox[6],
const double basebox[6], const char *options, ... ) {
/*
*++
* Name:
c astPlot3D
f AST_PLOT3D
* Purpose:
* Create a Plot3D.
* Type:
* Public function.
* Synopsis:
c #include "plot3d.h"
c AstPlot3D *astPlot3D( AstFrame *frame, const float graphbox[ 6 ],
c const double basebox[ 6 ], const char *options, ... )
f RESULT = AST_PLOT3D( FRAME, GRAPHBOX, BASEBOX, OPTIONS, STATUS )
* Class Membership:
* Plot3D constructor.
* Description:
* This function creates a new Plot3D and optionally initialises
* its attributes.
*
* A Plot3D is a specialised form of Plot that provides facilities
* for producing 3D graphical output.
* Parameters:
c frame
f FRAME = INTEGER (Given)
* Pointer to a Frame describing the physical coordinate system
* in which to plot. A pointer to a FrameSet may also be given,
* in which case its current Frame will be used to define the
* physical coordinate system and its base Frame will be mapped
* on to graphical coordinates (see below).
*
* If a null Object pointer (AST__NULL) is given, a default
* 3-dimensional Frame will be used to describe the physical
* coordinate system. Labels, etc. may then be attached to this
* by setting the appropriate Frame attributes
* (e.g. Label(axis)) for the Plot.
c graphbox
f GRAPHBOX( 6 ) = REAL (Given)
* An array giving the position and extent of the plotting volume
* (within the plotting space of the underlying graphics system)
* in which graphical output is to appear. This must be
* specified using graphical coordinates appropriate to the
* underlying graphics system.
*
* The first triple of values should give the coordinates of the
* bottom left corner of the plotting volume and the second triple
* should give the coordinates of the top right corner. The
* coordinate on the horizontal axis should be given first in
* each pair. Note that the order in which these points are
* given is important because it defines up, down, left and
* right for subsequent graphical operations.
c basebox
f BASEBOX( 6 ) = DOUBLE PRECISION (Given)
* An array giving the coordinates of two points in the supplied
* Frame (or in the base Frame if a FrameSet was supplied) which
* correspond to the bottom left and top right corners of the
* plotting volume, as specified above. This range of coordinates
* will be mapped linearly on to the plotting area. The
* coordinates should be given in the same order as above.
c options
f OPTIONS = CHARACTER * ( * ) (Given)
c Pointer to a null-terminated string containing an optional
c comma-separated list of attribute assignments to be used for
c initialising the new Plot3D. The syntax used is identical to
c that for the astSet function and may include "printf" format
c specifiers identified by "%" symbols in the normal way.
c If no initialisation is required, a zero-length string may be
c supplied.
f A character string containing an optional comma-separated
f list of attribute assignments to be used for initialising the
f new Plot3D. The syntax used is identical to that for the
f AST_SET routine. If no initialisation is required, a blank
f value may be supplied.
c ...
c If the "options" string contains "%" format specifiers, then
c an optional list of additional arguments may follow it in
c order to supply values to be substituted for these
c specifiers. The rules for supplying these are identical to
c those for the astSet function (and for the C "printf"
c function).
f STATUS = INTEGER (Given and Returned)
f The global status.
* Returned Value:
c astPlot3D()
f AST_PLOT3D = INTEGER
* A pointer to the new Plot3D.
* Notes:
* - The base Frame of the returned Plot3D will be a new Frame which
* is created by this function to represent the coordinate system
* of the underlying graphics system (graphical coordinates). It is
* given a Frame index of 1 within the Plot3D. The choice of base
* Frame (Base attribute) should not, in general, be changed once a
* Plot3D has been created (although you could use this as a way of
* moving the plotting area around on the plotting surface).
c - If a Frame is supplied (via the "frame" pointer), then it
f - If a Frame is supplied (via the FRAME pointer), then it
* becomes the current Frame of the new Plot3D and is given a Frame
* index of 2.
c - If a FrameSet is supplied (via the "frame" pointer), then
f - If a FrameSet is supplied (via the FRAME pointer), then
* all the Frames within this FrameSet become part of the new Plot3D
* (where their Frame indices are increased by 1), with the
* FrameSet's current Frame becoming the current Frame of the Plot3D.
* - At least one of the three axes of the current Frame must be
* independent of the other two current Frame axes.
* - If a null Object pointer (AST__NULL) is supplied (via the
c "frame" pointer), then the returned Plot3D will contain two
f FRAME pointer), then the returned Plot3D will contain two
* Frames, both created by this function. The base Frame will
* describe graphics coordinates (as above) and the current Frame
* will be a basic Frame with no attributes set (this will
* therefore give default values for such things as the Plot3D Title
* and the Label on each axis). Physical coordinates will be mapped
* linearly on to graphical coordinates.
* - An error will result if the Frame supplied (or the base Frame
* if a FrameSet was supplied) is not 3-dimensional.
* - A null Object pointer (AST__NULL) will be returned if this
c function is invoked with the AST error status set, or if it
f function is invoked with STATUS set to an error value, or if it
* should fail for any reason.
*--
* Implementation Notes:
* - This function implements the external (public) interface to
* the astPlot3D constructor function. It returns an ID value
* (instead of a true C pointer) to external users, and must be
* provided because astPlot3D_ has a variable argument list which
* cannot be encapsulated in a macro (where this conversion would
* otherwise occur).
* - Because no checking or casting of arguments is performed
* before the function is invoked, the "frame" parameter is of type
* (void *) and is converted from an ID value to a pointer and
* validated within the function itself.
* - The variable argument list also prevents this function from
* invoking astPlot3D_ directly, so it must be a
* re-implementation of it in all respects, except for the final
* conversion of the result to an ID value.
*/
/* Local Variables: */
astDECLARE_GLOBALS /* Pointer to thread-specific global data */
AstFrame *frame; /* Pointer to Frame structure */
AstPlot3D *new; /* Pointer to new Plot3D */
va_list args; /* Variable argument list */
int *status; /* Pointer to inherited status value */
/* Get a pointer to the thread specific global data structure. */
astGET_GLOBALS(NULL);
/* Get a pointer to the inherited status value. */
status = astGetStatusPtr;
/* Check the global status. */
if ( !astOK ) return NULL;
/* Initialise variables to avoid "used of uninitialised variable"
messages from dumb compilers. */
new = NULL;
/* Obtain a Frame pointer from any ID supplied and validate the
pointer to ensure it identifies a valid Frame. */
if( frame_void ){
frame = astVerifyFrame( astMakePointer( frame_void ) );
} else {
frame = NULL;
}
/* Check the pointer can be used. */
if ( astOK ) {
/* Initialise the Plot3D, allocating memory and initialising the
virtual function table as well if necessary. */
new = astInitPlot3D( NULL, sizeof( AstPlot3D ), !class_init,
&class_vtab, "Plot3D", frame, graphbox,
basebox );
/* If successful, note that the virtual function table has been
initialised. */
if ( astOK ) {
class_init = 1;
/* Obtain the variable argument list and pass it along with the
options string to the astVSet method to initialise the new
Plot3D's attributes. */
va_start( args, options );
astVSet( new, options, NULL, args );
va_end( args );
/* If an error occurred, clean up by deleting the new object. */
if ( !astOK ) new = astDelete( new );
}
}
/* Return an ID value for the new Plot3D. */
return astMakeId( new );
}
/* Macros that define method to override the methods of the Plot class
that are not currently implemented by this class. They just report an
error if called. */
#define METHOD1(name) \
static void name(ARGLIST,int *status){ \
if( !astOK ) return; \
astError( AST__INTER, "ast##name(%s): The ast##name " \
"method cannot be used with a %s (programming error).", status, \
astGetClass( this ), astGetClass( this ) ); \
}
#define METHOD2(name,rettype,retval) \
static rettype name(ARGLIST,int *status){ \
if( !astOK ) return retval; \
astError( AST__INTER, "ast##name(%s): The ast##name " \
"method cannot be used with a %s (programming error).", status, \
astGetClass( this ), astGetClass( this ) ); \
return retval; \
}
#define ARGLIST AstPlot *this
METHOD2(GetGrfContext,AstKeyMap *,NULL)
#undef ARGLIST
#define ARGLIST AstPlot *this
METHOD1(GrfPop)
#undef ARGLIST
#define ARGLIST AstPlot *this
METHOD1(GrfPush)
#undef ARGLIST
#define ARGLIST AstPlot *this, const char *name, AstGrfFun fun
METHOD1(GrfSet)
#undef ARGLIST
#define ARGLIST AstPlot *this, int axis, const double start[], double length
METHOD1(GridLine)
#undef ARGLIST
#define ARGLIST AstPlot *this, float lbnd[2], float ubnd[2]
METHOD1(BoundingBox)
#undef ARGLIST
#define ARGLIST AstPlot *this, int iframe, const double lbnd[], const double ubnd[]
METHOD1(Clip)
#undef ARGLIST
#define ARGLIST AstPlot *this, const double start[], const double finish[]
METHOD1(Curve)
#undef ARGLIST
#define ARGLIST AstPlot *this, AstMapping *map
METHOD1(GenCurve)
#undef ARGLIST
|