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
|
2007-10-01 01:11:21 Rev 4120 larsa
* build/msvc6/include/config-debug.h, build/msvc7/include/config-
debug.h, build/msvc8/coin2_install.vcproj, build/msvc8/include
/config-debug.h, build/msvc7/coin2.sln,
build/msvc8/coin2_uninstall.vcproj, build/msvc8/coin2.sln,
build/msvc8/coin2.vcproj, build/msvc6/docs/coin2.doxygen,
build/msvc7/docs/coin2.doxygen,
build/msvc6/include/Inventor/C/basic.h,
build/msvc8/docs/coin2.doxygen,
build/msvc7/include/Inventor/C/basic.h,
build/msvc8/include/Inventor/C/basic.h,
build/msvc8/coin2_docs.vcproj, build/msvc6/include/config-release.h,
build/msvc7/include/config-release.h, build/msvc8/include/config-
release.h:
regenerated Visual Studio files
2007-10-01 00:29:12 Rev 4119 larsa
* configure, configure.ac:
stamp Coin v2.5.0
2007-10-01 00:27:50 Rev 4118 larsa
* README, Makefile.in, docs/announcement-2_5_0.txt, INSTALL,
docs/ChangeLog.v2.5.0, Makefile.am, cfg/config.guess, RELNOTES, NEWS,
cfg/config.sub:
documentation updates and bootstrap
2007-10-01 00:14:14 Rev 4117 frodo
* docs/releases.dox:
add missing section tag
2007-09-30 23:58:03 Rev 4116 larsa
* src/fields/SoSFVec4s.cpp, src/fields/SoSFVec4ub.cpp,
src/fields/SoSFBox2i32.cpp, src/fields/SoMFVec3b.cpp,
src/fields/SoSFBox2s.cpp, src/fields/SoMFVec4ui32.cpp,
src/fields/SoSFVec3b.cpp, src/fields/SoMFVec4us.cpp,
src/fields/SoMFDouble.cpp, src/fields/SoSFVec4ui32.cpp,
src/fields/SoMFVec3i32.cpp, src/fields/SoSFVec4us.cpp,
src/fields/SoSFDouble.cpp, src/fields/SoMFVec3s.cpp,
src/fields/SoSFVec3i32.cpp, src/fields/SoSFBox3d.cpp,
src/fields/SoSFBox3f.cpp, src/fields/SoSFBox3i32.cpp,
src/fields/SoMFVec2b.cpp, src/fields/SoMFVec4b.cpp,
src/fields/SoMFVec2d.cpp, src/fields/SoSFBox3s.cpp,
src/fields/SoMFVec4d.cpp, src/fields/SoSFVec2b.cpp,
src/fields/SoSFVec2d.cpp, src/fields/SoSFVec4b.cpp,
src/fields/SoMFColorRGBA.cpp, src/fields/SoSFVec4d.cpp,
src/fields/SoMFVec2i32.cpp, src/fields/SoMFVec4i32.cpp,
src/fields/SoSFColorRGBA.cpp, src/fields/SoMFVec2s.cpp,
src/fields/SoSFVec2i32.cpp, src/fields/SoSFBox2d.cpp,
src/fields/SoMFVec4s.cpp, src/fields/SoSFVec4i32.cpp,
src/fields/SoSFBox2f.cpp, src/fields/SoMFVec4ub.cpp:
update doxygen \since tags
2007-09-30 23:56:48 Rev 4115 frodo
* src/base/SbBox3s.cpp, src/base/SbBox3f.cpp:
misc doc fixes
2007-09-30 23:54:34 Rev 4114 frodo
* src/base/SbVec2ub.cpp, src/base/SbVec3ub.cpp, src/base/SbVec4ub.cpp,
src/base/SbBox3i32.cpp, src/base/SbVec2b.cpp, src/base/SbVec3b.cpp,
src/base/SbVec4b.cpp, src/base/SbVec3ui32.cpp, src/base/SbVec2d.cpp,
src/base/SbVec3d.cpp, src/base/SbVec4ui32.cpp, src/base/SbVec2f.cpp,
src/base/SbVec4d.cpp, src/base/SbVec3f.cpp, src/base/SbVec4f.cpp,
src/base/SbVec2us.cpp, src/base/SbVec3us.cpp, src/base/SbVec4us.cpp,
src/base/SbVec3i32.cpp, src/base/SbVec4i32.cpp, src/base/SbVec3s.cpp,
src/base/SbVec4s.cpp:
misc doc fixes
2007-09-30 23:38:13 Rev 4112 frodo
* src/base/SbBox2i32.cpp, docs/coin.doxygen.in, src/base/SbBox2s.cpp,
src/base/SbVec2i32.cpp, src/base/SbBox2d.cpp, src/base/SbBox3d.cpp,
src/base/SbBox2f.cpp, src/base/SbVec2s.cpp, src/base/SbVec2ui32.cpp:
misc doc fixes
2007-09-30 23:34:10 Rev 4111 larsa
* src/misc/SoPrimitiveVertex.cpp:
update doxygen tags
2007-09-30 23:31:49 Rev 4110 larsa
* NEWS:
updates
2007-09-30 23:31:34 Rev 4109 larsa
* include/Inventor/SbTypeInfo.h, src/nodes/SoTextureCubeMap.cpp,
src/shaders/SoShaderObject.cpp, src/actions/SoSimplifyAction.cpp,
src/shadows/SoShadowGroup.cpp, src/shaders/SoShaderParameter.cpp:
Update doxygen since-tags
2007-09-30 22:56:20 Rev 4108 larsa
* NEWS:
NEWS update since b3
2007-09-30 22:55:57 Rev 4107 frodo
* src/base/SbVec3f.cpp, src/base/SbVec3d.cpp:
add doc for new SbVec constructors
2007-09-30 22:43:43 Rev 4106 larsa
* src/engines/SoConvertAll.cpp:
add braces around suspect macro usage
2007-09-30 22:20:56 Rev 4103 larsa
* build/msvc8/docs/coin2.doxygen, build/msvc8/coin2_install.vcproj,
build/msvc7/coin2.sln, build/msvc8/coin2_docs.vcproj,
build/msvc8/coin2.sln, build/msvc8/coin2_uninstall.vcproj,
build/msvc7/coin2.vcproj, build/msvc6/docs/coin2.doxygen,
build/msvc8/coin2.vcproj, build/msvc6/coin2.dsp,
build/msvc7/docs/coin2.doxygen:
last missing files and additions
2007-09-30 18:30:33 Rev 4102 frodo
* aclocal.m4, configure:
bootstrap
2007-09-30 18:00:08 Rev 4101 frodo
* aclocal.m4, cfg/gendsp.pl.in, cfg/wrapmsvc.exe, configure,
cfg/errors.txt:
bootstrap
2007-09-30 17:42:38 Rev 4100 larsa
* src/caches/all-caches-cpp.cpp:
fix for --enable-hacking
2007-09-30 15:24:01 Rev 4099 frodo
* aclocal.m4, cfg/gendsp.pl.in, include/Inventor/caches/Makefile.in,
include/Inventor/caches/SoVBOCache.h, src/caches/Makefile.in,
cfg/wrapmsvc.exe, configure, include/Inventor/caches/Makefile.am,
src/caches/Makefile.am, src/vrml97/Extrusion.cpp, cfg/errors.txt,
src/caches/SoVBOCache.cpp:
SoVBOCache and SoVRMLExtrusion rendering code moved from Coin-dev
2007-09-30 14:56:24 Rev 4098 frodo
* src/base/SbVec4us.cpp:
fix typo
2007-09-30 14:51:38 Rev 4097 frodo
* src/base/SbVec3ui32.cpp:
fix typo
2007-09-30 14:44:56 Rev 4096 frodo
* src/base/SbVec2ub.cpp, src/base/SbVec3ub.cpp, src/base/SbVec4ub.cpp,
src/base/SbVec2b.cpp, src/base/SbVec3b.cpp, src/base/SbVec2ui32.cpp,
src/base/SbVec4b.cpp, src/base/SbVec3ui32.cpp,
src/base/SbVec4ui32.cpp, src/base/SbVec2us.cpp,
src/base/SbVec3us.cpp, src/base/SbVec4us.cpp, src/base/SbVec2i32.cpp,
src/base/SbVec3i32.cpp, src/base/SbVec4i32.cpp, src/base/SbVec2s.cpp,
src/base/SbVec3s.cpp, src/base/SbVec4s.cpp:
updated 'see also' section to include equivalent classes with different
dimensions
2007-09-30 14:19:39 Rev 4095 frodo
* src/base/SbBox2i32.cpp, src/base/SbBox3i32.cpp, docs/coin.doxygen.in,
src/base/SbBox2s.cpp, src/base/SbXfBox3d.cpp, src/base/SbBox2d.cpp,
src/base/SbBox3s.cpp, src/base/SbBox3d.cpp, src/base/SbXfBox3f.cpp,
src/base/SbBox2f.cpp, src/base/SbBox3f.cpp:
added missing doc for SbBox classes
2007-09-30 10:26:22 Rev 4094 larsa
* build/misc/install-headers.bat, build/misc/uninstall-headers.bat,
build/msvc8/coin2_install.vcproj, build/msvc7/coin2.sln,
build/msvc8/coin2_docs.vcproj, build/misc/install-sdk.bat,
build/msvc8/coin2.sln, build/msvc8/coin2_uninstall.vcproj, build/misc
/uninstall-sdk.bat, build/msvc7/coin2.vcproj,
build/msvc8/coin2.vcproj:
new optimization options, create .pdb for release builds
2007-09-29 22:12:02 Rev 4092 larsa
* aclocal.m4, cfg/gendsp.pl.in, configure:
bootstrap
2007-09-29 22:11:45 Rev 4091 larsa
* configure.ac:
Visual C++ updates
2007-09-29 21:49:34 Rev 4090 larsa
* build/msvc6/coin2.dsp:
options change
2007-09-29 20:21:13 Rev 4089 frodo
* src/base/SbVec2ub.cpp, src/base/SbVec3ub.cpp, src/base/SbVec4ub.cpp,
src/base/SbVec2b.cpp, src/base/SbVec3b.cpp, src/base/SbVec2ui32.cpp,
src/base/SbVec4b.cpp, src/base/SbVec3ui32.cpp,
include/Inventor/SbVec3us.h, src/base/SbVec2d.cpp,
src/base/SbVec4ui32.cpp, src/base/SbVec3d.cpp, src/base/SbVec4d.cpp,
src/base/SbVec2f.cpp, src/base/SbVec3f.cpp, src/base/SbVec2us.cpp,
src/base/SbVec4f.cpp, src/base/SbVec3us.cpp, src/base/SbVec4us.cpp,
src/base/SbVec2i32.cpp, src/base/SbVec3i32.cpp,
src/base/SbVec4i32.cpp, include/Inventor/SbVec2ub.h,
src/base/SbVec2s.cpp, include/Inventor/SbVec4ub.h,
src/base/SbVec3s.cpp, src/base/SbVec4s.cpp:
doc for new SbVec classes
2007-09-29 18:02:45 Rev 4088 larsa
* src/nodes, src/vrml97/Makefile.am, src/base, src/geo,
src/3ds/Makefile.in, src/misc/Makefile.in, src/io/Makefile.am,
src/shadows/Makefile.am, src/hardcopy/Makefile.am,
src/vrml97/Makefile.in, src/errors/Makefile.am, src/details,
src/elements/Makefile.am, src/shapenodes, src/shaders,
src/nodekits/Makefile.am, src/io/Makefile.in,
src/shadows/Makefile.in, src/hardcopy/Makefile.in, src/bundles,
src/elements/Makefile.in, src/draggers, src/errors/Makefile.in,
src/caches/Makefile.am, src, src/engines/Makefile.am, src/Make-
Common.tpl, src/nodekits/Makefile.in, src/projectors/Makefile.am,
src/collision/Makefile.am, src/caches/Makefile.in,
src/actions/Makefile.am, src/engines/Makefile.in,
src/projectors/Makefile.in, src/collision/Makefile.in,
src/events/Makefile.am, src/fields/Makefile.am,
src/actions/Makefile.in, src/events/Makefile.in,
src/elements/GL/Makefile.am, src/fields/Makefile.in, src/3ds,
src/misc, src/manips/Makefile.am, src/elements/GL/Makefile.in,
src/vrml97, src/fonts/Makefile.am, src/threads/Makefile.am,
src/sensors/Makefile.am, src/upgraders/Makefile.am,
src/glue/Makefile.am, src/io, src/lists/Makefile.am, src/shadows,
src/manips/Makefile.in, src/hardcopy, src/fonts/Makefile.in,
src/threads/Makefile.in, src/elements, src/errors,
src/sensors/Makefile.in, src/upgraders/Makefile.in,
src/glue/Makefile.in, src/lists/Makefile.in, src/nodekits,
src/nodes/Makefile.am, src/base/Makefile.am, src/geo/Makefile.am,
src/caches, src/engines, src/nodes/Makefile.in, src/projectors,
src/collision, src/base/Makefile.in, src/geo/Makefile.in,
src/details/Makefile.am, src/actions, src/shapenodes/Makefile.am,
src/shaders/Makefile.am, src/events, src/bundles/Makefile.am,
src/fields, src/draggers/Makefile.am, src/details/Makefile.in,
src/Makefile.am, src/shapenodes/Makefile.in, src/shaders/Makefile.in,
src/elements/GL, src/bundles/Makefile.in, src/draggers/Makefile.in,
src/Makefile.in, src/manips, src/fonts, src/threads, src/glue,
src/sensors, src/upgraders, src/lists, src/mpeg/Makefile.am,
src/3ds/Makefile.am, src/misc/Makefile.am:
cygwin build clean fixes and ignore updates
2007-09-29 18:01:48 Rev 4087 larsa
* configure, configure.ac:
clean out warning-giving options
2007-09-29 14:32:18 Rev 4086 larsa
* src/Makefile.am, src/Makefile.in:
distclean fixes for cygwin builds
2007-09-29 14:20:29 Rev 4085 larsa
* configure, configure.ac:
remove some loose cygwin-build files
2007-09-29 14:17:57 Rev 4084 larsa
* include/Inventor/system/Makefile.in, include/Inventor/C/Makefile.am,
include/Inventor/system/Makefile.am, include/Inventor/C/Makefile.in:
distclean fixes
2007-09-29 13:53:17 Rev 4083 larsa
* src/io, src/shadows, src/3ds, src/hardcopy, src/shaders, src/geo,
src/collision, src/glue:
ignore unix build files
2007-09-29 13:38:15 Rev 4082 larsa
* cfg, Makefile.in, Makefile.am:
uninstall update
2007-09-29 13:09:10 Rev 4081 larsa
* src:
ignore Cygwin build files
2007-09-29 13:07:58 Rev 4080 larsa
* :
ignore Cygwin build files
2007-09-29 13:05:25 Rev 4079 larsa
* cfg, src/nodes, include/Inventor/annex, src/base, src/geo,
include/Inventor/annex/HardCopy, src/details, src/shaders,
src/shapenodes, include/Inventor/misc, src/bundles, src/draggers,
src, include/Inventor/VRMLnodes, include/Inventor/elements,
include/Inventor/errors, include/Inventor/nodekits,
include/Inventor/caches, include/Inventor/engines, src/3ds,
include/Inventor/projectors, src/misc, include/Inventor/collision,
include/Inventor/actions, src/vrml97, include/Inventor/events,
include/Inventor/fields, src/io, src/shadows, src/hardcopy,
src/elements, src/errors, include/Inventor/annex/FXViz, src/nodekits,
include/Inventor/C, htmlhelp, src/caches, include/Inventor/manips,
src/engines, include/Inventor/threads, src/projectors,
include/Inventor/annex/FXViz/elements, src/collision,
include/Inventor/sensors, include/Inventor/lists, src/actions,
src/events, data/shaders/lights, src/fields, include/Inventor/nodes,
tools, data/shaders, src/elements/GL, data/shaders/vsm,
include/Inventor/system, include/Inventor/details,
include/Inventor/annex/FXViz/nodes, src/manips, src/fonts,
src/threads, java, src/glue, src/sensors, include,
include/Inventor/bundles, src/upgraders, src/lists,
include/Inventor/draggers, include/Inventor:
ignore Cygwin build files
2007-09-28 12:33:06 Rev 4077 jkg
* src/glue/gl.c:
Forgot to remove C++ style comment
2007-09-28 12:30:56 Rev 4076 jkg
* src/glue/gl.c:
Option to disable FBO feature even if it's available.
2007-09-28 10:31:41 Rev 4075 pederb
* src/glue/gl.c:
Use GL_MAX_TEXTURE_COORDS_ARB to test for the maximum number of texture units
we can use. Thanks to Eivind Rovik for pointing this out to me.
2007-09-27 23:46:19 Rev 4074 thammer
* src/base/string.c:
bugfix: make sure string buffer is '0'-terminated when buffer is large
2007-09-27 12:12:59 Rev 4072 pederb
* src/nodekits/SoBaseKit.cpp:
Warn when user tries to set a private part through setPart().
2007-09-27 10:53:40 Rev 4071 pederb
* src/misc/SoGL.cpp:
Display list caching seems to really good now (for both nVidia and ATi).
Increase autocache limits.
2007-09-26 13:33:24 Rev 4069 pederb
* src/nodes/SoSceneTexture2.cpp:
Reset SoLazyElement state before rendering into the FBO.
2007-09-26 13:27:15 Rev 4068 pederb
* src/elements/SoLazyElement.cpp:
Bugfix in setToDefault().
2007-09-26 12:38:20 Rev 4067 pederb
* src/elements/GL/SoGLDisplayList.cpp:
Workaround for nVidia display list handling.
2007-09-26 12:01:20 Rev 4066 pederb
* src/elements/SoLazyElement.cpp,
include/Inventor/elements/SoLazyElement.h:
Add setToDefault(). Needed for FBO rendering.
2007-09-26 10:19:05 Rev 4065 pederb
* src/shadows/SoShadowGroup.cpp:
Support up to two texture units in the shadowed scene graph.
2007-09-26 09:59:22 Rev 4064 pederb
* src/shaders/SoShaderObject.cpp,
src/elements/GL/SoGLMultiTextureImageElement.cpp,
src/shaders/SoShader.cpp:
Support for testing up to four Coin texture units from a shader program.
2007-09-26 09:00:09 Rev 4063 pederb
* src/elements/GL/SoGLViewingMatrixElement.cpp:
Bugfix for recently introduced reset matrix bug.
2007-09-21 13:58:25 Rev 4061 larsa
* aclocal.m4, configure:
bootstrap
2007-09-19 14:48:43 Rev 4059 larsa
* src/fields/SoSFEnum.cpp:
doc update
2007-09-19 14:15:37 Rev 4058 larsa
* include/Inventor/nodes/SoCone.h:
clarify that enum values are bits in a bitmask
2007-09-19 12:13:33 Rev 4057 larsa
* aclocal.m4, configure:
bootstrap
2007-09-19 12:13:26 Rev 4056 larsa
* configure.ac:
reinstate improved version of old disabled config.h-test macro
2007-09-19 10:38:52 Rev 4055 larsa
* src/misc/SoType.cpp:
code comment
2007-09-19 10:23:10 Rev 4054 larsa
* src/misc/SoType.cpp:
Dynamic loading of extension nodes optimization. New environment variable
COIN_NO_SOTYPE_DYNLOAD to disable dynamic loading completely.
2007-09-18 11:52:33 Rev 4052 pederb
* src/nodes/SoResetTransform.cpp,
src/elements/GL/SoGLViewingMatrixElement.cpp,
include/Inventor/elements/SoGLViewingMatrixElement.h,
src/nodes/SoCamera.cpp:
Add an internal helper element (SoResetMatrixElement) to improve caching when
SoResetTransform nodes are used.
2007-09-14 14:10:06 Rev 4050 frodo
* include/Inventor/system/gl.h:
fix GLU_SILHOUETTE define typo
2007-09-11 11:38:54 Rev 4048 larsa
* aclocal.m4, cfg/gendsp.pl.in, Makefile.in:
bootstrap
2007-09-11 11:38:42 Rev 4047 larsa
* NEWS:
update
2007-09-11 11:36:41 Rev 4046 larsa
* build/misc/generate.sh, build/msvc8/docs/coin2.doxygen, build/misc
/uninstall-headers.bat, build/msvc8/coin2_install.vcproj,
build/msvc8/coin2_docs.vcproj, build/msvc8/coin2.sln,
build/msvc8/coin2_uninstall.vcproj, build/msvc6/docs/coin2.doxygen,
build/msvc8/coin2.vcproj, build/msvc7/docs/coin2.doxygen:
update
2007-09-11 08:33:37 Rev 4045 pederb
* src/misc/SoBase.cpp, src/fields/SoField.cpp,
src/fields/SoGlobalField.cpp, src/misc/SoDB.cpp:
Clean up the SoGlobalField mess a bit. Global fields should now be deleted
when the last reference to it is deleted.
2007-09-10 13:30:42 Rev 4043 pederb
* src/misc/SoBase.cpp, src/base/namemap.c,
include/Inventor/C/tidbitsp.h, src/misc/SoType.cpp,
src/base/SbName.cpp, src/misc/SoDB.cpp, src/tidbits.c:
Better granularity on internal coin_atexit callbacks. This should fix the
SoGlobalField crash, but will not remove global fields added when loading an
iv file.
2007-09-10 09:28:57 Rev 4042 pederb
* src/nodekits/SoBaseKit.cpp:
Warn about part not found in setAnyPart().
2007-09-07 14:29:45 Rev 4040 kintel
* src/fields/SoGlobalField.cpp:
Temporarily disabled delete allcontainers since it causes an assert failure
2007-09-06 15:35:03 Rev 4038 pederb
* docs/coin.doxygen.in:
Fix SoFrustumCamera doc bug.
2007-09-06 13:46:02 Rev 4037 larsa
* include/Inventor/SbVec4ub.h:
bugfix
2007-09-05 09:58:07 Rev 4035 pederb
* src/vrml97/Extrusion.cpp:
Fix closed-spine bug. Reported by Zvi Tarem.
2007-09-05 09:45:40 Rev 4034 pederb
* docs/coin.doxygen.in, docs/releases.dox:
Doc. for SoFrustumCamera.
2007-09-05 09:44:42 Rev 4033 pederb
* src/nodes/SoTextureCoordinate2.cpp:
Fix VBO rendering bug.
2007-09-04 09:43:31 Rev 4031 larsa
* NEWS:
mention SoFrustumCamera
2007-09-03 17:05:30 Rev 4028 larsa
* build/msvc6, build/msvc7/data/shaders/lights/SpotLight.h,
build/msvc8/data/shaders/lights/DirSpotLight.h, build/msvc7,
build/msvc8/data/shaders/lights/SpotLight.h, build/msvc8,
build/msvc8/coin2_install.vcproj, build/msvc7/coin2.sln,
build/msvc8/coin2.sln, build/msvc8/coin2_uninstall.vcproj,
Makefile.am, build/msvc7/coin2.vcproj,
build/msvc6/docs/coin2.doxygen, build/msvc8/coin2.vcproj,
build/msvc7/docs/coin2.doxygen, build/msvc8/docs/coin2.doxygen,
build/misc/install-headers.bat, build/misc/uninstall-headers.bat,
build/msvc8/coin2_docs.vcproj,
build/msvc6/data/shaders/lights/DirSpotLight.h,
build/msvc6/coin2.dsp, build/msvc6/data/shaders/lights/SpotLight.h,
build/msvc7/data/shaders/lights/DirSpotLight.h:
updated msvc-files
2007-09-03 10:23:54 Rev 4027 pederb
* include/Inventor/nodes/SoNodes.h, src/nodes/SoNode.cpp:
Initialize the SoFrustumCamera node.
2007-09-03 09:45:41 Rev 4026 pederb
* src/nodes/SoFrustumCamera.cpp, include/Inventor/nodes/Makefile.in,
src/nodes/Makefile.in, include/Inventor/nodes/SoFrustumCamera.h,
include/Inventor/nodes/Makefile.am, src/nodes/Makefile.am,
cfg/errors.txt:
Add SoFrustumCamera. Bootstrap.
2007-08-31 11:24:07 Rev 4024 pederb
* src/misc/SoNotification.cpp:
Bugfix for recently introduced bug. Handle cases where base is not set in a
SoNotRec instance.
2007-08-31 10:23:39 Rev 4023 pederb
* src/shadows/SoShadowGroup.cpp:
Optimize by detecting when it's necessary search the children for changes in
the scene graph.
2007-08-31 08:19:24 Rev 4022 pederb
* src/misc/SoNotification.cpp:
Fix for old bug. Only set firstnoderec if rec->getBase() is actually a node.
2007-08-31 07:49:53 Rev 4021 pederb
* src/shadows/SoShadowGroup.cpp:
Temporarily disable the smoothBorder feature.
2007-08-30 14:41:46 Rev 4019 pederb
* src/misc/SoShaderGenerator.cpp:
Bugfix.
2007-08-29 15:22:07 Rev 4016 kintel
* src/threads/mutex.c:
doc update
2007-08-29 12:48:02 Rev 4015 pederb
* src/shadows/SoShadowGroup.cpp:
Bugfix for quality < 0.3.
2007-08-29 12:21:41 Rev 4014 pederb
* src/shadows/SoShadowGroup.cpp:
compile fix.
2007-08-29 12:17:43 Rev 4013 pederb
* src/shadows/SoShadowGroup.cpp:
Use DirSpotLight from data/shaders.
2007-08-29 12:17:24 Rev 4012 pederb
* data/shaders/lights/Makefile.in, data/shaders/lights/Makefile.am,
data/shaders/lights/DirSpotLight.glsl, src/shaders/SoShader.cpp:
Add DirSpotLight function.
2007-08-29 09:37:55 Rev 4011 pederb
* src/shadows/SoShadowGroup.cpp:
Reset search action after use.
2007-08-28 11:17:25 Rev 4009 pederb
* src/glue/gl.c:
Use coin_runtime_os() to test for OS X.
2007-08-28 10:57:52 Rev 4008 pederb
* src/elements/SoLazyElement.cpp,
src/elements/SoMultiTextureCoordinateElement.cpp,
src/elements/SoCoordinateElement.cpp,
src/elements/SoNormalElement.cpp,
src/elements/SoTextureCoordinateElement.cpp:
Some fixes needed to make extension nodes work with VBO rendering. Ported from
Coin-dev
2007-08-23 08:39:07 Rev 4006 pederb
* docs/coin.doxygen.in:
Create doc for SoTextureCubeMap.
2007-08-22 13:17:59 Rev 4003 pederb
* include/Inventor/nodes/SoNodes.h,
src/elements/GL/SoGLTextureEnabledElement.cpp,
include/Inventor/elements/SoGLTextureEnabledElement.h,
src/nodes/SoNode.cpp, src/misc/SoGLImage.cpp:
Hook up the SoTextureCubeMap image node and friends.
2007-08-22 13:09:12 Rev 4002 pederb
* include/Inventor/misc/Makefile.in, src/misc/Makefile.in,
src/misc/SoGLCubeMapImage.cpp, include/Inventor/misc/Makefile.am,
src/misc/Makefile.am, include/Inventor/misc/SoGLCubeMapImage.h:
Add SoGLCubeMapImage.
2007-08-22 12:49:45 Rev 4001 pederb
* src/nodes/SoTextureCubeMap.cpp, include/Inventor/nodes/Makefile.in,
src/nodes/Makefile.in, include/Inventor/nodes/SoTextureCubeMap.h,
include/Inventor/nodes/Makefile.am, src/nodes/Makefile.am:
Add the SoTextureCubeMap node.
2007-08-22 08:24:15 Rev 4000 pederb
* src/glue/gl.c:
Don't disable VBO rendering on Mac OS X/Intel Gfx. Drivers are ok there.
2007-08-21 12:12:52 Rev 3998 mortene
* src/nodekits/SoBaseKit.cpp:
debug: give better warning msg when user attempts to re-use scene graph root
ptr over several catalogs
2007-08-16 10:21:58 Rev 3996 pederb
* src/misc/SoShaderGenerator.cpp,
include/Inventor/misc/SoShaderGenerator.h:
Support for setting the shader version.
2007-08-16 09:58:18 Rev 3995 pederb
* src/glue/gl.c:
Disable VBO rendering for all Intel cards.
2007-08-16 08:08:59 Rev 3994 tarjei
* src/glue/spidermonkey.c:
Added JS_DestroyIdArray.
NOTE: To avoid memory leaks, always use JS_DestroyIdArray following a
JS_Enumerate call.
2007-08-16 08:08:43 Rev 3993 tarjei
* include/Inventor/C/glue/spidermonkey.h:
Added JS_DestroyIdArray and JSVAL_IS_PRIMITIVE.
NOTE: To avoid memory leaks, always use JS_DestroyIdArray following a
JS_Enumerate call.
2007-08-10 09:26:42 Rev 3991 pederb
* src/vrml97/Script.cpp:
Reduce the number of warnings from the Script node when an engine is missing.
2007-08-10 09:25:17 Rev 3990 pederb
* src/misc/SoProto.cpp:
Fixed a recently introduced PROTO bug which could cause crashes for Script
nodes inside PROTOs.
2007-08-09 14:57:09 Rev 3988 pederb
* src/nodes/SoMaterial.cpp, src/nodes/SoLocateHighlight.cpp,
src/nodes/SoWWWInline.cpp, src/vrml97/Color.cpp,
src/vrml97/Material.cpp, src/actions/SoLineHighlightRenderAction.cpp,
src/actions/SoBoxHighlightRenderAction.cpp, src/nodes/SoBaseColor.cpp:
Create one SoColorPacker per thread when --enable-threadsafe is specified.
2007-08-06 14:01:21 Rev 3986 larsa
* include/Inventor/fields/SoSFLong.h,
include/Inventor/fields/SoSFULong.h,
include/Inventor/fields/SoMFLong.h,
include/Inventor/fields/SoMFULong.h:
#warning isn't portable
2007-08-03 09:50:58 Rev 3984 pederb
* src/elements/SoShapeHintsElement.cpp:
Bugfix. No need to update SoLazyElement in pop().
2007-08-03 08:46:34 Rev 3983 pederb
* src/vrml97/JS_VRMLClasses.cpp:
Subtract is spelled as subtract, not substract. Reported by Todd J. Furlong.
2007-08-02 15:01:30 Rev 3981 larsa
* src/io/SoInput.cpp:
doc fix
2007-08-02 14:51:59 Rev 3980 larsa
* src/io/SoInput.cpp:
doc fix
2007-08-02 12:52:14 Rev 3979 pederb
* src/shapenodes/SoIndexedFaceSet.cpp:
Fix to ensure correct face and part indices for all actions.
2007-08-02 11:32:54 Rev 3978 bfg
* src/nodes/SoSceneTexture2.cpp, src/nodes/SoBumpMap.cpp,
src/nodes/SoTexture2.cpp, src/fields/SoSFImage.cpp:
Corrected /speling/ mistakes.
2007-08-01 14:40:33 Rev 3976 pederb
* src/misc/SoState.cpp:
Catch attempts at setting an element from another element's pop() method.
2007-08-01 14:39:18 Rev 3975 pederb
* src/shadows/SoShadowGroup.cpp:
Disable/enable shadowmap texture units directly instead of using the Coin
elements.
2007-08-01 08:37:10 Rev 3974 pederb
* src/misc/SoProto.cpp:
Reimplement IS reference resolving code. Stop using SoSearchAction since we
need to find nodes inside SoSFNode fields as well. Fixes a bug reported by
Todd J. Furlong.
2007-07-31 07:44:29 Rev 3972 pederb
* src/vrml97/PointSet.cpp, src/shapenodes/SoIndexedFaceSet.cpp,
src/misc/SoVBO.h, src/vrml97/IndexedFaceSet.cpp,
src/shapenodes/SoIndexedLineSet.cpp, src/shapenodes/SoPointSet.cpp,
src/elements/GL/SoGLVBOElement.cpp, src/misc/SoVBO.cpp,
src/vrml97/IndexedLineSet.cpp:
Improve the shouldRenderAsVBO test. Disable VBO rendering while rendering the
shadow map.
2007-07-31 07:43:15 Rev 3971 pederb
* data/shaders/lights/SpotLight.glsl:
Fix for ATi.
2007-07-30 12:03:42 Rev 3969 pederb
* src/threads/recmutex.c, include/Inventor/C/threads/recmutex.h:
Add cc_recmutex_try_lock().
2007-07-30 09:45:56 Rev 3968 larsa
* NEWS:
mention SoFaceDetail::faceIndex bugfix
2007-07-29 01:33:20 Rev 3966 tamer
* Makefile.in, cfg/errors.txt:
bootstrap.
2007-07-29 01:23:56 Rev 3965 tamer
* Coin-2.pc.in, Coin.pc.in, Makefile.am:
rename Coin-2.pc to a common Coin.pc.
2007-07-24 21:15:36 Rev 3963 tamer
* src/io/SoInput.cpp:
fix crash if provided with non-existing filename. (reported by Marius,
initial fix by Tom Fredrik) small code-style fix for getHeader() return.
2007-07-24 17:09:07 Rev 3962 tamer
* src/base/string.c:
assert instead of debug path.
2007-07-24 16:19:34 Rev 3961 tamer
* src/base/string.c:
don't return early. debug path should exhibit same behavior. (i.e. segfault in
case of memory corruption)
2007-07-24 10:02:54 Rev 3960 larsa
* build/misc/generate.sh, build/msvc8/coin2_install.vcproj,
build/msvc7/coin2.sln, build/msvc8/coin2_docs.vcproj,
build/msvc8/coin2.sln, build/msvc8/coin2_uninstall.vcproj,
build/msvc7/coin2.vcproj, build/msvc8/coin2.vcproj,
build/msvc6/coin2.dsp:
Add the SbTypeInfo.h header
2007-07-24 08:37:25 Rev 3959 larsa
* build/misc/install-headers.bat, build/misc/uninstall-headers.bat:
install SbTypeInfo.h
2007-07-24 08:18:11 Rev 3958 larsa
* docs/releases.dox:
minor doc-update
2007-07-24 08:15:47 Rev 3957 larsa
* include/Inventor/Makefile.am, include/Inventor/Makefile.in:
add SbTypeInfo.h to list of public headers]
2007-07-18 16:50:38 Rev 3954 tamer
* src/fields/SoSFColorRGBA.cpp:
inconsistent line endings.
2007-07-18 15:49:17 Rev 3951 tamer
* src/fields/SoMFColorRGBA.cpp:
inconsistent line endings.
2007-07-18 10:11:18 Rev 3950 bfg
* src/shapenodes/SoShape.cpp:
Typo fix.
2007-07-17 19:37:33 Rev 3948 tamer
* cfg/wrapmsvc.exe, Makefile.in:
bootstrap.
2007-07-17 19:37:21 Rev 3947 tamer
* Coin-2.pc.in, Makefile.am:
initial Coin-2 metadata file and build system handling for pkg-config.
2007-07-17 16:26:21 Rev 3946 frodo
* src/shapenodes/SoIndexedFaceSet.cpp:
don't use the generated triangles when picking, it will not yield the correct
face index and part index in the facedetail
2007-07-15 19:21:23 Rev 3944 tamer
* New Folder:
remove careless commit.
2007-07-10 08:33:13 Rev 3942 roy
* New Folder:
2007-07-05 12:47:03 Rev 3940 tamer
* include/Inventor/SbTesselator.h, src/base/SbTesselator.cpp:
small cleanup.
2007-07-05 12:35:29 Rev 3939 pederb
* src/glue/GLUWrapper.c:
Add libGLU.so.1 to the list of library names to check.
2007-07-04 15:38:26 Rev 3937 pederb
* src/glue/gl.c:
Disable framebuffer objects if nvidia driver 2.0.0 is detected.
2007-07-04 11:33:46 Rev 3936 frodo
* src/misc/CoinOffscreenGLCanvas.cpp, THANKS,
src/misc/CoinOffscreenGLCanvas.h, src/misc/SoDB.cpp:
allow resource hogging by setting envvar. Patch provided by Tim Braun
2007-07-04 11:27:56 Rev 3935 larsa
* src/fields/SoMFVec3d.cpp, include/Inventor/fields/SoMFVec3d.h:
Duplicate prengs fix from Coin dev.
2007-07-02 11:23:06 Rev 3933 pederb
* src/shadows/SoShadowGroup.cpp:
Fixed recently introduced copy-old-version-of-source-code bug.
2007-06-28 11:10:23 Rev 3931 kintel
* src/base/time.c:
doc
2007-06-27 12:22:54 Rev 3929 larsa
* configure, configure.ac:
remove some nonsense
2007-06-27 10:11:51 Rev 3928 larsa
* src/misc/SoDebug.cpp:
remove MSVC8 warning
2007-06-25 10:12:43 Rev 3926 pederb
* src/shadows/SoShadowGroup.cpp:
Handle too few texture units.
2007-06-20 10:39:09 Rev 3923 larsa
* build/msvc6/include/Inventor/C/basic.h,
build/msvc8/docs/coin2.doxygen,
build/msvc7/include/Inventor/C/basic.h, build/msvc6/include/config-
debug.h, build/msvc8/include/Inventor/C/basic.h, build/msvc7/include
/config-debug.h, build/msvc8/include/config-debug.h, configure,
configure.ac, build/msvc6/include/config-release.h,
build/msvc7/include/config-release.h, build/msvc6/docs/coin2.doxygen,
build/msvc8/include/config-release.h, build/msvc7/docs/coin2.doxygen:
stamp 2.5.0b3
2007-06-19 14:31:27 Rev 3921 pederb
* src/shadows/SoShadowGroup.cpp:
Add support for shadows for a special kind of directional light.
2007-06-19 11:11:22 Rev 3920 pederb
* src/shadows/SoShadowGroup.cpp:
Improve precision by only using the near clipping plane distance.
2007-06-19 08:18:21 Rev 3919 pederb
* src/nodes/SoSpotLight.cpp:
Clamp dropOffRate between 0 and 1.
2007-06-18 15:11:21 Rev 3917 pederb
* src/shaders/SoGLShaderProgramElement.cpp,
src/shaders/SoGLShaderObject.cpp, src/shaders/SoGLShaderProgram.cpp,
include/Inventor/elements/SoGLShaderProgramElement.h,
src/shaders/SoGLShaderObject.h, src/shaders/SoGLShaderProgram.h:
Improved caching when shaders are used.
2007-06-18 11:25:39 Rev 3916 pederb
* src/shadows/SoShadowGroup.cpp:
Use setType() and setSceneTransparencyType() instead of the obsoleted 'type'
and 'sceneTransparencyType' fields.
2007-06-18 11:24:10 Rev 3915 pederb
* src/nodes/SoSceneTexture2.cpp,
include/Inventor/nodes/SoSceneTexture2.h:
Remove the 'type' and 'sceneTransparencyType' fields since they will break the
ABI.
2007-06-18 11:22:21 Rev 3914 pederb
* src/shaders/SoGLShaderProgramElement.cpp:
Revert recent optimization.
2007-06-18 09:42:07 Rev 3913 pederb
* src/nodes/SoSceneTexture2.cpp:
Add support for falling back to 16 bit floating point textures when 32 bits is
requested.
2007-06-14 13:03:31 Rev 3911 pederb
* src/shaders/SoGLShaderProgramElement.cpp:
Fix for shaders and caching.
2007-06-14 10:46:15 Rev 3910 pederb
* src/shaders/SoShaderObject.cpp, src/shaders/SoGLShaderObject.cpp,
src/shaders/SoGLShaderObject.h:
Fix for shader coin variables.
2007-06-13 14:05:29 Rev 3908 pederb
* src/shadows/SoShadowGroup.cpp:
Bugfixes. Test for the SpotLight 'on' field. Support transformations before
the SpotLight.
2007-06-13 13:08:44 Rev 3907 frodo
* include/Inventor/SbDict.h, src/base/hash.c, src/base/SbDict.cpp,
include/Inventor/C/base/hash.h, include/Inventor/C/base/hashp.h:
introduced a level of indirection on the keytypes of SbDict and cc_hash to be
source code compatible with coin-dev
2007-06-13 11:56:22 Rev 3905 larsa
* build/msvc6/include/config-debug.h, build/msvc7/include/config-
debug.h, build/msvc8/coin2_install.vcproj, build/msvc8/include
/config-debug.h, build/msvc7/coin2.sln, configure.ac,
build/msvc8/coin2_uninstall.vcproj, build/msvc8/coin2.sln,
build/msvc8/coin2.vcproj, build/msvc6/docs/coin2.doxygen,
build/msvc7/docs/coin2.doxygen,
build/msvc6/include/Inventor/C/basic.h,
build/msvc8/docs/coin2.doxygen,
build/msvc7/include/Inventor/C/basic.h,
build/msvc8/include/Inventor/C/basic.h, configure,
build/msvc8/coin2_docs.vcproj, build/msvc6/include/config-release.h,
build/msvc7/include/config-release.h, build/msvc8/include/config-
release.h:
increment version to 2.5.0b2
2007-06-13 10:22:27 Rev 3904 pederb
* src/shadows/SoShadowGroup.cpp:
Print a warning if we're unable to render shadows.
2007-06-13 09:37:43 Rev 3903 pederb
* src/shadows/SoShadowGroup.cpp:
Fix for alpha component in textures.
2007-06-13 09:05:48 Rev 3902 pederb
* src/shaders/SoGLShaderProgram.cpp:
Add missing function implementation.
2007-06-13 08:19:43 Rev 3901 pederb
* src/shaders/SoGLSLShaderObject.cpp,
src/shaders/SoGLSLShaderProgram.cpp,
src/elements/GL/SoGLLazyElement.cpp,
src/shaders/SoGLShaderProgram.cpp, src/shaders/SoGLSLShaderObject.h,
src/elements/GL/SoGLTextureImageElement.cpp,
src/shaders/SoGLSLShaderProgram.h, src/shaders/SoGLShaderProgram.h:
Improve the way coin shader status variables are updated.
2007-06-12 15:20:23 Rev 3899 pederb
* src/shadows/SoShadowGroup.cpp:
Misc. improvements in shaders to match the OpenGL fixed functionality better.
2007-06-12 10:43:32 Rev 3898 pederb
* src/shadows/SoShadowGroup.cpp:
Avoid a warning from the GLSL compiler when there are no spot lights.
2007-06-11 10:31:53 Rev 3896 larsa
* src/shaders/SoShader.cpp:
initClass() all shader parameter classes we provide
2007-06-11 10:31:28 Rev 3895 larsa
* src/base/SbVec2d.cpp:
typo
2007-06-08 14:43:09 Rev 3893 larsa
* README.WIN32:
typos
2007-06-08 14:41:07 Rev 3892 larsa
* README.WIN32:
update info from 2005 to 2007-state
2007-06-08 14:09:58 Rev 3891 larsa
* build/misc/create-directories.bat:
more robust script, not as prone to accumulate errors as before
2007-06-08 13:51:20 Rev 3890 pederb
* src/shadows/SoShadowGroup.cpp:
Support for fog.
2007-06-08 11:29:42 Rev 3889 larsa
* data/shaders/Makefile.in, data/shaders/Makefile.am, build/misc/create-
directories.bat:
bugfixes
2007-06-07 15:16:06 Rev 3884 larsa
* docs/releases.dox:
update
2007-06-07 14:53:17 Rev 3882 larsa
* build/msvc6, build, build/msvc7/include/config-debug.h,
build/msvc7/coin2.sln, build/msvc8/coin2.sln,
build/msvc6/coin2_docs.dsp, Makefile.am, build/msvc7/coin2.vcproj,
build/msvc6/docs/coin2.doxygen, build/msvc8/docs/coin2.doxygen,
build/msvc6/include/Inventor/C/basic.h,
build/msvc8/include/Inventor/C/basic.h, build/misc/uninstall-
headers.bat, configure, build/msvc7/coin2_docs.vcproj, Makefile.in,
build/msvc8/coin2_docs.vcproj, build/misc/build-docs.bat,
build/msvc7/docs, build/misc/uninstall-sdk.bat, build/msvc6/include
/config-release.h, build/msvc8/include/config-release.h,
build/msvc6/coin2.dsp, build/misc/generate.sh, cfg/gendsp.pl.in,
build/msvc6/include/config-debug.h, build/msvc8/include/config-
debug.h, build/msvc8/coin2_install.vcproj, build/msvc6/coin2.dsw,
build/msvc8/coin2_uninstall.vcproj, build/msvc8/coin2.vcproj,
build/misc/create-directories.bat, NEWS,
build/msvc7/docs/coin2.doxygen, build/misc/install-headers.bat,
build/msvc7/include/Inventor/C/basic.h, build/msvc6/docs,
build/msvc8/docs, build/msvc7/include/config-release.h:
boostrap, NEWS update, and new Visual Studio files
2007-06-07 14:52:25 Rev 3881 larsa
* configure.ac:
set version to Coin v2.5.0b1
2007-06-07 14:31:15 Rev 3880 pederb
* src/shaders/SoShader.cpp:
An example on per-fragment phong shading.
2007-06-07 14:05:09 Rev 3879 larsa
* include/Inventor/nodes/Makefile.in,
include/Inventor/annex/Makefile.in,
include/Inventor/elements/Makefile.in,
include/Inventor/nodes/Makefile.am,
include/Inventor/annex/Makefile.am,
include/Inventor/elements/Makefile.am:
fixes to install/dist new files
2007-06-07 13:07:12 Rev 3878 pederb
* src/shadows/SoShadowGroup.cpp:
Add an example scene graph in the documentation.
2007-06-06 11:00:14 Rev 3875 larsa
* docs/coin.doxygen.in:
missing files
2007-06-06 10:48:47 Rev 3874 larsa
* src/base/SbVec2ub.cpp, src/base/SbVec2us.cpp, src/base/SbVec3ub.cpp,
include/Inventor/SbTypeInfo.h, src/base/SbVec3us.cpp,
src/base/SbVec4us.cpp, docs/releases.dox, src/base/SbVec2ui32.cpp,
src/base/SbVec3ui32.cpp:
doc tweaks
2007-06-06 10:18:22 Rev 3873 larsa
* docs/releases.dox:
doc tweaks
2007-06-06 10:12:55 Rev 3872 larsa
* src/base/SbBox2i32.cpp, src/base/SbVec4ub.cpp, src/base/SbBox3i32.cpp,
docs/coin.doxygen.in, src/base/SbVec4s.cpp:
doc fixes
2007-06-06 09:52:05 Rev 3871 larsa
* docs/coin.doxygen.in:
fix
2007-06-06 09:47:03 Rev 3870 larsa
* docs/coin.doxygen.in, Makefile.in:
doc updates
2007-06-06 09:39:26 Rev 3869 larsa
* include/SoDebug.h, src/misc/Makefile.in, src/misc/all-misc-cpp.cpp,
include/Makefile.in, src/misc/Makefile.am, src/misc/SoDebug.cpp,
include/Makefile.am:
copy SoDebug from Coin-3
2007-06-05 14:19:38 Rev 3867 pederb
* src/shadows/SoShadowGroup.cpp:
Remove a couple of obsoleted FIXMEs. Fixed a bug in the cameratransform
vairable handling.
2007-06-05 12:10:55 Rev 3866 pederb
* src/shaders/SoGeometryShader.cpp:
Compile fix.
2007-06-05 10:42:15 Rev 3865 larsa
* build/misc/install-headers.bat, build/misc/uninstall-headers.bat,
build/msvc7/coin2.sln, build/msvc7/coin2.vcproj,
build/msvc6/coin2.dsp:
update
2007-06-05 10:11:31 Rev 3864 pederb
* src/shaders/SoFragmentShader.cpp, src/shaders/SoShaderObject.cpp,
src/shaders/SoShaderProgram.cpp, src/shaders/SoGeometryShader.cpp,
src/shaders/SoVertexShader.cpp:
More shader doc.
2007-06-05 09:03:33 Rev 3863 pederb
* src/shadows/SoShadowCulling.cpp, src/shadows/SoShadowStyle.cpp:
More doc. fixes.
2007-06-05 08:57:40 Rev 3862 pederb
* src/shadows/SoShadowGroup.cpp:
Doc fix.
2007-06-05 08:46:17 Rev 3861 pederb
* src/geo/SoGeoOrigin.cpp, src/shaders/SoShader.cpp:
Documentation fixes.
2007-06-05 08:44:43 Rev 3860 pederb
* src/shaders/SoGeometryShader.cpp:
Test for GL_EXT_geometry_shader4 before adding the geometry shader.
2007-06-05 08:23:03 Rev 3859 larsa
* docs/releases.dox, docs/doxygen/footer.html, src/misc/SoDB.cpp:
doc updates
2007-06-04 17:53:11 Rev 3856 larsa
* docs/releases.dox:
testing the doxygen link command
2007-06-04 17:40:13 Rev 3855 larsa
* docs/releases.dox:
more 2.5.0-changes description
2007-06-04 16:02:23 Rev 3854 larsa
* docs/coin.doxygen.in, docs/releases.dox, Makefile.am:
some doxygen doc
2007-06-04 15:49:24 Rev 3853 pederb
* src/shaders/SoFragmentShader.cpp, src/shaders/SoShaderObject.cpp,
src/shaders/SoGLSLShaderProgram.cpp,
src/shaders/SoGLShaderProgram.cpp, src/shaders/SoGeometryShader.cpp,
src/shaders/SoVertexShader.cpp, src/shaders/SoGLSLShaderProgram.h,
include/Inventor/nodes/SoGeometryShader.h,
src/shaders/SoGLShaderProgram.h:
Improved usability of SoGeometryShader. Some doc fixes.
2007-06-04 14:51:10 Rev 3852 pederb
* src/shaders/SoShader.cpp:
Fix for shader doc.
2007-06-04 14:32:52 Rev 3851 pederb
* src/shaders/SoFragmentShader.cpp, src/shaders/SoShaderProgram.cpp,
src/shaders/SoGeometryShader.cpp, src/shaders/SoVertexShader.cpp,
src/shaders/SoShader.cpp:
Shader doc.
2007-06-04 13:55:54 Rev 3850 pederb
* docs/coin.doxygen.in:
generate docs for Geo nodes.
2007-06-04 13:44:38 Rev 3849 larsa
* build/msvc8/coin2_install.vcproj, build/msvc8/coin2.sln,
build/msvc8/coin2_uninstall.vcproj, build/msvc8/coin2.vcproj:
adjust for new node SoTextureMatrixTransform
2007-06-04 13:31:31 Rev 3848 pederb
* docs/coin.doxygen.in:
Add SoShaderObject.
2007-06-04 13:06:05 Rev 3847 pederb
* docs/coin.doxygen.in:
Add SoShader.cpp.
2007-06-04 12:37:36 Rev 3846 larsa
* docs/coin.doxygen.in:
path fix
2007-06-04 12:07:21 Rev 3845 pederb
* docs/coin.doxygen.in:
Generate doc for SoTextureMatrixTransform.
2007-06-04 11:58:13 Rev 3844 pederb
* include/Inventor/nodes/SoNodes.h, src/nodes/SoNode.cpp:
Initialize SoTextureMatrixTransform.
2007-06-04 11:44:44 Rev 3843 pederb
* include/Inventor/nodes/Makefile.in, src/nodes/Makefile.in,
include/Inventor/nodes/Makefile.am, src/nodes/Makefile.am:
Build SoTextureMatrixTransform.
2007-06-04 11:02:22 Rev 3842 pederb
* src/nodes/SoTextureMatrixTransform.cpp,
include/Inventor/nodes/SoTextureMatrixTransform.h:
Add SoTextureMatrixTransform from Coin-dev.
2007-06-04 10:51:43 Rev 3841 pederb
* src/base/SbBox3s.cpp:
Compile fix
2007-06-04 10:22:07 Rev 3840 pederb
* docs/coin.doxygen.in:
Add new files.
2007-06-04 09:51:15 Rev 3839 pederb
* docs/coin.doxygen.in:
Add shader doc.
2007-06-04 09:46:56 Rev 3838 pederb
* include/Inventor/C/glue/glp.h, src/glue/gl.c:
Add glProgramParameteriEXT
2007-06-04 09:45:39 Rev 3837 pederb
* include/Inventor/system/gl.h:
Geometry shader defines.
2007-06-01 09:06:29 Rev 3834 larsa
* build/misc/generate.sh, build/misc/install-headers.bat, build/misc
/uninstall-headers.bat, build/msvc8/coin2_install.vcproj,
build/msvc7/coin2.sln, build/msvc8/coin2.sln,
build/msvc8/coin2_uninstall.vcproj, build/msvc7/coin2.vcproj,
build/msvc8/coin2.vcproj, build/msvc6/coin2.dsp:
updated build files
2007-06-01 09:05:55 Rev 3833 larsa
* include/Inventor/Makefile.am, include/Inventor/SbVec2d.h,
include/Inventor/Makefile.in, src/base/SbVec2d.cpp,
src/base/Makefile.am, include/Inventor/SbXfBox3d.h,
include/Inventor/SbBox2d.h, src/base/all-base-cpp.cpp,
include/Inventor/SbBox2f.h, src/base/Makefile.in,
include/Inventor/SbBox3f.h, src/base/SbXfBox3d.cpp,
src/base/SbBox2d.cpp, src/base/SbBox2f.cpp, src/base/SbBox3f.cpp,
include/Inventor/SbBox.h:
missing Sb-class and some tweaks from Coin-3
2007-05-31 21:39:10 Rev 3830 pederb
* src/shaders/SoGLSLShaderParameter.cpp:
compile fix.
2007-05-31 14:57:57 Rev 3829 larsa
* build/misc/install-headers.bat, build/misc/uninstall-headers.bat,
build/msvc8/coin2_install.vcproj, Makefile.in, build/msvc7/coin2.sln,
build/msvc8/coin2.sln, build/msvc8/coin2_uninstall.vcproj,
Makefile.am, build/msvc7/coin2.vcproj, build/msvc8/coin2.vcproj,
build/msvc6/coin2.dsp:
visual studio build files update
2007-05-31 14:52:38 Rev 3828 pederb
* src/geo/SoGeo.cpp, src/geo/SoGeoOrigin.cpp:
Some documentation.
2007-05-31 14:30:29 Rev 3827 larsa
* NEWS:
update
2007-05-31 14:24:28 Rev 3826 larsa
* include/Inventor/fields/SoSFVec4i32.h,
include/Inventor/fields/SoSFBox2f.h, include/Inventor/SbBox2s.h,
include/Inventor/fields/SoMFVec4ub.h, src/fields/SoField.cpp,
src/fields/SoMFVec3b.cpp, src/fields/SoSFBox2s.cpp,
include/Inventor/fields/Makefile.am,
include/Inventor/fields/SoMFVec3b.h, src/fields/SoSFVec3b.cpp,
src/base/SbVec2f.cpp, src/fields/SoMFVec4us.cpp,
src/fields/SoSFVec4ui32.cpp, src/fields/SoMFDouble.cpp,
include/Inventor/fields/Makefile.in, include/Inventor/SbVec3i32.h,
include/Inventor/fields/SoSFVec3b.h, include/Inventor/SbBox3d.h,
include/Inventor/fields/SoMFDouble.h,
include/Inventor/fields/SoSFVec4ui32.h, src/base/SbVec2i32.cpp,
src/fields/shared.cpp, include/Inventor/SbVec3s.h,
src/fields/SoMFVec3s.cpp, include/Inventor/fields/SoSFVec4us.h,
src/fields/SoSFBox3d.cpp, src/base/SbVec2s.cpp,
include/Inventor/SbBox3i32.h, include/Inventor/SbTypeInfo.h,
src/fields/SoSFBox3i32.cpp, src/base/SbBox2s.cpp,
src/fields/SoMFVec4b.cpp, src/fields/Makefile.am,
src/fields/SoMFVec4d.cpp, include/Inventor/fields/SoMFVec2b.h,
src/fields/all-fields-cpp.cpp, include/Inventor/fields/SoMFVec2d.h,
src/base/SbVec3d.cpp, src/fields/SoSFVec4b.cpp,
src/fields/SoMFColorRGBA.cpp, src/base/SbVec3f.cpp,
src/fields/SoSFVec4d.cpp, include/Inventor/SoInput.h,
include/Inventor/fields/SoSFVec2b.h, src/fields/Makefile.in,
include/Inventor/fields/SoSFVec2d.h,
include/Inventor/fields/SoMFColorRGBA.h, src/fields/SoMFVec4i32.cpp,
src/fields/SoSFColorRGBA.cpp, include/Inventor/SbVec2s.h,
include/Inventor/fields/SoMFVec2i32.h, src/base/SbBox3d.cpp,
src/fields/SoMFVec4s.cpp, include/Inventor/fields/SoSFColorRGBA.h,
src/fields/SoSFVec4i32.cpp, src/base/SbVec3s.cpp,
include/Inventor/fields/SoSFVec2i32.h,
include/Inventor/fields/SoMFVec4s.h, src/fields/SoSFVec4s.cpp,
src/base/SbBox3i32.cpp, include/Inventor/Makefile.am,
src/fields/SoSFVec4ub.cpp, src/fields/SoSFBox2i32.cpp,
include/Inventor/fields/SoSFVec4s.h, src/base/SbBox3s.cpp,
include/Inventor/SbVec3d.h, include/Inventor/fields/SoSFVec4ub.h,
include/Inventor/fields/SoSFBox2i32.h, src/fields/SoMFVec4ui32.cpp,
include/Inventor/SbVec3f.h, include/Inventor/Makefile.in,
src/base/Makefile.am, include/Inventor/fields/SoSFBox2s.h,
include/Inventor/fields/SoMFVec4ui32.h, src/io/SoInput.cpp,
include/Inventor/fields/SoMFVec4us.h, src/fields/SoMFVec3i32.cpp,
src/fields/SoSFVec4us.cpp, src/fields/SoSFDouble.cpp,
src/base/Makefile.in, include/Inventor/fields/SoMFVec3i32.h,
src/fields/SoSFVec3i32.cpp, include/Inventor/fields/SoSFDouble.h,
include/Inventor/fields/SoMFVec3s.h,
include/Inventor/fields/SoFields.h,
include/Inventor/fields/SoSFVec3i32.h,
include/Inventor/fields/SoSFBox3d.h, src/base/SbBox2i32.cpp,
include/Inventor/SbBox3s.h, src/fields/SoMFVec2b.cpp,
src/fields/SoMFVec2d.cpp, include/Inventor/fields/SoSFBox3i32.h,
include/Inventor/SbVec2f.h, src/fields/SoSFVec2b.cpp,
include/Inventor/fields/SoMFVec4b.h, src/fields/SoSFVec2d.cpp,
include/Inventor/fields/SoMFVec4d.h, include/Inventor/SbVec2i32.h,
src/fields/SoMFVec2i32.cpp, include/Inventor/fields/SoSFVec4b.h,
src/base/all-base-cpp.cpp, include/Inventor/fields/SoSFVec4d.h,
src/base/SbVec3i32.cpp, src/fields/SoMFVec2s.cpp,
src/fields/SoSFVec2i32.cpp, include/Inventor/fields/SoMFVec4i32.h,
src/fields/SoSFBox2d.cpp, src/fields/shared.h,
src/fields/SoSFBox2f.cpp, include/Inventor/fields/SoMFVec2s.h,
include/Inventor/SbBox2i32.h, src/fields/SoMFVec4ub.cpp,
include/Inventor/fields/SoSFBox2d.h:
updates from Coin-3, lots of new field classes (needed for compile fix)
2007-05-31 14:17:18 Rev 3825 pederb
* src/geo/SoGeoSeparator.cpp, include/Inventor/nodes/SoGeoSeparator.h:
SoGeoSeparator picking bugfix.
2007-05-30 15:38:03 Rev 3823 pederb
* include/Inventor/nodes/SoShaderParameter.h,
src/shaders/SoGLSLShaderParameter.h,
src/shaders/SoGLARBShaderParameter.cpp,
src/shaders/SoGLShaderParameter.h,
src/shaders/SoGLARBShaderParameter.h,
src/shaders/SoGLCgShaderParameter.cpp,
src/shaders/SoShaderParameter.cpp,
src/shaders/SoGLCgShaderParameter.h,
src/shaders/SoGLSLShaderParameter.cpp:
Support for integer arrays.
2007-05-30 14:25:35 Rev 3822 pederb
* src/caches/SoPrimitiveVertexCache.cpp:
Fix erroneous use of SbClamp. This fixes a transparency out-out-bounds ug.
Reported by Karel Bijl.
2007-05-30 11:37:40 Rev 3821 pederb
* src/geo/SoGeoSeparator.cpp, src/geo/SoGeoCoordinate.cpp,
src/geo/SoGeoOrigin.cpp, src/geo/SoGeoLocation.cpp:
Some doc.
2007-05-30 11:35:56 Rev 3820 pederb
* src/geo/SoGeo.cpp:
Projection bugfix
2007-05-30 10:52:26 Rev 3819 larsa
* aclocal.m4, cfg/gendsp.pl.in, configure, cfg/csubst.exe, configure.ac:
fix for the exit()-configure-issue, bootstrap
2007-05-29 15:58:10 Rev 3816 tamer
* configure:
bootstrap.
2007-05-29 15:54:32 Rev 3815 larsa
* NEWS:
news update
2007-05-29 15:28:49 Rev 3814 larsa
* NEWS:
some news
2007-05-29 14:19:55 Rev 3813 larsa
* build/misc/install-headers.bat:
install-path fix
2007-05-29 14:14:35 Rev 3812 larsa
* build/msvc7/data/shaders/lights/SpotLight.h, build/msvc6,
build/msvc8/data/shaders/lights/SpotLight.h, build/msvc7,
build/msvc8, build/msvc7/coin2_install.vcproj,
build/msvc7/data/shaders/lights/PointLight.h, build/msvc7/coin2.sln,
build/msvc7/coin2_uninstall.vcproj, build/msvc8/coin2.sln,
build/msvc7/data/shaders/lights/DirectionalLight.h,
build/msvc7/coin2.vcproj, build/msvc6/install-headers.bat, build/misc
/uninstall-headers.bat, build/msvc7/install-headers.bat,
build/msvc6/coin2_install.dsp, build/msvc8/install-headers.bat,
build/msvc7/data/shaders/vsm/VsmLookup.h, build/misc,
build/msvc6/coin2.dsp, build/misc/generate.sh,
build/msvc6/data/shaders/lights/PointLight.h,
build/msvc8/coin2_install.vcproj,
build/msvc8/data/shaders/lights/PointLight.h, build/msvc6/coin2.dsw,
build/msvc6/data/shaders/lights/DirectionalLight.h,
build/msvc8/coin2_uninstall.vcproj,
build/msvc8/data/shaders/lights/DirectionalLight.h,
build/msvc8/coin2.vcproj, build/misc/install-headers.bat, build/misc
/install-sdk.bat, build/msvc6/coin2_uninstall.dsp,
build/msvc6/data/shaders/vsm/VsmLookup.h,
build/msvc8/data/shaders/vsm/VsmLookup.h,
build/msvc6/data/shaders/lights/SpotLight.h:
new Visual Studio build setup, updated autogenerated files
2007-05-29 13:46:25 Rev 3811 larsa
* src/geo/SbUTMProjection.cpp:
remove unused-warnings
2007-05-29 13:22:10 Rev 3810 larsa
* include/Inventor/nodes/Makefile.in, include/Inventor/nodes/Makefile.am:
remove duplicates
2007-05-29 13:01:38 Rev 3809 pederb
* src/geo/SoGeoSeparator.cpp, src/geo/SoGeoCoordinate.cpp,
src/geo/SoGeoLocation.cpp:
Print error when GeoOrigin node is missing.
2007-05-29 12:51:46 Rev 3808 larsa
* cfg/csubst.exe:
bootstrap
2007-05-29 11:44:56 Rev 3807 pederb
* src/Makefile.am, src/Makefile.in:
fix for install-symlinks.
2007-05-29 11:30:16 Rev 3806 pederb
* src/misc/SoDB.cpp:
Initialize the Geo nodes.
2007-05-29 10:56:52 Rev 3805 pederb
* include/Inventor/annex/FXViz/nodes/Makefile.in, src/geo,
src/geo/SoGeo.h, src/geo/SbPolarStereographic.cpp,
src/geo/SoGeoElement.cpp, src/geo/Makefile.am, aclocal.m4,
src/geo/SbUTMProjection.h, src/geo/SoGeoSeparator.cpp,
include/Inventor/elements/SoGeoElement.h, configure,
src/shadows/Makefile.in, include/Inventor/nodes/SoGeoSeparator.h,
src/geo/SbGeoProjection.h, src/geo/Makefile.in,
src/geo/SbGeoEllipsoid.cpp, src/geo/SoGeoLocation.cpp,
include/Inventor/nodes/SoGeoLocation.h, src/geo/SbGeoAngle.h,
cfg/gendsp.pl.in, src/geo/SoGeo.cpp, src/Makefile.am, configure.ac,
include/Inventor/annex/FXViz/elements/Makefile.in,
src/geo/SoGeoOrigin.cpp, src/geo/SoGeoCoordinate.cpp,
src/geo/SbUTMProjection.cpp, src/geo/SbPolarStereographic.h,
include/Inventor/nodes/SoGeoCoordinate.h,
include/Inventor/nodes/SoGeoOrigin.h, src/Makefile.in,
src/geo/SbGeoProjection.cpp, src/geo/all-geo-cpp.cpp,
src/geo/SbGeoAngle.cpp, src/geo/SbGeoEllipsoid.h:
Geo nodes from Coin-dev.
2007-05-29 10:22:49 Rev 3804 pederb
* src/shaders/SoGLSLShaderObject.cpp:
Support for coin_light_model
2007-05-29 10:22:22 Rev 3803 pederb
* src/elements/GL/SoGLLazyElement.cpp:
Update shader light model while traversing.
2007-05-29 09:40:05 Rev 3802 thammer
* src/vrml97/JS_VRMLClasses.cpp:
If input is VRML, readAsVRML, otherwise, just read as ordinary Coin
scenegraph.
2007-05-25 13:50:16 Rev 3800 pederb
* src/shaders/SoFragmentShader.cpp, src/shaders/SoShaderObject.cpp,
src/shaders/SoGeometryShader.cpp, src/shaders/SoVertexShader.cpp,
src/shaders/SoShaderParameter.cpp:
Some shader documentation
2007-05-25 11:28:24 Rev 3799 pederb
* src/shaders/SoShader.cpp:
Start of shader documentation.
2007-05-25 10:02:18 Rev 3798 pederb
* src/shadows/SoShadowGroup.cpp,
include/Inventor/annex/FXViz/nodes/SoShadowGroup.h:
Replace ugly gaussSmoothing fields with a more generic smoothBorder field.
2007-05-24 15:28:09 Rev 3795 pederb
* src/actions/SoBoxHighlightRenderAction.cpp:
Make this action work even without a camera in the scene graph. By Gerhard
Reitmayr.
2007-05-24 14:57:41 Rev 3794 pederb
* src/shadows/all-shadows-cpp.cpp,
include/Inventor/annex/FXViz/nodes/Makefile.in,
src/shadows/Makefile.in, src/shadows/SoGLShadowCullingElement.cpp,
include/Inventor/annex/FXViz/elements/Makefile.in,
src/shadows/SoShadowGroup.cpp, src/shadows/SoShadowCulling.cpp,
include/Inventor/annex/FXViz/nodes/Makefile.am,
src/shadows/Makefile.am,
include/Inventor/annex/FXViz/nodes/SoShadowCulling.h,
include/Inventor/annex/FXViz/elements/SoGLShadowCullingElement.h,
include/Inventor/annex/FXViz/elements/Makefile.am:
Update shadow module from Coin-dev.
2007-05-24 14:05:34 Rev 3793 pederb
* src/vrml97/Geometry.cpp:
Fix for recently introduced ShapeHints bug.
2007-05-22 15:30:14 Rev 3791 pederb
* src/nodes/SoEnvironment.cpp:
More attenuation doc.
2007-05-22 15:28:07 Rev 3790 pederb
* src/nodes/SoEnvironment.cpp:
Document the order of the attenuation field.
2007-05-22 15:16:30 Rev 3789 pederb
* src/nodes/SoSpotLight.cpp, src/nodes/SoPointLight.cpp:
Fix recently introduced bug. Inventor has actually reversed the order of the
constant, linear and squared attenuation factors.
2007-05-22 14:35:42 Rev 3788 pederb
* src/vrml97/Geometry.cpp:
Test SoOverrideElement before setting shape hints.
2007-05-22 12:31:13 Rev 3787 frodo
* THANKS:
added Andrew Fischer to the THANKS file
2007-05-22 11:56:50 Rev 3786 pederb
* src/shapenodes/SoShape.cpp:
Don't render transparent polygons into the shadow map.
2007-05-22 11:56:05 Rev 3785 pederb
* data/shaders/lights/PointLight.glsl:
Bugfix.
2007-05-22 11:11:26 Rev 3784 pederb
* src/vrml97/SpotLight.cpp, src/vrml97/PointLight.cpp:
Fixed very old light attenuation bug.
2007-05-22 11:08:44 Rev 3783 pederb
* src/nodes/SoSpotLight.cpp, src/nodes/SoPointLight.cpp:
Fixed very old light attenuation bug.
2007-05-21 13:02:04 Rev 3781 pederb
* src/shadows/SoShadowGroup.cpp,
include/Inventor/annex/FXViz/nodes/SoShadowGroup.h:
Rename enum value to PROJECTED_BBOX_DEPTH_FACTOR
2007-05-21 11:34:17 Rev 3780 pederb
* src/shadows/SoShadowGroup.cpp,
include/Inventor/annex/FXViz/nodes/SoShadowGroup.h:
Add visibilityFlag handling.
2007-05-21 11:06:42 Rev 3779 frodo
* src/vrml97/Billboard.cpp:
rewrote the SoVRMLBillboard rotation code to use cross products in order to
find orientation
2007-05-20 15:15:42 Rev 3777 larsa
* src/vrml97/Sound.cpp:
move #if-debug enclosure around all debug-specific code
2007-05-19 10:32:22 Rev 3775 pederb
* src/nodes/SoSceneTexture2.cpp:
Compile fix
2007-05-15 14:36:01 Rev 3773 pederb
* src/nodes/SoSceneTexture2.cpp:
Support for creating mipmaps.
2007-05-15 14:09:49 Rev 3772 frodo
* src/actions/SoReorganizeAction.cpp, docs/coin.doxygen.in:
generate doc for SoReorganizeAction
2007-05-14 13:18:22 Rev 3770 pederb
* src/nodes/SoSwitch.cpp:
Fix SO_SWICH_ALL SoGetBoundingBoxAction traversal code. Reported by thammer.
2007-05-14 09:18:45 Rev 3769 larsa
* include/Inventor/SbVec3i32.h:
const fix
2007-05-11 14:39:07 Rev 3767 pederb
* src/shadows/SoShadowGroup.cpp, src/shadows/SoShadowStyle.cpp:
Some documentation.
2007-05-11 13:42:48 Rev 3766 pederb
* src/shaders/SoGeometryShader.cpp:
Node version fix. GeometryShader is not part of TGS Inventor yet.
2007-05-11 13:36:16 Rev 3765 pederb
* src/shaders/SoFragmentShader.cpp, src/shaders/SoShaderObject.cpp,
src/shaders/SoShaderProgram.cpp, src/shaders/SoGeometryShader.cpp,
src/shaders/SoVertexShader.cpp, src/shaders/SoShaderParameter.cpp:
Update node versions to Coin 2.5.
2007-05-11 12:57:57 Rev 3764 pederb
* include/Inventor/nodes/SoSubNodeP.h, include/Inventor/nodes/SoNode.h:
Defines for Coin 2.5
2007-05-11 10:08:41 Rev 3763 pederb
* src/elements/SoMultiTextureMatrixElement.cpp,
include/Inventor/elements/SoMultiTextureMatrixElement.h:
SoShadowGroup compile fix: Add a static set() method needed by that class.
2007-05-10 11:37:00 Rev 3761 pederb
* src/shadows/SoShadowGroup.cpp:
bugfix
2007-05-10 10:06:25 Rev 3760 pederb
* src/shadows/SoShadowGroup.cpp:
Recommit code that was removed by mistake.
2007-05-08 14:40:11 Rev 3758 pederb
* src/shadows/SoShadowGroup.cpp:
Some fixes and precision tuning.
2007-05-08 09:56:52 Rev 3757 pederb
* src/elements/GL/SoGLTextureImageElement.cpp:
Shadow/shader bugfix.
2007-05-08 09:11:45 Rev 3756 pederb
* data/shaders/lights/PointLight.glsl,
data/shaders/lights/DirectionalLight.glsl:
ATi fixes.
2007-05-08 08:19:27 Rev 3755 pederb
* data/shaders/vsm/VsmLookup.glsl:
fix typo.
2007-05-08 08:19:15 Rev 3754 pederb
* data/shaders/lights/SpotLight.glsl:
ATI fix
2007-05-07 15:03:00 Rev 3752 pederb
* src/shadows/SoShadowGroup.cpp, data/shaders/vsm/VsmLookup.glsl,
include/Inventor/annex/FXViz/nodes/SoShadowGroup.h:
add a threshold on the VsmLookup function to avoid light bleeding.
2007-05-07 12:26:37 Rev 3751 larsa
* build/msvc7/coin2.sln, build/msvc8/coin2.sln,
build/msvc7/coin2.vcproj, build/msvc8/coin2.vcproj,
build/msvc6/coin2.dsp:
update for building shadow nodes
2007-05-07 11:54:14 Rev 3750 pederb
* src/Makefile.in:
Bootstrap to build shadows module.
2007-05-07 11:31:28 Rev 3749 larsa
* src/shadows/SoShadowGroup.cpp:
msvc6 warning/compile fixes
2007-05-07 10:52:04 Rev 3748 pederb
* src/Makefile.am:
Build fix.
2007-05-07 09:34:28 Rev 3747 pederb
* src/nodes/SoTexture2Transform.cpp,
src/elements/SoShapeStyleElement.cpp, src/nodes/SoSceneTexture2.cpp,
src/shapenodes/SoShape.cpp,
include/Inventor/elements/SoShapeStyleElement.h,
include/Inventor/nodes/SoSceneTexture2.h,
include/Inventor/elements/SoTextureImageElement.h,
src/elements/GL/SoGLTextureImageElement.cpp, src/misc/SoDB.cpp:
Shadow rendering changes from Coin-dev.
2007-05-07 09:33:30 Rev 3746 pederb
* src/caches/SoShaderProgramCache.cpp:
Compile fix.
2007-05-07 09:33:00 Rev 3745 pederb
* src/shaders/SoGLShaderProgramElement.cpp,
src/shaders/SoShaderObject.cpp, src/shaders/SoShaderProgram.cpp,
src/shaders/SoVertexShader.cpp, src/shaders/SoShader.cpp,
src/shaders/SoShader.h, src/shaders/SoGLSLShaderObject.cpp,
src/shaders/SoGLShaderObject.cpp,
src/shaders/SoGLSLShaderProgram.cpp,
src/shaders/SoGLShaderProgram.cpp,
include/Inventor/nodes/SoShaderObject.h,
include/Inventor/nodes/SoShaderProgram.h,
src/shaders/SoGLSLShaderObject.h, src/shaders/SoGLShaderObject.h,
src/shaders/SoGLSLShaderProgram.h, src/shaders/SoGLShaderProgram.h:
Some shader fixes from Coin-dev.
2007-05-07 09:31:04 Rev 3744 pederb
* include/Inventor/misc/SoGLImage.h, src/misc/SoGLImage.cpp:
Make it possible to set an SoGLDisplayList as a texture for custom made
textures. From Coin-dev.
2007-05-07 09:28:37 Rev 3743 pederb
* include/Inventor/C/glue/gl.h, include/Inventor/C/glue/glp.h,
src/glue/gl.c:
coin_glglue_is_texture_size_legal() redesigned from Coin-dev.
2007-05-07 08:38:36 Rev 3742 pederb
* include/Inventor/misc/Makefile.in, src/misc/Makefile.in,
include/Inventor/misc/Makefile.am, src/misc/Makefile.am:
build SoShaderGenerator.
2007-05-07 08:32:50 Rev 3741 pederb
* include/Inventor/caches/Makefile.in, src/caches/Makefile.in,
include/Inventor/caches/Makefile.am, src/caches/Makefile.am:
build SoShaderProgramCache.
2007-05-07 08:22:31 Rev 3740 pederb
* src/shaders/Makefile.in, src/shaders/Makefile.am:
add include path.
2007-05-07 07:48:44 Rev 3739 pederb
* src/Makefile.am, configure, configure.ac, src/Makefile.in:
bootstrap to build shadows module.
2007-05-06 20:59:15 Rev 3737 tamer
* build/build_coin_win32.sh:
update for Subversion.
2007-05-06 20:54:02 Rev 3736 tamer
* src/extensions/README:
update checkout pointers for Subversion.
2007-05-06 20:45:51 Rev 3735 tamer
* BUGS:
update URL.
2007-05-03 12:33:22 Rev 3733 frodo
* include/Inventor/SbBasic.h:
gcc 4.1.2 compile fix
2007-05-03 10:58:08 Rev 3732 larsa
* include/Inventor/SbBasic.h, include/Inventor/errors/SoDebugError.h:
gcc compile-fix (couldn't delay-resolve name:: so we use a lose
global/C-function instead)
2007-05-01 12:24:03 Rev 3729 larsa
* Makefile.in, Makefile.am:
dist update
2007-05-01 12:21:06 Rev 3728 larsa
* build/msvc7/data/shaders/lights/SpotLight.h,
build/msvc8/data/shaders/lights/SpotLight.h,
build/msvc6/data/shaders, build/msvc7/include/config-debug.h,
build/msvc7/data/shaders/lights/PointLight.h,
build/msvc8/data/shaders, build/msvc7/coin2.sln,
build/msvc8/coin2.sln, build/msvc6/data/shaders/vsm,
build/msvc7/data/shaders/lights/DirectionalLight.h,
build/msvc8/data/shaders/vsm, build/msvc7/coin2.vcproj,
build/msvc7/include/Inventor/system/inttypes.h, build/msvc6/install-
headers.bat, build/msvc7/install-headers.bat, build/msvc8/install-
headers.bat, build/msvc6/data/shaders/lights,
build/msvc7/data/shaders/lights,
build/msvc7/data/shaders/vsm/VsmLookup.h,
build/msvc8/data/shaders/lights, build/msvc6/coin2.dsp,
build/msvc7/data/shaders,
build/msvc6/data/shaders/lights/PointLight.h,
build/msvc8/data/shaders/lights/PointLight.h,
build/msvc6/data/shaders/lights/DirectionalLight.h,
build/msvc7/data/shaders/vsm,
build/msvc8/data/shaders/lights/DirectionalLight.h,
build/msvc7/include/Inventor/system/gl-headers.h,
build/msvc8/coin2.vcproj, build/misc/create-directories.bat,
build/msvc7/include/Inventor/C/basic.h, build/misc/install-sdk.bat,
build/msvc6/data/shaders/vsm/VsmLookup.h, build/msvc7/include/config-
release.h, build/msvc8/data/shaders/vsm/VsmLookup.h,
build/msvc6/data/shaders/lights/SpotLight.h:
updated visual studio build files
2007-05-01 11:24:50 Rev 3727 larsa
* include/Inventor/Makefile.am, include/Inventor/Makefile.in:
SbBox3d.h not in place yet - remove
2007-05-01 11:07:07 Rev 3726 larsa
* cfg, src/Makefile.am, include/Inventor/annex/FXViz/nodes/Makefile.in,
include/Inventor/annex/FXViz/elements/Makefile.in,
include/Inventor/Makefile.in, include/Inventor/annex/Makefile.am,
src/Makefile.in, src/caches/all-caches-cpp.cpp,
data/shaders/lights/Makefile.in, configure, src/shadows/Makefile.in,
Makefile.in, src/base/Makefile.in, data/shaders/Makefile.in, src/misc
/all-misc-cpp.cpp, src/caches/Makefile.am,
include/Inventor/annex/FXViz/Makefile.in,
data/shaders/vsm/Makefile.in, src/misc/Makefile.am, data/Makefile.in:
tweaks (disable enabling shadows in makefile.am files) and bootstrap
2007-05-01 10:14:09 Rev 3725 larsa
* include/Inventor/Makefile.am, include/Inventor/SbVec2ui32.h,
include/Inventor/SbVec3b.h, include/Inventor/SbVec3ui32.h,
include/Inventor/SbVec4ui32.h, src/base/SbVec2b.cpp,
include/Inventor/SbVec2us.h, src/base/SbVec2d.cpp,
src/base/Makefile.am, include/Inventor/SbVec3us.h,
src/base/SbVec4b.cpp, include/Inventor/SbVec4us.h,
src/base/SbVec2f.cpp, src/base/SbVec4d.cpp, src/base/SbVec4f.cpp,
include/Inventor/SbVec3i32.h, src/base/SbVec2i32.cpp,
include/Inventor/SbVec3s.h, src/base/SbVec4i32.cpp,
src/base/SbVec2s.cpp, src/base/SbVec4s.cpp, src/base/SbVec2ub.cpp,
src/base/SbVec3ub.cpp, src/base/SbVec4ub.cpp,
include/Inventor/SbVec2b.h, include/Inventor/SbVec4b.h,
include/Inventor/SbVec2d.h, include/Inventor/SbVec2f.h,
include/Inventor/SbVec4d.h, include/Inventor/SbVec4f.h,
src/base/SbVec2ui32.cpp, src/base/SbVec3b.cpp,
src/base/SbVec3ui32.cpp, src/base/SbVec4ui32.cpp,
src/base/SbVec2us.cpp, src/base/SbVec3us.cpp,
include/Inventor/SbVec2i32.h, src/base/SbVec4us.cpp,
include/Inventor/SbVec4i32.h, src/base/all-base-cpp.cpp,
include/Inventor/SbVec2s.h, src/base/SbVec3i32.cpp,
include/Inventor/SbVec4s.h, include/Inventor/SbVec2ub.h,
include/Inventor/SbVec3ub.h, src/base/SbVec3s.cpp,
include/Inventor/SbVec4ub.h:
full set of SbVec classes, inline implementations for the new ones, new
explicit conversion constructors for the existing set
2007-05-01 10:10:46 Rev 3724 larsa
* include/Inventor/SbBasic.h:
new inline divide-by-zero check function
2007-04-30 07:50:20 Rev 3722 larsa
* include/Inventor/SoPrimitiveVertex.h, src/misc/SoPrimitiveVertex.cpp:
some additional accessors
2007-04-27 16:17:31 Rev 3719 larsa
* src/misc/Makefile.am:
prepare the makefile for shadow nodes build
2007-04-27 15:58:54 Rev 3718 larsa
* src/caches/SoShaderProgramCache.cpp, src/caches/Makefile.am,
include/Inventor/caches/SoShaderProgramCache.h:
add missing class for shadow nodes classes
2007-04-27 13:36:45 Rev 3717 larsa
* cfg/gendsp.sh.in, src/Makefile.am, data/Makefile.am, configure.ac,
Makefile.am, include/Inventor/annex/Makefile.am:
build/traverse the shadow nodes directories, obsolete bourne shell version of
gendsp
2007-04-27 13:21:26 Rev 3716 larsa
* cfg/gendsp.pl.in:
updated version
2007-04-27 13:17:07 Rev 3715 larsa
* data/shaders/lights/PointLight.glsl, data/shaders/lights/Makefile.in,
data/shaders/vsm/Makefile.am,
data/shaders/lights/DirectionalLight.glsl, data/shaders,
data/shaders/Makefile.in, data/shaders/lights/Makefile.am,
data/shaders/vsm/VsmLookup.glsl, data/shaders/vsm,
data/shaders/lights/SpotLight.glsl, data/shaders/vsm/Makefile.in,
data/shaders/Makefile.am, data/shaders/glsl2h.sh.in,
data/shaders/lights:
shader data dirs
2007-04-27 13:13:21 Rev 3714 larsa
* src/shadows, include/Inventor/annex/FXViz/nodes/Makefile.in,
src/shadows/SoShadowStyleElement.cpp,
include/Inventor/annex/FXViz/elements/Makefile.in,
include/Inventor/annex/FXViz,
include/Inventor/annex/FXViz/nodes/SoShadowGroup.h,
src/shadows/Makefile.am,
include/Inventor/annex/FXViz/nodes/SoShadowStyle.h, src/shadows/all-
shadows-cpp.cpp, include/Inventor/annex/FXViz/nodes,
include/Inventor/annex/FXViz/Makefile.am, src/shadows/Makefile.in,
include/Inventor/annex/FXViz/elements,
src/misc/SoShaderGenerator.cpp, src/shadows/SoShadowGroup.cpp,
include/Inventor/annex/FXViz/nodes/Makefile.am,
include/Inventor/misc/SoShaderGenerator.h,
include/Inventor/annex/FXViz/Makefile.in,
src/shadows/SoShadowStyle.cpp,
include/Inventor/annex/FXViz/elements/SoShadowStyleElement.h,
include/Inventor/annex/FXViz/elements/Makefile.am:
shadow node sources
2007-04-24 10:51:09 Rev 3712 larsa
* src/io/SoOutput.cpp, src/misc/SoPath.cpp:
doc tweaks
2007-04-20 08:31:17 Rev 3710 larsa
* NEWS:
update
2007-04-19 15:10:29 Rev 3707 larsa
* build/msvc6/include/config-debug.h, build/msvc8/include/config-
debug.h, build/msvc8/coin2.sln, build/msvc6/include/setup.h,
build/msvc8/include/setup.h, build/msvc6/include/Inventor/system/gl-
headers.h, build/msvc8/include/Inventor/system/gl-headers.h,
build/msvc8/coin2.vcproj, build/msvc6/include/Inventor/C/basic.h,
build/msvc6/include/Inventor/system/inttypes.h,
build/msvc8/include/Inventor/system/inttypes.h,
build/msvc8/include/Inventor/C/basic.h, build/msvc6/install-
headers.bat, build/msvc8/install-headers.bat, build/msvc6/include
/config-release.h, build/msvc8/include/config-release.h,
build/msvc6/coin2.dsp:
updated msvc6 and msvc8 build files
2007-04-19 13:29:11 Rev 3706 larsa
* include/Inventor/nodes/SoShaderParameter.h,
include/Inventor/nodes/SoFragmentShader.h,
include/Inventor/nodes/SoShaderObject.h,
include/Inventor/nodes/SoShaderProgram.h,
include/Inventor/elements/SoGLShaderProgramElement.h,
include/Inventor/nodes/SoGeometryShader.h,
include/Inventor/nodes/SoVertexShader.h:
copyright header update
2007-04-19 13:20:44 Rev 3705 larsa
* src/shaders/SoGLShaderParameter.cpp,
src/shaders/SoGLCgShaderObject.cpp,
src/shaders/SoGLCgShaderProgram.cpp, src/shaders/SoShaderObject.cpp,
src/shaders/SoGLSLShaderParameter.h, src/shaders/SoVertexShader.cpp,
src/shaders/SoGLCgShaderParameter.cpp,
src/shaders/SoGLARBShaderProgram.cpp,
src/shaders/SoGLARBShaderObject.h, src/shaders/SoShader.h,
src/shaders/all-shaders-cpp.cpp,
src/shaders/SoGLARBShaderParameter.cpp,
src/shaders/SoGLSLShaderProgram.cpp,
src/shaders/SoGeometryShader.cpp, src/shaders/SoGLSLShaderObject.h,
src/shaders/SoGLShaderObject.h, src/shaders/SoGLShaderProgram.h,
src/shaders/SoGLSLShaderParameter.cpp,
src/shaders/SoFragmentShader.cpp,
src/shaders/SoGLShaderProgramElement.cpp,
src/shaders/SoShaderProgram.cpp, src/shaders/SoGLCgShaderObject.h,
src/shaders/SoGLShaderParameter.h, src/shaders/SoGLCgShaderProgram.h,
src/shaders/SoGLARBShaderObject.cpp, src/shaders/SoShader.cpp,
src/shaders/SoShaderParameter.cpp,
src/shaders/SoGLCgShaderParameter.h,
src/shaders/SoGLARBShaderProgram.h,
src/shaders/SoGLSLShaderObject.cpp, src/shaders/SoGLShaderObject.cpp,
src/shaders/SoGLShaderProgram.cpp,
src/shaders/SoGLARBShaderParameter.h,
src/shaders/SoGLSLShaderProgram.h:
copyright header update
2007-04-19 13:07:08 Rev 3704 larsa
* aclocal.m4, cfg/gendsp.pl.in, configure,
include/Inventor/nodes/Makefile.in, src/shaders/Makefile.in,
include/Inventor/elements/Makefile.in, src/Makefile.in:
bootstrap with shaders update
2007-04-19 12:52:34 Rev 3703 larsa
* src/shaders/SoGLCgShaderObject.cpp,
src/shaders/SoGLShaderParameter.cpp,
src/shaders/SoGLCgShaderProgram.cpp, src/shaders/SoShaderObject.cpp,
src/shaders/SoGLSLShaderParameter.h,
src/shaders/SoGLCgShaderParameter.cpp,
src/shaders/SoVertexShader.cpp, src/shaders/SoGLARBShaderProgram.cpp,
src/shaders/SoGLARBShaderObject.h, include/Inventor/C/glue/glp.h,
src/shaders/SoShader.h, src/shaders, src/shaders/all-shaders-cpp.cpp,
src/shaders/SoGLARBShaderParameter.cpp,
src/shaders/SoGLSLShaderProgram.cpp,
include/Inventor/nodes/SoShaderObject.h,
include/Inventor/C/glue/cg.h, src/shaders/SoGeometryShader.cpp,
include/Inventor/nodes/SoShaderProgram.h,
src/shaders/SoGLSLShaderObject.h, src/shaders/SoGLShaderObject.h,
src/shaders/SoGLShaderProgram.h, src/shaders/Makefile.am,
src/misc/SoDB.cpp, include/Inventor/nodes/SoVertexShader.h,
src/shaders/SoGLSLShaderParameter.cpp,
src/shaders/SoFragmentShader.cpp, src/glue/cg.c,
include/Inventor/C/glue/gl.h,
include/Inventor/nodes/SoShaderParameter.h,
src/shaders/SoGLShaderProgramElement.cpp,
include/Inventor/nodes/SoNodes.h, src/Makefile.am,
src/shaders/SoShaderProgram.cpp, src/shaders/SoGLShaderParameter.h,
src/shaders/Makefile.in, src/shaders/SoGLCgShaderObject.h,
src/shaders/SoGLCgShaderProgram.h, include/Inventor/system/gl.h,
configure.ac, src/glue/gl.c, include/Inventor/nodes/Makefile.am,
src/shaders/SoGLARBShaderObject.cpp,
include/Inventor/nodes/SoGeometryShader.h, src/shaders/SoShader.cpp,
src/shaders/SoShaderParameter.cpp,
src/shaders/SoGLCgShaderParameter.h,
include/Inventor/elements/Makefile.am,
src/shaders/SoGLARBShaderProgram.h,
include/Inventor/nodes/SoFragmentShader.h,
src/shaders/SoGLSLShaderObject.cpp, src/shaders/SoGLShaderObject.cpp,
src/shaders/SoGLShaderProgram.cpp,
include/Inventor/elements/SoGLShaderProgramElement.h,
src/shaders/SoGLARBShaderParameter.h,
src/shaders/SoGLSLShaderProgram.h:
add shaders from Coin development, update gl-glue
2007-04-17 15:02:31 Rev 3701 kyrah
* packaging/macosx/checklist.txt:
Updated and extended information on how to build the binary SDKs
for Mac OS X.
2007-04-17 14:19:06 Rev 3700 frodo
* THANKS:
added Thomas Kittelman
2007-04-13 14:16:16 Rev 3698 tamer
* cfg/gendsp.pl.in, configure:
bootstrap. (fixes erroneous autoconf version and various warnings)
2007-04-13 11:17:12 Rev 3697 mortene
* src/base/SbName.cpp:
debug: catch NULL ptrs early when constructing SbName-instances from char*
2007-04-10 12:32:39 Rev 3695 larsa
* include/Inventor/caches/Makefile.in,
include/Inventor/lock/Makefile.in,
include/Inventor/engines/Makefile.in, src/3ds/Makefile.in,
include/Inventor/projectors/Makefile.in, src/misc/Makefile.in,
include/Inventor/collision/Makefile.in,
include/Inventor/C/errors/Makefile.in, src/vrml97/Makefile.in,
include/Inventor/actions/Makefile.in, aclocal.m4,
include/Inventor/events/Makefile.in,
include/Inventor/fields/Makefile.in, src/io/Makefile.in,
src/hardcopy/Makefile.in, src/elements/Makefile.in,
src/errors/Makefile.in, src/nodekits/Makefile.in,
include/Inventor/C/Makefile.in, cfg/ltmain.sh, htmlhelp/Makefile.in,
src/caches/Makefile.in, include/Inventor/manips/Makefile.in,
src/engines/Makefile.in, src/projectors/Makefile.in,
include/Inventor/threads/Makefile.in, src/collision/Makefile.in,
include/Inventor/sensors/Makefile.in,
include/Inventor/lists/Makefile.in, src/actions/Makefile.in,
src/events/Makefile.in, src/fields/Makefile.in,
include/Inventor/nodes/Makefile.in, tools/Makefile.in,
html/Makefile.in, src/elements/GL/Makefile.in,
include/Inventor/C/glue/Makefile.in, data/Makefile.in,
man/Makefile.in, include/Inventor/system/Makefile.in,
include/Inventor/details/Makefile.in,
data/draggerDefaults/Makefile.in, src/manips/Makefile.in,
src/fonts/Makefile.in, src/threads/Makefile.in, java/Makefile.in,
src/upgraders/Makefile.in, src/sensors/Makefile.in,
include/Inventor/C/base/Makefile.in, include/Makefile.in,
src/glue/Makefile.in, include/Inventor/bundles/Makefile.in,
src/lists/Makefile.in, include/Inventor/draggers/Makefile.in,
include/Inventor/Makefile.in, src/nodes/Makefile.in, Makefile.in,
include/Inventor/annex/Makefile.in, src/base/Makefile.in,
include/Inventor/annex/HardCopy/Makefile.in, src/details/Makefile.in,
src/shapenodes/Makefile.in, include/Inventor/misc/Makefile.in,
src/bundles/Makefile.in, src/draggers/Makefile.in,
docs/announcement-2_4_6.txt, src/extensions/Makefile.in,
src/Makefile.in, include/Inventor/VRMLnodes/Makefile.in,
include/Inventor/C/threads/Makefile.in,
include/Inventor/elements/Makefile.in,
include/Inventor/errors/Makefile.in, man/man1/Makefile.in,
include/Inventor/nodekits/Makefile.in, bin/Makefile.in,
man/man3/Makefile.in:
loki bootstrap
2007-04-10 12:29:19 Rev 3694 larsa
* configure.ac:
change some msvc build settings
2007-04-04 16:06:37 Rev 3691 larsa
* src/actions/SoReorganizeAction.cpp, include/SoWinLeaveScope.h,
include/SoWinEnterScope.h, include/Inventor/system/gl-headers.h.in,
include/coindefs.h, src/misc/SoCompactPathList.cpp,
examples/bindings/glxiv.cpp, examples/misc/glut_tex.cpp,
examples/bindings/glutiv.cpp,
include/Inventor/misc/SoCompactPathList.h,
src/base/SbViewportRegion.cpp, examples/misc/ivcp.cpp,
src/elements/GL/SoGLVBOElement.cpp, src/nodekits/SoBaseKit.cpp:
unify the remaining out-of-sync headers
2007-04-04 14:28:41 Rev 3690 larsa
* include/Inventor/caches/Makefile.in, include/Inventor/C/tidbits.h,
include/Inventor/engines/Makefile.in, src/3ds/Makefile.in,
src/fields/SoField.cpp, include/Inventor/projectors/Makefile.in,
src/misc/Makefile.in, build/msvc6/include/setup.h,
build/msvc8/include/setup.h, include/Inventor/actions/Makefile.in,
src/vrml97/IndexedLineSet.cpp,
build/msvc6/include/Inventor/C/basic.h, aclocal.m4,
include/Inventor/events/Makefile.in,
include/Inventor/elements/SoGLDisplayList.h, configure,
src/elements/Makefile.in, src/errors/Makefile.in,
include/Inventor/nodes/SoShape.h, src/nodes/SoExtSelection.cpp,
build/msvc6/include/config-release.h, src/fields/SoSFBox3f.cpp,
include/Inventor/C/Makefile.in, src/nodes/SoCoordinate3.cpp,
cfg/ltmain.sh, src/caches/Makefile.in, src/engines/Makefile.in,
build/msvc8/include/config-debug.h, configure.ac,
include/Inventor/threads/Makefile.in, src/projectors/Makefile.in,
src/elements/GL/SoGLLazyElement.cpp,
include/Inventor/sensors/Makefile.in, src/glue/gl.c,
include/Inventor/lists/Makefile.in, src/nodes/SoPackedColor.cpp,
src/shapenodes/SoPointSet.cpp, src/actions/Makefile.in,
src/nodes/SoTextureCoordinate2.cpp, src/events/Makefile.in,
include/Inventor/actions/SoGLRenderAction.h,
src/nodes/SoMaterial.cpp, include/Inventor/C/tidbitsp.h,
tools/Makefile.in, include/Inventor/elements/SoLazyElement.h,
html/Makefile.in, include/Inventor/C/glue/Makefile.in,
data/Makefile.in, include/Inventor/system/Makefile.in,
include/Inventor/details/Makefile.in, src/nodes/SoFile.cpp,
src/threads/Makefile.in, src/nodes/SoVertexProperty.cpp,
src/sensors/Makefile.in, include/Inventor/C/base/Makefile.in,
include/Makefile.in, src/glue/Makefile.in,
include/Inventor/bundles/Makefile.in,
include/Inventor/nodes/SoFile.h,
include/Inventor/elements/SoGLLazyElement.h, src/lists/Makefile.in,
include/Inventor/draggers/Makefile.in, include/Inventor/Makefile.in,
src/elements/GL/SoGLVBOElement.cpp, build/msvc8/include/config.h,
src/shapenodes/SoIndexedFaceSet.cpp,
include/Inventor/misc/SoGLImage.h, Makefile.in, src/base/Makefile.in,
build/msvc8/include/config-release.h, src/nodes/SoBaseColor.cpp,
include/Inventor/C/glue/gl.h,
include/Inventor/nodes/SoExtSelection.h, src/details/Makefile.in,
build/msvc6/include/config-debug.h, src/shapenodes/Makefile.in,
src/bundles/Makefile.in, include/Inventor/elements/SoElements.h,
src/draggers/Makefile.in, src/shapenodes/SoText2.cpp,
src/Makefile.in, src/actions/SoGLRenderAction.cpp,
build/msvc8/include/Inventor/system/inttypes.h,
src/vrml97/IndexedFaceSet.cpp, include/config.h.in,
include/discard.h.in, include/Inventor/nodekits/Makefile.in,
man/man1/Makefile.in, bin/Makefile.in, man/man3/Makefile.in,
include/Inventor/lock/Makefile.in,
include/Inventor/collision/Makefile.in, build/msvc8/coin2.sln,
src/actions/SoSimplifyAction.cpp,
include/Inventor/C/errors/Makefile.in, src/vrml97/Makefile.in,
src/misc/SoGLImage.cpp, src/vrml97/PointSet.cpp,
include/Inventor/events/SoLocation2Event.h,
src/elements/SoElement.cpp, include/Inventor/fields/Makefile.in,
src/io/Makefile.in, src/vrml97/TextureCoordinate.cpp,
src/hardcopy/Makefile.in, src/nodekits/Makefile.in,
src/nodes/SoCoordinate4.cpp, htmlhelp/Makefile.in,
src/vrml97/Normal.cpp, include/Inventor/manips/Makefile.in,
src/collision/Makefile.in, NEWS,
build/msvc6/include/Inventor/system/inttypes.h,
src/nodes/SoTextureCoordinate3.cpp, src/fields/Makefile.in,
include/Inventor/nodes/Makefile.in, src/elements/GL/Makefile.in,
include/Inventor/elements/SoMultiTextureEnabledElement.h,
man/Makefile.in, data/draggerDefaults/Makefile.in,
src/manips/Makefile.in, src/fonts/Makefile.in, java/Makefile.in,
src/upgraders/Makefile.in,
include/Inventor/actions/SoSimplifyAction.h,
src/events/SoLocation2Event.cpp, src/nodes/SoNormal.cpp,
src/tidbits.c, src/actions/SoReorganizeAction.cpp,
build/msvc8/include/Inventor/C/basic.h, src/nodes/Makefile.in,
include/Inventor/actions/SoReorganizeAction.h,
include/Inventor/annex/Makefile.in,
src/caches/SoPrimitiveVertexCache.cpp,
include/Inventor/annex/HardCopy/Makefile.in,
src/vrml97/Coordinate.cpp, include/Inventor/fields/SoSFBox3f.h,
src/shapenodes/SoShape.cpp, include/Inventor/misc/Makefile.in,
src/shapenodes/SoIndexedLineSet.cpp, src/extensions/Makefile.in,
build/msvc8/coin2.vcproj, src/elements/GL/SoGLDisplayList.cpp,
include/Inventor/elements/SoGLVBOElement.h,
include/Inventor/VRMLnodes/Makefile.in,
include/Inventor/elements/Makefile.in, include/Inventor/C/basic.h.in,
include/Inventor/C/threads/Makefile.in,
include/Inventor/errors/Makefile.in,
src/elements/SoMultiTextureEnabledElement.cpp,
src/actions/SoAction.cpp:
remove COIN_NEXT_MINOR conditionals
2007-04-04 13:36:12 Rev 3689 larsa
* data/draggerDefaults/iv2h.sh.in:
copyright header update
2007-04-03 17:17:19 Rev 3686 larsa
* build/misc/install-sdk.bat:
bugfix
2007-04-03 16:22:13 Rev 3685 larsa
* configure, configure.ac, NEWS:
Set version to Coin 2.5.0a
2007-04-03 16:17:57 Rev 3683 larsa
* build/msvc8, build/msvc6/include/config-debug.h, build/msvc7/include
/config-debug.h, build/msvc8/include/config-debug.h,
build/msvc7/coin2.sln, configure.ac, build/msvc8/coin2.sln,
docs/announcement-2_4_5.txt, docs/announcement-2_4_6.txt,
build/msvc7/coin2.vcproj, build/msvc8/coin2.vcproj,
docs/ChangeLog.v2.4.6, build/msvc6/include/Inventor/C/basic.h,
build/msvc8/include/config.h, build/msvc7/include/Inventor/C/basic.h,
build/msvc8/include/Inventor/C/basic.h, configure, ChangeLog,
build/msvc6/include/config-release.h, build/msvc7/include/config-
release.h, build/msvc8/include/config-release.h,
build/msvc6/coin2.dsp:
Set version to Coin 2.4.6 and update all relevant files
2007-04-03 15:55:27 Rev 3680 larsa
* README, Makefile.in, docs/announcement-2_4_6.txt, Makefile.am,
RELNOTES, docs/ChangeLog.v2.4.6, NEWS:
Stub doc files, prepare for 2.4.6 release.
2007-04-03 15:54:00 Rev 3679 larsa
* build/msvc7/data/draggerDefaults/rotateDiscDragger.h,
build/msvc6/data/draggerDefaults/transformerDragger.h,
build/msvc7/data/draggerDefaults/transformerDragger.h,
build/msvc8/data/draggerDefaults/transformerDragger.h,
build/msvc6/data/draggerDefaults/jackDragger.h,
build/msvc6/data/draggerDefaults/scale2Dragger.h,
build/msvc7/data/draggerDefaults/scale1Dragger.h,
build/msvc6/data/draggerDefaults/scale2UniformDragger.h,
build/msvc8/data/draggerDefaults/jackDragger.h,
build/msvc7/data/draggerDefaults/scale2UniformDragger.h,
build/msvc8/data/draggerDefaults/scale2Dragger.h,
build/msvc6/data/draggerDefaults/centerballDragger.h,
build/msvc8/data/draggerDefaults/scale2UniformDragger.h,
build/msvc6/data/draggerDefaults/rotateCylindricalDragger.h,
build/msvc8/data/draggerDefaults/centerballDragger.h,
build/msvc7/data/draggerDefaults/rotateCylindricalDragger.h,
build/msvc8/data/draggerDefaults/rotateCylindricalDragger.h,
build/msvc6/data/draggerDefaults/translate1Dragger.h,
build/msvc7/data/draggerDefaults/tabBoxDragger.h,
build/msvc7/data/draggerDefaults/translate2Dragger.h,
build/msvc8/data/draggerDefaults/translate1Dragger.h,
build/msvc6/data/draggerDefaults/pointLightDragger.h,
build/msvc8/data/draggerDefaults/pointLightDragger.h,
build/msvc6/data/draggerDefaults/directionalLightDragger.h,
build/msvc7/data/draggerDefaults/transformBoxDragger.h,
build/msvc8/data/draggerDefaults/directionalLightDragger.h,
build/msvc7/data/draggerDefaults/tabPlaneDragger.h,
build/msvc7/data/draggerDefaults/scaleUniformDragger.h,
build/msvc6/data/draggerDefaults/trackballDragger.h,
build/msvc7/data/draggerDefaults/trackballDragger.h,
build/msvc6/data/draggerDefaults/rotateDiscDragger.h,
build/msvc8/data/draggerDefaults/trackballDragger.h,
build/msvc8/data/draggerDefaults/rotateDiscDragger.h,
build/msvc6/data/draggerDefaults/handleBoxDragger.h,
build/msvc7/data/draggerDefaults/handleBoxDragger.h,
build/msvc8/data/draggerDefaults/handleBoxDragger.h,
build/msvc6/data/draggerDefaults/scale1Dragger.h,
build/msvc7/data/draggerDefaults/jackDragger.h,
build/msvc7/data/draggerDefaults/scale2Dragger.h,
build/msvc8/data/draggerDefaults/scale1Dragger.h,
build/msvc7/data/draggerDefaults/centerballDragger.h,
build/msvc6/data/draggerDefaults/spotLightDragger.h,
build/msvc7/data/draggerDefaults/spotLightDragger.h,
build/msvc8/data/draggerDefaults/spotLightDragger.h,
build/msvc6/data/draggerDefaults/translate2Dragger.h,
build/msvc6/data/draggerDefaults/tabBoxDragger.h,
build/msvc7/data/draggerDefaults/translate1Dragger.h,
build/msvc8/data/draggerDefaults/tabBoxDragger.h,
build/msvc8/data/draggerDefaults/translate2Dragger.h,
build/msvc7/data/draggerDefaults/pointLightDragger.h,
build/msvc6/data/draggerDefaults/transformBoxDragger.h,
build/msvc7/data/draggerDefaults/directionalLightDragger.h,
build/msvc6/data/draggerDefaults/tabPlaneDragger.h,
build/msvc8/data/draggerDefaults/transformBoxDragger.h,
build/msvc6/data/draggerDefaults/scaleUniformDragger.h,
build/msvc6/data/draggerDefaults/dragPointDragger.h,
build/msvc8/data/draggerDefaults/tabPlaneDragger.h,
build/msvc7/data/draggerDefaults/dragPointDragger.h,
build/msvc8/data/draggerDefaults/scaleUniformDragger.h,
build/msvc6/data/draggerDefaults/rotateSphericalDragger.h,
build/msvc8/data/draggerDefaults/dragPointDragger.h,
build/msvc7/data/draggerDefaults/rotateSphericalDragger.h,
build/msvc8/data/draggerDefaults/rotateSphericalDragger.h:
update headers
2007-04-03 12:25:18 Rev 3678 larsa
* cfg/gendsp.pl.in, cfg/config.guess, cfg/config.sub:
updated files
2007-04-03 12:10:49 Rev 3677 larsa
* java/files/hash_adt.cxx, java/files/RefQ.java,
java/files/Deletable.java, java/files/hash_adt.h,
templates/Copyright.tpl:
copyright header update
2007-04-03 12:07:12 Rev 3676 larsa
* src/fonts/common.h, src/shapenodes/SoAsciiText.cpp,
include/Inventor/fields/SoMFBool.h, src/base/dict.c,
src/fields/SoMFMatrix.cpp,
include/Inventor/manips/SoSpotLightManip.h,
src/vrml97/CylinderSensor.cpp,
include/Inventor/collision/SoIntersectionDetectionAction.h,
src/errors/SoError.cpp, src/nodes/SoTextureCombine.cpp,
src/engines/SoCounter.cpp, include/Inventor/SbXfBox3f.h,
include/Inventor/VRMLnodes/SoVRMLPlaneSensor.h,
include/Inventor/C/threads/rwmutexp.h, src/threads/fifo.c,
src/shapenodes/soshape_bumprender.cpp,
include/Inventor/VRMLnodes/SoVRMLMovieTexture.h,
src/nodes/SoCoordinate3.cpp, include/Inventor/SoInteraction.h,
include/Inventor/nodes/SoFaceSet.h,
include/Inventor/fields/SoSFUShort.h,
include/Inventor/actions/SoPickAction.h, src/3ds/SoStream.h,
include/Inventor/elements/SoLongElement.h,
include/Inventor/C/threads/condvarp.h, src/lists/SoDetailList.cpp,
src/shapenodes/SoPointSet.cpp, include/Inventor/fields/SoSFBitMask.h,
include/Inventor/elements/SoClipPlaneElement.h,
include/Inventor/fields/SoSFBox3s.h,
include/Inventor/fields/SoSFShort.h, src/actions/SoToVRML2Action.cpp,
src/projectors/SbCylinderSectionProjector.cpp,
src/threads/condvar_pthread.ic, src/fields/SoSFString.cpp,
include/Inventor/C/base/string.h,
include/Inventor/elements/SoLazyElement.h,
include/Inventor/nodes/SoTextureCoordinateEnvironment.h,
src/vrml97/SpotLight.cpp, include/Inventor/SbDict.h,
src/elements/SoTextureMatrixElement.cpp,
src/sensors/SoNodeSensor.cpp,
include/Inventor/elements/SoShapeStyleElement.h,
src/base/SbXfBox3f.cpp, src/nodes/SoUnknownNode.cpp,
src/engines/SoComposeRotation.cpp, src/upgraders/SoPackedColorV20.h,
include/Inventor/sensors/SoNodeSensor.h,
src/lists/SoEnabledElementsList.cpp,
include/Inventor/elements/SoGLTextureImageElement.h,
include/Inventor/misc/SoContextHandler.h,
src/sensors/SoAlarmSensor.cpp, src/fields/SoSFUInt32.cpp,
include/Inventor/C/threads/threadsutilp.h,
src/shapenodes/SoIndexedNurbsCurve.cpp,
include/Inventor/nodes/SoNonIndexedShape.h,
src/nodekits/SoNodeKitPath.cpp, src/nodes/SoVertexProperty.cpp,
include/Inventor/lock/SoLockMgr.h, include/Inventor/C/base/heapp.h,
src/shapenodes/SoLineSet.cpp, src/caches/SoGlyphCache.cpp,
src/nodekits/SoNodeKitListPart.cpp, src/io/all-io-c.c,
src/fields/SoSFMatrix.cpp, src/nodes/SoLinearProfile.cpp,
src/threads/sync.c, src/vrml97/ScalarInterpolator.cpp,
src/draggers/SoSpotLightDragger.cpp,
src/elements/GL/SoGLViewingMatrixElement.cpp,
include/Inventor/elements/SoMultiTextureImageElement.h,
include/Inventor/lists/SoBaseList.h,
include/Inventor/engines/SoInterpolateVec3f.h,
include/Inventor/sensors/SoTimerSensor.h,
src/nodes/SoBumpMapCoordinate.cpp, src/glue/cg.c,
include/Inventor/nodes/SoText3.h,
include/Inventor/elements/SoMaterialBindingElement.h,
src/nodes/SoResetTransform.cpp, include/Inventor/misc/SoGenerate.h,
include/Inventor/engines/SoTimeCounter.h, src/fields/SoMFEnum.cpp,
include/Inventor/SbVec2f.h, include/Inventor/actions/SoWriteAction.h,
include/Inventor/elements/SoElements.h,
src/manips/SoTransformBoxManip.cpp, src/misc/SoGLqmeshTemplate.icc,
include/Inventor/nodes/SoPackedColor.h,
include/Inventor/nodes/SoScale.h,
src/draggers/SoCenterballDragger.cpp, src/details/SoFaceDetail.cpp,
src/engines/SoOneShot.cpp, src/base/all-base-c.c, src/base/all-base-
cpp.cpp, include/Inventor/draggers/SoScale2Dragger.h,
include/Inventor/VRMLnodes/SoVRMLParent.h, src/vrml97/Fog.cpp,
include/Inventor/caches/SoConvexDataCache.h, src/base/SbColor.cpp,
src/misc/SoGLnonindexedFaceSetTemplate.icc,
src/manips/SoHandleBoxManip.cpp, src/engines/SoComposeVec2f.cpp,
src/elements/SoCullElement.cpp,
include/Inventor/annex/HardCopy/SoHPGLVectorOutput.h,
src/elements/SoViewVolumeElement.cpp,
src/sensors/SoDelayQueueSensor.cpp,
include/Inventor/elements/SoTextureUnitElement.h,
include/Inventor/nodes/SoPointLight.h,
include/Inventor/nodes/SoVertexProperty.h,
include/Inventor/elements/SoEnvironmentElement.h, src/caches/all-
caches-cpp.cpp,
include/Inventor/elements/SoGLViewportRegionElement.h,
include/Inventor/VRMLnodes/SoVRMLInterpolator.h,
include/Inventor/fields/SoMFVec3d.h, src/sensors/SoOneShotSensor.cpp,
include/Inventor/engines/SoComputeBoundingBox.h,
src/nodes/SoTextureUnit.cpp,
src/elements/SoLightAttenuationElement.cpp,
include/Inventor/elements/SoOverrideElement.h,
src/sensors/SoTimerQueueSensor.cpp, src/nodes/SoSoundElementHelper.h,
src/vrml97/VisibilitySensor.cpp,
include/Inventor/sensors/SoTimerQueueSensor.h,
include/Inventor/engines/SoSubNodeEngine.h,
src/nodes/SoCoordinate4.cpp,
include/Inventor/caches/SoPrimitiveVertexCache.h,
src/nodes/SoLevelOfDetail.cpp, src/elements/SoUnitsElement.cpp,
include/Inventor/fields/SoMFBitMask.h,
src/misc/SoNormalGenerator.cpp,
include/Inventor/elements/SoBumpMapElement.h,
src/elements/SoClipPlaneElement.cpp, include/Inventor/SbVec4d.h,
include/Inventor/engines/SoDecomposeVec3f.h,
src/caches/SoGLCacheList.cpp, include/Inventor/nodes/SoVertexShape.h,
include/Inventor/nodes/SoProfile.h, src/misc/SoLockManager.cpp,
include/Inventor/lists/SbPList.h, include/Inventor/C/base/dict.h,
src/base/SbClip.cpp, src/fields/SoMFTime.cpp,
include/Inventor/SbOctTree.h,
src/shapenodes/SoIndexedTriangleStripSet.cpp,
include/Inventor/elements/SoWindowElement.h,
src/hardcopy/VectorizeActionP.h,
include/Inventor/actions/SoReorganizeAction.h,
src/vrml97/NavigationInfo.cpp, src/fonts/freetype.c,
src/fields/SoGlobalField.cpp,
include/Inventor/VRMLnodes/SoVRMLNormalInterpolator.h,
src/upgraders/SoPackedColorV20.cpp,
include/Inventor/annex/HardCopy/SoPSVectorOutput.h,
src/fonts/freetype.h,
include/Inventor/actions/SoGetBoundingBoxAction.h,
include/Inventor/elements/SoCoordinateElement.h,
include/Inventor/draggers/SoTransformBoxDragger.h,
include/Inventor/fields/SoSFBox3f.h,
include/Inventor/C/threads/barrierp.h,
include/Inventor/draggers/SoScaleUniformDragger.h,
include/Inventor/engines/SoDecomposeRotation.h,
include/Inventor/nodes/SoLOD.h,
include/Inventor/VRMLnodes/SoVRMLLOD.h, src/fields/SoSFShort.cpp,
src/vrml97/Switch.cpp, include/Inventor/misc/SoNormalGenerator.h,
include/Inventor/lists/SbList.h, include/Inventor/SoPath.h,
include/Inventor/annex/HardCopy/SoVectorizePSAction.h,
src/glue/spidermonkey.c, src/nodes/all-nodes-cpp.cpp,
include/Inventor/elements/SoBumpMapCoordinateElement.h,
src/elements/SoReplacedElement.cpp,
include/Inventor/C/threads/barrier.h,
include/Inventor/details/SoSubDetail.h,
include/Inventor/VRMLnodes/SoVRMLTimeSensor.h,
src/nodes/SoLocateHighlight.cpp,
src/elements/SoMultiTextureCoordinateElement.cpp,
src/elements/SoDiffuseColorElement.cpp, src/misc/SoInteraction.cpp,
src/actions/SoGlobalSimplifyAction.cpp, src/lists/SbPList.cpp,
src/glue/freetype.c, src/projectors/SbCylinderProjector.cpp,
include/Inventor/elements/SoGLNormalizeElement.h,
src/misc/SoOffscreenWGLData.h, src/hardcopy/VectorizeAction.cpp,
include/Inventor/actions/SoGlobalSimplifyAction.h,
include/Inventor/VRMLnodes/SoVRMLCylinderSensor.h,
include/Inventor/elements/SoAccumulatedElement.h,
include/Inventor/bundles/SoNormalBundle.h, src/vrml97/VertexLine.cpp,
include/Inventor/nodes/SoPickStyle.h,
src/elements/GL/SoGLTextureEnabledElement.cpp, src/vrml97/Parent.cpp,
src/nodes/SoWWWAnchor.cpp,
include/Inventor/elements/SoTexture3EnabledElement.h,
include/Inventor/VRMLnodes/SoVRMLAnchor.h,
include/Inventor/elements/SoPolygonOffsetElement.h,
src/fields/SoSFBool.cpp, src/vrml97/VertexShape.cpp,
include/Inventor/elements/SoGLDrawStyleElement.h,
include/Inventor/sensors/SoSensors.h,
include/Inventor/VRMLnodes/SoVRMLVisibilitySensor.h,
src/vrml97/WorldInfo.cpp,
include/Inventor/nodes/SoDirectionalLight.h,
src/draggers/SoScale1Dragger.cpp, include/Inventor/nodes/SoSphere.h,
include/Inventor/C/glue/glp.h, include/Inventor/fields/SoMFVec3f.h,
include/Inventor/nodekits/SoSubKitP.h,
include/Inventor/C/threads/common.h, src/3ds/3dsLoader.cpp,
src/manips/commoncode.cpp, src/nodes/SoSeparator.cpp,
src/collision/SbTri3f.h, include/Inventor/SbDPRotation.h,
include/Inventor/engines/SoSubEngine.h,
include/Inventor/elements/SoLightAttenuationElement.h,
include/Inventor/nodes/SoIndexedNurbsSurface.h, src/threads/common.c,
include/Inventor/elements/SoAnnoText3FontSizeHintElement.h,
src/engines/SoComposeVec3f.cpp, src/fields/SoSFNode.cpp,
include/Inventor/nodekits/SoCameraKit.h,
include/Inventor/events/SoButtonEvent.h, src/vrml97/PlaneSensor.cpp,
src/fonts/default3dfont.c, src/lists/SbList.cpp,
src/misc/SoOffscreenRenderer.cpp, include/Inventor/SbVec4f.h,
src/fonts/glyph3d.c, include/Inventor/nodes/SoListener.h,
src/details/SoNodeKitDetail.cpp,
include/Inventor/elements/SoGLCoordinateElement.h,
src/fonts/glyph3d.h, src/nodes/SoRotation.cpp,
src/projectors/SbCylinderSheetProjector.cpp,
include/Inventor/elements/SoDecimationTypeElement.h,
src/threads/mutex_pthread.ic,
include/Inventor/nodes/SoIndexedNurbsCurve.h,
src/nodes/SoColorIndex.cpp, src/nodes/SoShapeHints.cpp,
src/nodes/SoLight.cpp, include/Inventor/VRMLnodes/SoVRMLExtrusion.h,
include/Inventor/manips/SoTrackballManip.h,
include/Inventor/fields/SoMFULong.h,
src/elements/GL/SoGLClipPlaneElement.cpp,
include/Inventor/nodes/SoRotor.h, src/threads/condvar.c,
include/Inventor/nodes/SoCylinder.h, include/Inventor/SoType.h,
src/nodes/SoTexture3Transform.cpp, src/fields/SoMFRotation.cpp,
include/Inventor/elements/SoComplexityElement.h,
include/Inventor/nodes/SoFile.h,
include/Inventor/elements/SoViewVolumeElement.h,
src/elements/GL/SoGLEmissiveColorElement.cpp,
include/Inventor/nodes/SoImage.h, src/actions/SoRayPickAction.cpp,
src/glue/gl_wgl.c, src/nodes/SoPolygonOffset.cpp,
include/Inventor/nodes/SoMaterialBinding.h,
include/Inventor/engines/SoFieldConverter.h,
src/nodekits/SoNodekitCatalog.cpp, src/threads/mutex_win32mutex.ic,
include/Inventor/elements/SoTextureScaleQualityElement.h,
src/elements/SoCoordinateElement.cpp,
include/Inventor/C/base/namemap.h,
include/Inventor/nodes/SoTextureUnit.h,
include/Inventor/threads/SbCondVar.h,
include/Inventor/actions/SoShapeSimplifyAction.h,
include/Inventor/fields/SoMFUShort.h,
include/Inventor/fields/SoSFColor.h, src/nodes/SoTransform.cpp,
include/Inventor/annex/HardCopy/SoVectorizeGDIAction.h,
include/Inventor/SbDPLinear.h, include/Inventor/lists/SbVec3fList.h,
src/fields/SoMFShort.cpp,
include/Inventor/VRMLnodes/SoVRMLIndexedFaceSet.h,
src/projectors/SbSphereProjector.cpp,
src/shapenodes/SoIndexedNurbsSurface.cpp,
include/Inventor/elements/SoFontSizeElement.h,
src/hardcopy/PSVectorOutput.cpp, include/Inventor/caches/SoCache.h,
src/nodes/SoScale.cpp, src/details/SoLineDetail.cpp,
include/Inventor/engines/SoEngine.h,
src/nodekits/SoInteractionKit.cpp, src/misc/PointerMap.cpp,
include/Inventor/nodekits/SoBaseKit.h,
include/Inventor/elements/SoMultiTextureCoordinateElement.h,
include/Inventor/nodes/SoLineSet.h,
include/Inventor/actions/SoAction.h,
include/Inventor/actions/SoGetPrimitiveCountAction.h,
include/Inventor/SbBox2s.h,
src/elements/SoMultiTextureMatrixElement.cpp,
src/shapenodes/soshape_trianglesort.cpp,
src/lists/SoCallbackList.cpp, src/elements/SoShininessElement.cpp,
src/base/hash.c, include/Inventor/events/SoSpaceballButtonEvent.h,
src/base/SbViewVolume.cpp, src/fields/SoSFImage3.cpp,
include/Inventor/engines/SoOnOff.h,
include/Inventor/nodes/SoNormal.h,
include/Inventor/events/SoLocation2Event.h,
include/Inventor/lists/SoAuditorList.h,
include/Inventor/lists/SoPickedPointList.h,
include/Inventor/nodes/SoMarkerSet.h,
include/Inventor/errors/SoError.h,
include/Inventor/nodes/SoTextureCombine.h, src/misc/AudioTools.cpp,
include/Inventor/system/inttypes.h.in, src/bundles/all-bundles-
cpp.cpp, src/threads/sched.c, src/misc/SoGlyph.cpp,
src/nodes/SoFont.cpp,
include/Inventor/VRMLnodes/SoVRMLIndexedShape.h,
include/Inventor/VRMLnodes/SoVRMLPixelTexture.h,
include/Inventor/fields/SoSField.h, src/glue/GLUWrapper.c,
src/engines/SoOutputData.cpp, include/Inventor/fields/SoMFNode.h,
src/bundles/SoMaterialBundle.cpp, src/nodekits/SoAppearanceKit.cpp,
src/vrml97/CoordinateInterpolator.cpp,
include/Inventor/elements/SoBBoxModelMatrixElement.h,
include/Inventor/nodes/SoResetTransform.h,
include/Inventor/nodes/SoCube.h,
include/Inventor/nodes/SoLevelOfDetail.h,
src/elements/SoProfileCoordinateElement.cpp,
include/Inventor/C/errors/debugerror.h,
include/Inventor/fields/SoFieldContainer.h,
include/Inventor/elements/SoGLLinePatternElement.h,
include/Inventor/SbBox2d.h,
include/Inventor/annex/HardCopy/SoVectorOutput.h,
src/elements/GL/SoGLMultiTextureMatrixElement.cpp,
src/vrml97/Color.cpp, src/engines/SoEngineOutput.cpp,
src/vrml97/Cone.cpp, src/misc/SoSceneManager.cpp,
include/Inventor/nodes/SoTransformation.h,
src/misc/SoOffscreenAGLData.cpp, src/threads/recmutex.c,
src/engines/SoComposeVec4f.cpp, include/Inventor/SbPlane.h,
include/Inventor/nodes/SoTransparencyType.h,
include/Inventor/nodes/SoArray.h, include/Inventor/fields/SoMFTime.h,
include/Inventor/VRMLnodes/SoVRMLSphere.h,
include/Inventor/nodes/SoSurroundScale.h, src/vrml97/Anchor.cpp,
src/fields/SoSField.cpp, include/Inventor/nodes/SoSeparator.h,
src/elements/SoLineWidthElement.cpp, src/fields/SoSFColor.cpp,
src/elements/SoAnnoText3FontSizeHintElement.cpp,
src/caches/SoPrimitiveVertexCache.cpp, src/base/SbTesselator.cpp,
include/Inventor/So.h, src/vrml97/Coordinate.cpp,
include/Inventor/C/glue/simage_wrapper.h,
include/Inventor/VRMLnodes/SoVRMLAudioClip.h,
include/Inventor/elements/SoProfileElement.h,
src/shapenodes/SoIndexedLineSet.cpp, include/Inventor/SbString.h,
include/Inventor/VRMLnodes/SoVRMLBackground.h,
src/elements/SoBumpMapCoordinateElement.cpp,
src/elements/SoTransparencyElement.cpp,
include/Inventor/draggers/SoTransformerDragger.h,
include/Inventor/projectors/SbCylinderPlaneProjector.h,
include/Inventor/fields/SoSFLong.h, src/engines/SoNodeEngine.cpp,
src/vrml97/PositionInterpolator.cpp,
include/Inventor/nodes/SoProfileCoordinate2.h,
src/vrml97/AudioClip.cpp, src/draggers/SoTranslate1Dragger.cpp,
src/nodes/SoMatrixTransform.cpp,
include/Inventor/draggers/SoCenterballDragger.h,
src/nodes/SoTextureCoordinateCylinder.cpp,
src/caches/SoGLRenderCache.cpp, src/vrml97/Background.cpp,
src/actions/SoAction.cpp, include/Inventor/fields/SoMFName.h,
include/Inventor/nodes/SoNurbsSurface.h, src/misc/SoVBO.cpp,
src/manips/SoJackManip.cpp, include/Inventor/C/threads/thread.h,
include/Inventor/fields/SoSFVec2s.h, src/lists/SoPathList.cpp,
include/Inventor/VRMLnodes/SoVRMLScalarInterpolator.h,
include/Inventor/C/threads/worker.h, src/fields/SoField.cpp,
src/glue/dl.c, include/Inventor/nodes/SoWWWAnchor.h,
src/shapenodes/SoTriangleStripSet.cpp,
include/Inventor/elements/SoShininessElement.h,
src/lists/SoEngineList.cpp, src/threads/thread.c,
src/threads/worker.c,
include/Inventor/elements/SoTextureQualityElement.h,
src/nodes/SoCallback.cpp,
include/Inventor/elements/SoGLDisplayList.h, src/nodes/SoBumpMap.cpp,
src/misc/cppmangle.icc, include/Inventor/nodekits/SoNodekitCatalog.h,
src/hardcopy/GDIVectorOutput.cpp, src/base/SbVec2s.cpp,
include/Inventor/nodes/SoOrthographicCamera.h,
include/Inventor/elements/SoModelMatrixElement.h,
include/Inventor/elements/SoGLClipPlaneElement.h,
include/Inventor/misc/SoGLBigImage.h,
include/Inventor/nodes/SoAnnotation.h,
src/elements/SoSwitchElement.cpp, src/nodes/SoTexture2.cpp,
src/vrml97/JS_VRMLClasses.h, include/Inventor/fields/SoMFShort.h,
src/elements/SoTextureCoordinateElement.cpp,
src/nodes/SoAnnoText3Property.cpp,
include/Inventor/nodes/SoFontStyle.h, src/sensors/SoSensor.cpp,
include/Inventor/actions/SoGLRenderAction.h, src/glue/gl_glx.c,
include/Inventor/SbBox2f.h, include/Inventor/nodes/SoRotation.h,
include/Inventor/nodes/SoTextureCoordinateCylinder.h,
include/Inventor/VRMLnodes/SoVRMLTexture.h, src/misc/SoPick.cpp,
include/Inventor/C/base/hash.h, src/fields/SoMFBool.cpp,
include/Inventor/misc/SoLightPath.h,
include/Inventor/fields/SoSFUInt32.h,
include/Inventor/lists/SbStringList.h,
src/hardcopy/VectorizeHPGLAction.cpp,
include/Inventor/nodes/SoTexture3Transform.h,
include/Inventor/VRMLnodes/SoVRMLPointLight.h,
include/Inventor/C/base/dictp.h, src/io/SoOutput_Writer.cpp,
include/Inventor/fields/SoSFInt32.h, src/base/SbColor4f.cpp,
include/Inventor/misc/SoGLImage.h, src/vrml97/Light.cpp, src/hardcopy
/all-hardcopy-cpp.cpp, src/io/SoInput.cpp, src/fields/SoMFColor.cpp,
include/Inventor/VRMLnodes/SoVRMLNormal.h, src/misc/SoTempPath.cpp,
src/fields/SoMFNode.cpp, src/misc/SoOffscreenGLXData.h,
include/Inventor/SbClip.h, src/vrml97/Interpolator.cpp,
src/draggers/SoScaleUniformDragger.cpp,
src/elements/GL/SoGLRenderPassElement.cpp,
src/draggers/SoRotateSphericalDragger.cpp,
include/Inventor/elements/SoGLTextureCoordinateElement.h,
src/base/SbTime.cpp, include/Inventor/details/SoDetail.h,
include/Inventor/nodekits/SoShapeKit.h,
include/Inventor/nodes/SoTexture2.h,
src/elements/GL/SoGLLineWidthElement.cpp,
include/Inventor/events/SoMotion3Event.h,
include/Inventor/nodes/SoTextureCoordinate2.h,
src/vrml97/IndexedFaceSet.cpp, include/Inventor/fields/SoSFFloat.h,
include/Inventor/SbImage.h,
include/Inventor/elements/SoReplacedElement.h,
include/Inventor/nodes/SoAsciiText.h,
src/draggers/SoPointLightDragger.cpp,
include/Inventor/VRMLnodes/SoVRMLSubInterpolator.h,
src/threads/mutex_win32cs.ic, include/Inventor/nodes/SoMaterial.h,
include/Inventor/lists/SoActionMethodList.h,
include/Inventor/draggers/SoPointLightDragger.h,
src/misc/SoNotification.cpp,
include/Inventor/VRMLnodes/SoVRMLWorldInfo.h,
include/Inventor/nodekits/SoNodeKit.h,
include/Inventor/threads/SbMutex.h,
include/Inventor/VRMLnodes/SoVRMLSensor.h,
include/Inventor/VRMLnodes/SoVRMLCylinder.h,
src/draggers/SoTrackballDragger.cpp, include/Inventor/SbMatrix.h,
include/Inventor/SbBSPTree.h,
include/Inventor/VRMLnodes/SoVRMLInline.h, src/vrml97/Appearance.cpp,
src/engines/SoOnOff.cpp, src/base/SbVec2d.cpp,
include/Inventor/elements/SoFontNameElement.h, src/base/SbString.cpp,
src/sensors/SoIdleSensor.cpp, src/lists/SoBaseList.cpp,
include/Inventor/Sb.h, src/nodes/SoSceneTexture2.cpp,
include/Inventor/nodes/SoPolygonOffset.h,
src/events/SoButtonEvent.cpp, src/hardcopy/VectorizePSAction.cpp,
src/fields/SoMFBitMask.cpp,
src/nodes/SoTextureCoordinateFunction.cpp,
include/Inventor/nodes/SoCoordinate4.h,
src/elements/SoAnnoText3CharOrientElement.cpp,
src/elements/SoTextureImageElement.cpp, src/base/SbBox2s.cpp,
src/nodes/SoTexture3.cpp,
include/Inventor/annex/HardCopy/SoGDIVectorOutput.h,
src/hardcopy/VectorizeActionP.cpp, src/glue/simage_wrapper.c,
src/base/SbMatrix.cpp, src/vrml97/Script.cpp, src/errors/error.c,
include/Inventor/C/glue/freetype.h,
include/Inventor/fields/SoSFVec2f.h,
include/Inventor/elements/SoGLViewingMatrixElement.h, src/errors/all-
errors-c.c, include/Inventor/VRMLnodes/SoVRMLVertexShape.h,
include/Inventor/nodes/SoMatrixTransform.h, src/threads/barrier.c,
include/Inventor/elements/SoEmissiveColorElement.h,
src/base/SbVec3s.cpp, include/Inventor/nodes/SoPointSet.h,
include/Inventor/VRMLnodes/SoVRMLIndexedLineSet.h,
include/Inventor/elements/SoLightModelElement.h,
include/Inventor/lists/SoNodeList.h, src/misc/SoNotRec.cpp,
include/Inventor/projectors/SbSphereSectionProjector.h,
include/Inventor/lists/SoEnabledElementsList.h,
src/vrml97/IndexedLine.cpp, src/shapenodes/SoVertexShape.cpp,
include/Inventor/caches/SoTextureCoordinateCache.h,
src/io/SoInput_Reader.cpp, src/caches/SoBoundingBoxCache.cpp,
src/vrml97/Collision.cpp, src/fonts/win32.c,
include/Inventor/lists/SoCallbackList.h, src/threads/wrappers.cpp,
include/Inventor/elements/SoMultiTextureMatrixElement.h,
src/vrml97/OrientationInterpolator.cpp, src/nodes/SoNode.cpp,
src/fonts/win32.h, src/nodes/SoNormal.cpp,
src/engines/SoConvertAll.cpp, src/nodes/SoMaterialBinding.cpp,
include/Inventor/caches/SoNormalCache.h, src/base/SbHeap.cpp,
include/Inventor/actions/SoSubActionP.h, src/lists/SoFieldList.cpp,
src/vrml97/PointLight.cpp, src/lists/SoEngineOutputList.cpp,
include/Inventor/elements/SoGLShadeModelElement.h,
include/Inventor/VRMLnodes/SoVRMLPositionInterpolator.h,
include/Inventor/nodes/SoBumpMapCoordinate.h,
src/misc/SoOffscreenAGLData.h,
include/Inventor/engines/SoComposeVec3f.h,
src/engines/SoDecomposeMatrix.cpp,
include/Inventor/errors/SoErrors.h,
include/Inventor/events/SoMouseButtonEvent.h,
include/Inventor/manips/SoTabBoxManip.h,
src/misc/CoinOffscreenGLCanvas.h,
include/Inventor/engines/SoDecomposeMatrix.h,
src/misc/SoGLqmeshpreciselightingTemplate.icc,
include/Inventor/SoOutput.h, include/Inventor/threads/SbBarrier.h,
include/Inventor/SbBasic.h, src/misc/SoOffscreenGLXData.cpp,
include/Inventor/C/basic.h.in, include/Inventor/SbViewportRegion.h,
include/Inventor/VRMLnodes/SoVRMLElevationGrid.h,
src/elements/SoLinePatternElement.cpp, src/misc/SoAudioDevice.cpp,
src/nodekits/SoNodeKit.cpp, src/base/string.c,
include/Inventor/errors/SoDebugError.h, src/vrml97/Text.cpp,
include/Inventor/elements/SoGLCacheContextElement.h,
include/Inventor/C/tidbits.h,
include/Inventor/nodes/SoTextureCoordinateDefault.h,
include/Inventor/VRMLnodes/SoVRMLSubInterpolatorP.h,
src/misc/SoGLnonindexedTristripSetTemplate.icc,
include/Inventor/draggers/SoTrackballDragger.h,
src/fields/SoSFRotation.cpp, src/draggers/SoHandleBoxDragger.cpp,
src/fields/SoSFInt32.cpp, src/vrml97/Extrusion.cpp,
src/nodes/SoShuttle.cpp,
include/Inventor/draggers/SoRotateDiscDragger.h,
src/lists/SoAuditorList.cpp, src/manips/SoDirectionalLightManip.cpp,
include/Inventor/nodes/SoLightModel.h, src/fields/SoMField.cpp,
src/base/SbDPLine.cpp,
include/Inventor/elements/SoSpecularColorElement.h,
src/base/SbBox2d.cpp,
include/Inventor/VRMLnodes/SoVRMLProximitySensor.h,
include/Inventor/sensors/SoFieldSensor.h,
src/nodes/SoTextureCoordinateCube.cpp,
include/Inventor/VRMLnodes/SoVRMLImageTexture.h, src/base/list.c,
include/Inventor/nodekits/SoSubKit.h, src/engines/SoTimeCounter.cpp,
include/Inventor/SoDB.h, src/shapenodes/SoNurbsSurface.cpp,
include/Inventor/nodekits/SoSeparatorKit.h,
include/Inventor/elements/SoPickRayElement.h,
src/nodes/SoFontStyle.cpp, src/vrml97/IndexedShape.cpp,
src/base/SbVec3d.cpp, include/Inventor/nodes/SoCone.h,
src/nodekits/SoBaseKit.cpp, include/Inventor/SoLists.h,
src/caches/SoConvexDataCache.cpp, src/io/SoOutput.cpp,
include/Inventor/draggers/SoScale2UniformDragger.h,
src/fonts/fontspec.c, src/nodes/SoUnits.cpp,
src/projectors/SbSpherePlaneProjector.cpp,
src/errors/SoDebugError.cpp, src/elements/all-elements-cpp.cpp,
src/fonts/fontspec.h, include/Inventor/engines/SoGate.h,
src/actions/SoBoxHighlightRenderAction.cpp, src/misc/SoLightPath.cpp,
include/Inventor/elements/SoGLEnvironmentElement.h,
src/nodes/SoNurbsProfile.cpp, src/elements/SoComplexityElement.cpp,
src/elements/SoPolygonOffsetElement.cpp,
include/Inventor/SoFullPath.h, src/3ds/SoStream.cpp,
src/elements/SoTexture3EnabledElement.cpp,
src/projectors/SbProjector.cpp,
src/elements/SoTextureUnitElement.cpp, src/hardcopy/VectorizeItems.h,
src/base/SbBox3s.cpp, include/Inventor/lists/SoPathList.h,
src/io/SoInputP.h, include/Inventor/threads/SbRWMutex.h,
include/Inventor/SoSceneManager.h,
src/elements/GL/SoGLTextureMatrixElement.cpp,
src/nodes/SoSurroundScale.cpp, src/misc/SoOffscreenInternalData.h,
include/Inventor/annex/HardCopy/SoCGMVectorOutput.h,
src/elements/SoTextureEnabledElement.cpp,
include/Inventor/manips/SoPointLightManip.h,
include/Inventor/C/threads/sched.h,
include/Inventor/fields/SoSFImage3.h, src/upgraders/SoUpgrader.h,
include/Inventor/fields/SoMFColor.h,
include/Inventor/nodes/SoSceneTexture2.h,
include/Inventor/SoNodeKitPath.h, include/Inventor/C/glue/gl.h,
include/Inventor/VRMLnodes/SoVRMLScript.h, src/nodes/SoPattern.cpp,
include/Inventor/nodes/SoTransform.h,
include/Inventor/bundles/SoMaterialBundle.h,
include/Inventor/elements/SoComplexityTypeElement.h,
src/misc/SoVertexArrayIndexer.h, src/base/SbPlane.cpp,
src/vrml97/ProximitySensor.cpp, src/fields/SoMFEngine.cpp,
src/upgraders/SoShapeHintsV10.h, src/actions/SoGLRenderAction.cpp,
src/sensors/SoSensorManager.cpp,
include/Inventor/VRMLnodes/SoVRMLCone.h,
src/elements/SoDecimationTypeElement.cpp,
include/Inventor/elements/SoGLMultiTextureEnabledElement.h,
include/Inventor/C/glue/gl_agl.h, src/base/SbGLUTessellator.cpp,
include/Inventor/draggers/SoJackDragger.h,
include/Inventor/fields/SoSFVec4f.h,
include/Inventor/SbDPViewVolume.h, include/Inventor/nodes/SoUnits.h,
include/Inventor/misc/SoChildList.h, src/fields/SoSFVec2s.cpp,
include/Inventor/fields/SoMFUInt32.h,
include/Inventor/actions/SoLineHighlightRenderAction.h,
src/manips/SoTransformManip.cpp, src/fields/SoMFInt32.cpp,
include/Inventor/projectors/SbSphereSheetProjector.h,
src/actions/SoSimplifyAction.cpp, src/threads/mutex.c,
src/nodes/SoWWWInline.cpp, include/Inventor/nodes/SoWWWInline.h,
src/misc/SoGLImage.cpp, include/Inventor/details/SoConeDetail.h,
src/base/SbVec2f.cpp, include/Inventor/C/threads/fifo.h,
src/lists/SoPickedPointList.cpp,
include/Inventor/C/threads/storagep.h,
include/Inventor/actions/SoAudioRenderAction.h,
src/vrml97/TextureCoordinate.cpp,
include/Inventor/SoOffscreenRenderer.h,
src/nodes/SoPerspectiveCamera.cpp, src/misc/SoState.cpp,
include/Inventor/misc/SoState.h, src/draggers/SoDragPointDragger.cpp,
src/engines/SoDecomposeRotation.cpp, src/misc/SoVBO.h,
src/nodes/SoLOD.cpp, src/actions/SoWriteAction.cpp,
include/Inventor/elements/SoTextureCombineElement.h,
src/fields/SoSFBitMask.cpp, include/Inventor/C/glue/spidermonkey.h,
include/Inventor/threads/SbTypedStorage.h,
src/elements/GL/SoGLMultiTextureCoordinateElement.cpp,
src/nodes/SoProfileCoordinate2.cpp, src/actions/SoSearchAction.cpp,
src/fields/SoSFEngine.cpp, include/Inventor/events/SoSubEvent.h,
src/nodes/SoComplexity.cpp,
include/Inventor/VRMLnodes/SoVRMLFontStyle.h,
include/Inventor/engines/SoInterpolateFloat.h,
include/Inventor/sensors/SoSensor.h, src/base/rbptree.c,
include/Inventor/VRMLnodes/SoVRMLMaterial.h,
src/lists/SoNodeList.cpp, src/hardcopy/HardCopy.cpp,
include/Inventor/nodes/SoIndexedTriangleStripSet.h,
include/Inventor/nodes/SoUnknownNode.h,
include/Inventor/engines/SoComposeRotation.h,
src/nodes/SoTransparencyType.cpp,
include/Inventor/elements/SoSoundElement.h,
include/Inventor/elements/SoLocalBBoxMatrixElement.h,
include/Inventor/annex/HardCopy/SoVectorizeCGMAction.h,
include/Inventor/VRMLnodes/SoVRMLTextureCoordinate.h,
include/Inventor/engines/SoElapsedTime.h,
src/upgraders/SoShapeHintsV10.cpp, src/vrml97/Geometry.cpp,
include/Inventor/manips/SoJackManip.h,
include/Inventor/C/threads/sync.h,
src/misc/CoinOffscreenGLCanvas.cpp, src/details/SoConeDetail.cpp,
include/Inventor/actions/SoSimplifyAction.h,
include/Inventor/engines/SoCompose.h,
include/Inventor/C/base/hashp.h, src/base/SbVec4d.cpp, src/collision
/all-collision-cpp.cpp, include/Inventor/C/base/list.h,
include/Inventor/SbDPPlane.h, src/base/SbGLUTessellator.h,
include/Inventor/nodes/SoPerspectiveCamera.h,
src/misc/SoGLBigImage.cpp,
include/Inventor/details/SoCylinderDetail.h,
include/Inventor/engines/SoOutputData.h,
include/Inventor/elements/SoGLUpdateAreaElement.h,
src/fields/SoSFPath.cpp,
src/elements/GL/SoGLViewportRegionElement.cpp,
src/bundles/SoTextureCoordinateBundle.cpp,
src/sensors/SoDataSensor.cpp, include/Inventor/fields/SoSFPath.h,
src/base/SbBSPTree.cpp, src/elements/GL/SoGLDisplayList.cpp,
src/nodes/SoInfo.cpp, include/Inventor/misc/SoTranSender.h,
include/Inventor/VRMLnodes/SoVRMLVertexPoint.h,
include/Inventor/engines/SoNodeEngine.h,
include/Inventor/engines/SoInterpolateVec2f.h,
include/Inventor/events/SoKeyboardEvent.h,
src/elements/SoNormalElement.cpp,
include/Inventor/elements/SoNormalBindingElement.h,
include/Inventor/engines/SoSelectOne.h,
src/vrml97/ColorInterpolator.cpp,
src/projectors/SbSphereSectionProjector.cpp,
include/Inventor/VRMLnodes/SoVRMLPointSet.h, src/base/SbLine.cpp,
include/Inventor/engines/SoComposeMatrix.h,
src/nodes/SoPointLight.cpp, src/details/all-details-cpp.cpp,
src/shapenodes/SoQuadMesh.cpp, include/Inventor/fields/SoSFPlane.h,
include/Inventor/actions/SoRayPickAction.h,
include/Inventor/nodes/SoTextureScalePolicy.h,
include/Inventor/C/threads/threadp.h,
include/Inventor/details/SoPointDetail.h, src/vrml97/Cylinder.cpp,
src/projectors/all-projectors-cpp.cpp, include/Inventor/SbVec3s.h,
include/Inventor/MPEG/SoMPEGRenderer.h, src/base/SbBox2f.cpp,
include/Inventor/events/SoEvents.h, src/nodes/SoExtSelection.cpp,
include/Inventor/elements/SoListenerGainElement.h,
src/caches/normalcache_numcoords_hack.cpp,
include/Inventor/nodes/SoTriangleStripSet.h,
src/draggers/SoTabPlaneDragger.cpp, src/fields/SoSFVec3s.cpp,
include/Inventor/nodes/SoText2.h, src/nodes/SoSpotLight.cpp,
src/misc/SoGLLineSetTemplate.icc,
src/elements/GL/SoGLMultiTextureImageElement.cpp,
src/fonts/defaultfonts.h, include/Inventor/actions/SoSubAction.h,
include/Inventor/elements/SoTextureCoordinateBindingElement.h,
src/manips/all-manips-cpp.cpp, src/nodes/SoTextureCoordinate2.cpp,
src/base/SbVec3f.cpp, src/nodes/SoProfileCoordinate3.cpp,
include/Inventor/nodekits/SoLightKit.h,
include/Inventor/nodes/SoTextureCoordinatePlane.h,
include/Inventor/elements/SoListenerDopplerElement.h,
include/Inventor/C/glue/bzip2.h, src/nodekits/SoWrapperKit.cpp,
include/Inventor/projectors/SbProjectors.h, src/fields/SoSFName.cpp,
include/Inventor/elements/SoTextureMatrixElement.h,
src/sensors/SoPathSensor.cpp, src/lists/SbStringList.cpp,
include/Inventor/projectors/SbCylinderProjector.h,
src/base/SbSphere.cpp, include/Inventor/nodes/SoLight.h,
src/details/SoCubeDetail.cpp,
src/elements/GL/SoGLUpdateAreaElement.cpp,
include/Inventor/nodes/SoRotationXYZ.h, src/nodes/SoFile.cpp,
src/fonts/default2dfont.c, src/hardcopy/VectorOutput.cpp,
src/shapenodes/SoIndexedShape.cpp, include/Inventor/misc/SoNotRec.h,
src/elements/SoEnvironmentElement.cpp,
include/Inventor/manips/SoCenterballManip.h,
include/Inventor/SbVec3d.h,
include/Inventor/elements/SoProjectionMatrixElement.h,
include/Inventor/fields/SoMFInt32.h, src/nodes/SoBlinker.cpp,
src/engines/SoInterpolateRotation.cpp, src/nodes/SoLightModel.cpp,
include/Inventor/engines/SoDecomposeVec2f.h,
src/actions/SoGetMatrixAction.cpp,
include/Inventor/VRMLnodes/SoVRMLDirectionalLight.h,
src/nodes/SoGroup.cpp, src/hardcopy/HPGLVectorOutput.cpp,
src/elements/SoTextureScaleQualityElement.cpp,
include/Inventor/C/threads/workerp.h,
src/misc/CoinStaticObjectInDLL.h, src/threads/all-threads-c.c,
include/Inventor/fields/SoMField.h, src/vrml97/Inline.cpp,
include/Inventor/engines/SoCalculator.h,
src/elements/SoBBoxModelMatrixElement.cpp,
src/elements/SoFontSizeElement.cpp,
include/Inventor/draggers/SoRotateSphericalDragger.h,
include/Inventor/elements/SoShapeHintsElement.h,
include/Inventor/fields/SoMFFloat.h,
include/Inventor/details/SoLineDetail.h,
include/Inventor/elements/SoCreaseAngleElement.h,
include/Inventor/threads/SbFifo.h, src/bundles/SoBundle.cpp,
src/collision/SbTri3f.cpp, src/nodes/SoBumpMapTransform.cpp,
src/draggers/SoDragger.cpp,
include/Inventor/nodes/SoTransformSeparator.h,
include/Inventor/misc/SoBase.h,
include/Inventor/elements/SoGLPolygonOffsetElement.h,
include/Inventor/SbTesselator.h,
src/elements/SoTextureScalePolicyElement.cpp,
src/elements/SoSoundElement.cpp, src/fields/shared.h,
src/caches/SoTextureCoordinateCache.cpp,
src/manips/SoClipPlaneManip.cpp,
include/Inventor/nodes/SoShapeHints.h,
include/Inventor/nodes/SoColorIndex.h, src/vrml97/VertexPoint.cpp,
src/nodes/SoArray.cpp, src/nodes/SoLabel.cpp,
include/Inventor/threads/SbThreadAutoLock.h,
include/Inventor/manips/SoTransformManip.h,
src/engines/SoDecomposeVec2f.cpp,
src/actions/SoAudioRenderAction.cpp, src/nodes/SoPendulum.cpp,
src/caches/SoNormalCache.cpp,
src/elements/GL/SoGLCoordinateElement.cpp, src/fields/SoSFVec3d.cpp,
src/engines/SoTriggerAny.cpp, src/vrml97/PointSet.cpp, src/mpeg/all-
mpeg-cpp.cpp, include/Inventor/sensors/SoIdleSensor.h,
include/Inventor/C/glue/cg.h, src/glue/all-glue-c.c,
src/vrml97/Viewpoint.cpp, src/elements/SoInt32Element.cpp,
src/elements/SoProfileElement.cpp,
src/elements/SoAnnoText3RenderPrintElement.cpp,
include/Inventor/misc/SoProtoInstance.h,
include/Inventor/misc/SoTranReceiver.h,
include/Inventor/nodes/SoDrawStyle.h,
src/elements/SoShapeHintsElement.cpp, src/fields/SoSFBox3s.cpp,
include/Inventor/fields/SoMFLong.h, src/errors/SoReadError.cpp,
src/elements/GL/SoGLNormalElement.cpp,
include/Inventor/fields/SoMFVec2f.h, src/shapenodes/SoFaceSet.cpp,
include/Inventor/VRMLnodes/SoVRMLText.h,
include/Inventor/errors/SoMemoryError.h,
src/nodes/SoTextureCoordinate3.cpp,
src/projectors/SbPlaneProjector.cpp, src/fields/SoSFFloat.cpp,
src/vrml97/DragSensor.cpp, src/nodes/SoEventCallback.cpp,
include/Inventor/engines/SoInterpolateVec4f.h, src/errors/all-errors-
cpp.cpp, src/misc/SoContextHandler.cpp, src/base/SbBox3f.cpp,
src/misc/AudioTools.h,
include/Inventor/elements/SoGLShapeHintsElement.h,
include/Inventor/elements/SoGLColorIndexElement.h,
include/Inventor/VRMLnodes/SoVRMLLight.h, src/glue/win32api.c,
include/Inventor/fields/SoSFImage.h, include/Inventor/misc/SoPick.h,
src/events/SoSpaceballButtonEvent.cpp,
include/Inventor/events/SoEvent.h,
include/Inventor/elements/SoTextOutlineEnabledElement.h,
src/collision/SoIntersectionDetectionAction.cpp,
include/Inventor/SbVec3f.h, src/io/SoWriterefCounter.cpp,
src/fields/SoSFPlane.cpp, src/fonts/glyph2d.c,
src/elements/GL/SoGLLinePatternElement.cpp,
src/elements/GL/SoGLMultiTextureEnabledElement.cpp,
include/Inventor/details/SoTextDetail.h, include/Inventor/SbLinear.h,
include/Inventor/elements/SoGLModelMatrixElement.h,
src/base/SbVec4f.cpp, src/fonts/glyph2d.h, src/shapenodes/SoCube.cpp,
include/Inventor/VRMLnodes/SoVRMLCoordinateInterpolator.h,
src/upgraders/all-upgraders-cpp.cpp,
include/Inventor/lists/SbIntList.h, src/nodes/SoClipPlane.cpp,
src/base/SbImage.cpp, src/base/SbViewportRegion.cpp,
include/Inventor/nodes/SoFont.h, include/Inventor/misc/SoGlyph.h,
src/vrml97/DirectionalLight.cpp,
src/elements/SoFocalDistanceElement.cpp, src/vrml97/Sound.cpp,
src/caches/SoCache.cpp, src/elements/SoCacheElement.cpp,
include/Inventor/VRMLnodes/SoVRMLTransform.h,
include/Inventor/SbViewVolume.h, include/Inventor/nodes/SoPattern.h,
include/Inventor/nodes/SoTexture2Transform.h,
include/Inventor/elements/SoTextureOverrideElement.h,
src/base/SbRotation.cpp,
include/Inventor/elements/SoProfileCoordinateElement.h,
src/engines/SoComposeRotationFromTo.cpp,
include/Inventor/elements/SoTransparencyElement.h,
src/fields/SoSFVec2f.cpp,
include/Inventor/nodes/SoAnnoText3Property.h,
include/Inventor/VRMLnodes/SoVRMLBillboard.h,
include/Inventor/nodekits/SoWrapperKit.h,
include/Inventor/draggers/SoDragger.h, src/base/SbDPPlane.cpp,
src/elements/SoLocalBBoxMatrixElement.cpp,
include/Inventor/engines/SoEngineOutput.h,
include/Inventor/misc/SoNotification.h,
src/misc/SoJavaScriptEngine.cpp,
include/Inventor/projectors/SbProjector.h,
src/vrml97/TextureTransform.cpp, src/details/SoTextDetail.cpp,
src/fields/SoMFVec3d.cpp,
include/Inventor/sensors/SoDelayQueueSensor.h,
include/Inventor/C/threads/wpoolp.h,
include/Inventor/engines/SoDecomposeVec4f.h,
src/elements/SoSpecularColorElement.cpp,
include/Inventor/lists/SoEngineList.h, src/engines/all-engines-
cpp.cpp, src/hardcopy/VectorizeCGMAction.cpp, src/nodes/SoSwitch.cpp,
src/fields/shared.cpp, include/Inventor/engines/SoCounter.h,
src/actions/SoGetBoundingBoxAction.cpp,
include/Inventor/nodes/SoShape.h,
include/Inventor/fields/SoGlobalField.h, src/draggers/all-draggers-
cpp.cpp, src/mpeg/SoMPEGFrameRenderer.cpp, src/vrml97/all-
vrml97-cpp.cpp, src/actions/all-actions-cpp.cpp,
src/fonts/fontlib_wrapper.c, src/fields/SoMFPath.cpp,
src/nodes/SoPathSwitch.cpp, src/fonts/fontlib_wrapper.h,
src/engines/SoDecomposeVec3f.cpp, src/fields/SoMFFloat.cpp,
src/nodes/SoPackedColor.cpp, src/nodekits/SoLightKit.cpp,
src/vrml97/ImageTexture.cpp, src/draggers/SoJackDragger.cpp,
src/draggers/SoScale2UniformDragger.cpp, include/Inventor/SbDPLine.h,
src/nodes/SoMaterial.cpp, include/Inventor/C/tidbitsp.h,
include/Inventor/VRMLnodes/SoVRMLBox.h,
include/Inventor/fields/SoSFEnum.h,
include/Inventor/nodes/SoComplexity.h,
src/elements/SoPointSizeElement.cpp, src/manips/SoTrackballManip.cpp,
include/Inventor/elements/SoGLTexture3EnabledElement.h,
src/3ds/3dsLoader.h, src/shapenodes/soshape_primdata.h,
include/Inventor/elements/SoDiffuseColorElement.h, src/glue/bzip2.c,
include/Inventor/C/threads/mutex.h,
src/elements/SoViewingMatrixElement.cpp,
include/Inventor/fields/SoFieldData.h, src/fields/SoMFPlane.cpp,
src/vrml97/Billboard.cpp, include/Inventor/C/base/dynarray.h,
src/misc/SoGLindexedLineSetTemplate.icc,
include/Inventor/elements/SoGLMultiTextureImageElement.h,
src/elements/SoWindowElement.cpp,
include/Inventor/annex/HardCopy/SoVectorizeAction.h,
include/Inventor/fields/SoSFBool.h,
src/nodes/SoTextureScalePolicy.cpp, src/io/all-io-cpp.cpp,
include/Inventor/elements/SoPickStyleElement.h,
src/elements/SoDrawStyleElement.cpp,
include/Inventor/engines/SoConvertAll.h,
src/misc/SoOffscreenWGLData.cpp,
include/Inventor/annex/HardCopy/SoVectorizeHPGLAction.h,
src/actions/SoShapeSimplifyAction.cpp,
include/Inventor/draggers/SoSpotLightDragger.h,
src/threads/thread_pthread.ic,
src/elements/SoMaterialBindingElement.cpp, src/lists/all-lists-
cpp.cpp, src/details/SoCylinderDetail.cpp, src/nodes/SoBaseColor.cpp,
include/Inventor/engines/SoConcatenate.h,
include/Inventor/elements/SoLineWidthElement.h,
src/details/SoDetail.cpp, src/misc/SoPath.cpp, src/vrml97/Group.cpp,
src/actions/SoHandleEventAction.cpp,
include/Inventor/elements/SoUnitsElement.h,
src/vrml97/MovieTexture.cpp, src/vrml97/Shape.cpp,
src/fields/SoMFVec2f.cpp, include/Inventor/elements/SoCacheElement.h,
src/errors/SoMemoryError.cpp, src/elements/SoCreaseAngleElement.cpp,
src/nodes/SoTextureCoordinatePlane.cpp,
include/Inventor/actions/SoHandleEventAction.h,
include/Inventor/projectors/SbSphereProjector.h,
include/Inventor/elements/SoTextureCoordinateElement.h,
include/Inventor/fields/SoMFVec4f.h, src/vrml97/Transform.cpp,
include/Inventor/elements/SoAmbientColorElement.h,
include/Inventor/fields/SoSFEngine.h, src/fields/SoMFName.cpp,
include/Inventor/SoPrimitiveVertex.h,
include/Inventor/nodes/SoSubNode.h,
include/Inventor/engines/SoOneShot.h,
include/Inventor/caches/SoGLCacheList.h,
src/elements/SoAccumulatedElement.cpp,
include/Inventor/elements/SoPointSizeElement.h,
src/nodes/SoTextureCoordinateDefault.cpp,
include/Inventor/nodes/SoNurbsProfile.h,
include/Inventor/C/threads/rwmutex.h,
include/Inventor/details/SoCubeDetail.h,
include/Inventor/nodes/SoLabel.h, src/nodes/SoDirectionalLight.cpp,
src/details/SoPointDetail.cpp, src/misc/SoPrimitiveVertex.cpp,
include/Inventor/misc/SoGL.h, src/fields/SoSFVec3f.cpp,
src/elements/SoElement.cpp,
include/Inventor/manips/SoDirectionalLightManip.h,
include/Inventor/fields/SFNodeAndEngine.tpl,
src/draggers/SoTabBoxDragger.cpp, src/engines/SoConcatenate.cpp,
src/misc/PointerMap.h, src/draggers/SoTransformBoxDragger.cpp,
include/Inventor/nodes/SoSwitch.h, include/Inventor/SbLine.h,
include/Inventor/VRMLnodes/SoVRMLShape.h, src/base/SbDict.cpp,
include/Inventor/manips/SoTransformerManip.h,
src/elements/SoTextureCombineElement.cpp, src/vrml97/Sphere.cpp,
include/Inventor/lists/SoEngineOutputList.h, src/io/SoByteStream.cpp,
src/elements/SoListenerOrientationElement.cpp,
src/nodekits/SoShapeKit.cpp, include/Inventor/nodes/SoSpotLight.h,
src/nodes/SoListener.cpp, include/Inventor/C/glue/openal_wrapper.h,
src/fields/all-fields-cpp.cpp,
src/elements/SoListenerDopplerElement.cpp, src/base/memalloc.c,
include/Inventor/misc/SoProto.h, src/shapenodes/all-shapenodes-
cpp.cpp, include/Inventor/fields/SoSFTrigger.h,
src/lists/SoActionMethodList.cpp,
include/Inventor/actions/SoSearchAction.h,
include/Inventor/VRMLnodes/SoVRMLGeometry.h,
include/Inventor/fields/SoSFString.h,
include/Inventor/details/SoFaceDetail.h, src/nodes/SoRotor.cpp,
src/bundles/SoNormalBundle.cpp,
include/Inventor/elements/SoMultiTextureEnabledElement.h,
include/Inventor/caches/SoGLRenderCache.h,
src/engines/SoComposeMatrix.cpp,
src/projectors/SbSphereSheetProjector.cpp,
include/Inventor/engines/SoEngines.h, src/engines/evaluator.c,
src/vrml97/ElevationGrid.cpp, src/glue/zlib.c,
include/Inventor/engines/SoSubEngineP.h,
src/elements/SoPickStyleElement.cpp, src/engines/evaluator.h,
src/engines/SoDecomposeVec4f.cpp,
src/elements/GL/SoGLLightIdElement.cpp,
src/elements/GL/SoGLPointSizeElement.cpp, src/engines/evaluator.l,
include/Inventor/nodes/SoMultipleCopy.h,
include/Inventor/VRMLnodes/SoVRMLViewpoint.h,
src/misc/SoPickedPoint.cpp, include/Inventor/nodes/SoShuttle.h,
include/Inventor/nodes/SoCamera.h, src/nodes/SoTranslation.cpp,
include/Inventor/elements/SoTextureEnabledElement.h,
src/misc/SoGLTristripTemplate.icc,
src/nodes/SoOrthographicCamera.cpp,
src/shapenodes/soshape_primdata.cpp, src/fields/SoMFUShort.cpp,
src/engines/evaluator.y, include/Inventor/nodes/SoEnvironment.h,
src/engines/SoCalculator.cpp, include/Inventor/misc/SoTempPath.h,
include/Inventor/C/threads/storage.h, src/nodekits/SoSceneKit.cpp,
src/elements/SoComplexityTypeElement.cpp, src/base/namemap.c,
include/Inventor/SbBox3s.h, src/elements/GL/SoGLDrawStyleElement.cpp,
src/threads/thread_win32.ic,
include/Inventor/elements/SoAnnoText3RenderPrintElement.h,
include/Inventor/VRMLnodes/SoVRMLTouchSensor.h,
src/shapenodes/soshape_trianglesort.h,
src/fields/SoFieldContainer.cpp, src/engines/SoEngine.cpp,
include/Inventor/VRMLnodes/SoVRMLColorInterpolator.h,
src/base/dynarray.cpp, src/hardcopy/VectorizeGDIAction.cpp,
include/Inventor/elements/SoGLVBOElement.h,
src/engines/SoInterpolateFloat.cpp,
src/draggers/SoRotateCylindricalDragger.cpp,
include/Inventor/VRMLnodes/SoVRMLIndexedLine.h,
include/Inventor/nodes/SoInfo.h, include/Inventor/bundles/SoBundle.h,
include/Inventor/nodes/SoBumpMapTransform.h, src/misc/all-misc-
cpp.cpp, src/misc/SoFullPath.cpp,
include/Inventor/nodes/SoEventCallback.h,
src/elements/SoMultiTextureEnabledElement.cpp,
include/Inventor/nodes/SoLocateHighlight.h,
include/Inventor/details/SoDetails.h, src/nodes/SoPickStyle.cpp,
src/base/SbDPRotation.cpp, src/nodes/SoRotationXYZ.cpp,
src/engines/SoElapsedTime.cpp, src/vrml97/Box.cpp,
include/Inventor/elements/SoCullElement.h,
include/Inventor/misc/SoJavaScriptEngine.h,
include/Inventor/fields/SoMFRotation.h, src/misc/SoGL.cpp,
include/Inventor/fields/SoMFPlane.h, src/fields/SoMFVec3f.cpp,
include/Inventor/VRMLnodes/SoVRMLSphereSensor.h,
src/shapenodes/soshape_bigtexture.h,
include/Inventor/projectors/SbLineProjector.h,
include/Inventor/engines/SoSubNodeEngineP.h,
src/vrml97/IndexedLineSet.cpp,
include/Inventor/elements/SoDecimationPercentageElement.h,
include/Inventor/elements/SoGLNormalElement.h, src/base/time.c,
src/fonts/all-fonts-c.c, include/Inventor/nodes/SoGroup.h,
include/Inventor/sensors/SoOneShotSensor.h, src/lists/SoTypeList.cpp,
src/elements/SoModelMatrixElement.cpp, src/nodes/SoEnvironment.cpp,
include/Inventor/draggers/SoTabBoxDragger.h,
include/Inventor/elements/SoGLMultiTextureMatrixElement.h,
src/elements/GL/SoGLEnvironmentElement.cpp, src/fields/SoSFBox3f.cpp,
include/Inventor/lists/SoTypeList.h, src/io/SoInput_FileInfo.cpp,
src/fields/SoSFUShort.cpp, include/Inventor/nodes/SoQuadMesh.h,
include/Inventor/nodes/SoTextureCoordinateCube.h,
include/Inventor/draggers/SoDragPointDragger.h,
include/Inventor/actions/SoToVRMLAction.h, src/threads/wpool.c,
include/Inventor/elements/SoInt32Element.h,
src/elements/GL/SoGLLazyElement.cpp,
include/Inventor/C/errors/error.h,
include/Inventor/nodes/SoSubNodeP.h,
src/draggers/SoTransformerDragger.cpp,
include/Inventor/annex/HardCopy/SoHardCopy.h,
src/engines/SoBoolOperation.cpp, src/engines/SoInterpolateVec2f.cpp,
include/Inventor/sensors/SoSensorManager.h, src/fields/SoSFVec4f.cpp,
include/Inventor/nodes/SoProfileCoordinate3.h,
include/Inventor/projectors/SbCylinderSectionProjector.h,
include/Inventor/actions/SoToVRML2Action.h,
include/Inventor/fields/SoSubField.h,
src/elements/SoViewportRegionElement.cpp,
src/elements/SoEmissiveColorElement.cpp,
include/Inventor/VRMLnodes/SoVRMLCollision.h,
include/Inventor/C/threads/recmutex.h,
src/elements/GL/SoGLProjectionMatrixElement.cpp,
include/Inventor/projectors/SbCylinderSheetProjector.h,
src/glue/gl_agl.c, include/Inventor/C/glue/dl.h,
src/fields/SoSFImage.cpp, src/caches/normalcache_numcoords_hack.h,
include/Inventor/SbTime.h, src/shapenodes/SoNurbsCurve.cpp,
src/vrml97/JS_VRMLClasses.cpp, src/engines/SoTransformVec3f.cpp,
src/projectors/SbLineProjector.cpp,
include/Inventor/elements/SoGLLazyElement.h,
include/Inventor/elements/SoGLMultiTextureCoordinateElement.h,
include/Inventor/nodes/SoNode.h,
include/Inventor/fields/SoSFRotation.h,
include/Inventor/draggers/SoHandleBoxDragger.h,
src/shapenodes/SoIndexedFaceSet.cpp,
src/shapenodes/SoNonIndexedShape.cpp,
include/Inventor/fields/SoSFMatrix.h,
include/Inventor/nodes/SoLinearProfile.h,
src/elements/GL/SoGLPolygonOffsetElement.cpp,
include/Inventor/nodes/SoNurbsCurve.h,
src/manips/SoTransformerManip.cpp, src/nodekits/SoCameraKit.cpp,
include/Inventor/VRMLnodes/SoVRMLSwitch.h,
include/Inventor/fields/SoFields.h,
include/Inventor/lists/SoFieldList.h, src/actions/SoPickAction.cpp,
include/Inventor/nodes/SoCoordinate3.h,
include/Inventor/fields/SoSFVec3s.h, src/nodekits/SoSeparatorKit.cpp,
src/elements/SoPickRayElement.cpp,
include/Inventor/fields/SoSubFieldP.h,
include/Inventor/elements/SoFocalDistanceElement.h,
include/Inventor/nodes/SoPathSwitch.h,
include/Inventor/VRMLnodes/SoVRMLColor.h, src/misc/SoProto.cpp,
src/base/SbOctTree.cpp, src/draggers/SoScale2Dragger.cpp,
include/Inventor/elements/SoListenerPositionElement.h,
src/base/SbCylinder.cpp, src/engines/SoGate.cpp,
include/Inventor/SbName.h, src/glue/openal_wrapper.c,
include/Inventor/projectors/SbPlaneProjector.h,
include/Inventor/C/threads/syncp.h,
include/Inventor/nodekits/SoInteractionKit.h,
include/Inventor/C/glue/win32api.h,
include/Inventor/VRMLnodes/SoVRMLOrientationInterpolator.h,
include/Inventor/VRMLnodes/SoVRMLAppearance.h,
include/Inventor/SoPickedPoint.h, src/nodes/SoTransformation.cpp,
src/shapenodes/SoSphere.cpp,
src/actions/SoGetPrimitiveCountAction.cpp,
include/Inventor/C/glue/zlib.h,
include/Inventor/actions/SoBoxHighlightRenderAction.h,
include/Inventor/sensors/SoPathSensor.h,
include/Inventor/sensors/SoAlarmSensor.h,
include/Inventor/manips/SoClipPlaneManip.h,
include/Inventor/engines/SoComposeVec2f.h,
src/actions/SoCallbackAction.cpp, include/Inventor/C/glue/gl_wgl.h,
src/vrml97/Material.cpp, src/nodes/SoMultipleCopy.cpp,
include/Inventor/fields/SoField.h,
include/Inventor/engines/SoTransformVec3f.h,
include/Inventor/SbCylinder.h,
include/Inventor/elements/SoLightElement.h,
src/engines/SoComputeBoundingBox.cpp,
src/elements/SoMultiTextureImageElement.cpp,
include/Inventor/nodes/SoAntiSquish.h,
include/Inventor/actions/SoGetMatrixAction.h,
include/Inventor/fields/SoSFVec3d.h,
include/Inventor/engines/SoTriggerAny.h,
src/sensors/SoFieldSensor.cpp, include/Inventor/SbBox3f.h,
include/Inventor/VRMLnodes/SoVRMLGroup.h,
include/Inventor/nodes/SoBumpMap.h, src/io/gzmemio.h,
src/misc/SoProtoInstance.cpp,
include/Inventor/engines/SoInterpolate.h,
include/Inventor/nodes/SoNodes.h, src/vrml97/Normal.cpp,
include/Inventor/VRMLnodes/SoVRMLDragSensor.h,
include/Inventor/nodes/SoIndexedFaceSet.h,
src/events/SoMouseButtonEvent.cpp,
include/Inventor/fields/SoMFPath.h,
include/Inventor/elements/SoListenerOrientationElement.h,
include/Inventor/nodekits/SoAppearanceKit.h, src/io/SoInput_Reader.h,
src/projectors/SbCylinderPlaneProjector.cpp,
src/fields/SoMFVec4f.cpp, include/Inventor/nodes/SoTexture3.h,
include/Inventor/C/threads/mutexp.h, src/vrml97/Init.cpp,
include/Inventor/fields/SoMFEngine.h,
src/nodes/SoTransformSeparator.cpp, src/upgraders/SoUpgrader.cpp,
src/elements/SoLazyElement.cpp,
src/nodes/SoTextureCoordinateEnvironment.cpp,
src/events/SoKeyboardEvent.cpp,
include/Inventor/nodes/SoTextureCoordinate3.h,
include/Inventor/engines/SoComposeRotationFromTo.h,
include/Inventor/details/SoNodeKitDetail.h,
include/Inventor/VRMLnodes/SoVRMLTextureTransform.h,
include/Inventor/draggers/SoTranslate1Dragger.h,
include/Inventor/elements/SoViewportRegionElement.h,
include/Inventor/misc/SoAudioDevice.h, src/nodekits/all-nodekits-
cpp.cpp, src/base/heap.c, src/base/SbDPMatrix.cpp,
src/nodes/SoTextureCoordinateSphere.cpp,
include/Inventor/C/base/time.h,
include/Inventor/actions/SoCallbackAction.h,
src/events/SoLocation2Event.cpp, src/tidbits.c,
include/Inventor/misc/SoAuditorList.h,
src/engines/SoInterpolateVec3f.cpp,
include/Inventor/elements/SoGLProjectionMatrixElement.h,
include/Inventor/draggers/SoTabPlaneDragger.h,
src/misc/SoGenerate.cpp, include/Inventor/MPEG/SoMPEGFrameRenderer.h,
src/shapenodes/SoShape.cpp, include/Inventor/fields/SoSFNode.h,
include/Inventor/VRMLnodes/SoVRMLFog.h, src/manips/SoTabBoxManip.cpp,
include/Inventor/C/threads/recmutexp.h,
src/shapenodes/soshape_bigtexture.cpp,
include/Inventor/sensors/SoDataSensor.h,
include/Inventor/fields/SoMFString.h, include/Inventor/SbHeap.h,
src/misc/SoBase.cpp, src/fonts/glyph.c, src/errors/debugerror.c,
src/misc/SoType.cpp, src/fonts/glyph.h,
include/Inventor/elements/SoLinePatternElement.h,
src/shapenodes/soshape_bumprender.h,
include/Inventor/draggers/SoDirectionalLightDragger.h,
src/misc/SoVertexArrayIndexer.cpp, src/engines/so_eval.ic,
src/draggers/SoRotateDiscDragger.cpp,
src/elements/SoLightElement.cpp, src/elements/SoFontNameElement.cpp,
src/vrml97/Texture.cpp, src/elements/SoTextureQualityElement.cpp,
src/nodes/SoCamera.cpp, src/elements/GL/all-glelements-cpp.cpp,
include/Inventor/fields/SoSFTime.h,
include/Inventor/VRMLnodes/SoVRMLMacros.h, src/engines/all-
engines-c.c, include/Inventor/nodekits/SoNodeKitListPart.h,
src/elements/SoOverrideElement.cpp,
include/Inventor/nodes/SoPendulum.h, include/Inventor/SbColor.h,
src/sensors/SoTimerSensor.cpp, src/vrml97/Sensor.cpp,
include/Inventor/VRMLnodes/SoVRMLSound.h,
include/Inventor/elements/SoDrawStyleElement.h,
include/Inventor/fields/SoSFVec3f.h,
include/Inventor/elements/SoElement.h,
include/Inventor/nodes/SoTranslation.h, src/base/SbName.cpp,
src/elements/GL/SoGLTextureImageElement.cpp, src/misc/SoDB.cpp,
include/Inventor/SbDPMatrix.h, include/Inventor/C/threads/fifop.h,
src/elements/GL/SoGLCacheContextElement.cpp,
src/shapenodes/SoMarkerSet.cpp,
include/Inventor/VRMLnodes/SoVRMLNodes.h,
include/Inventor/system/gl.h, src/nodes/SoNormalBinding.cpp,
include/Inventor/VRMLnodes/SoVRMLSpotLight.h,
include/Inventor/misc/SoTranscribe.h,
include/Inventor/elements/SoSwitchElement.h, src/glue/gl.c,
include/Inventor/elements/SoTextureImageElement.h,
src/events/SoMotion3Event.cpp,
include/Inventor/nodes/SoNormalBinding.h,
include/Inventor/C/base/rbptree.h, src/io/SoWriterefCounter.h,
include/Inventor/bundles/SoTextureCoordinateBundle.h,
src/misc/CoinStaticObjectInDLL.cpp, src/fields/SoSFEnum.cpp,
include/Inventor/SoInput.h,
include/Inventor/manips/SoTransformBoxManip.h,
include/Inventor/misc/SbHash.h,
include/Inventor/errors/SoReadError.h,
src/elements/SoShapeStyleElement.cpp, src/misc/SoChildList.cpp,
include/Inventor/draggers/SoRotateCylindricalDragger.h,
src/glue/normalization_cubemap.c, src/vrml97/LOD.cpp,
src/io/SoTranSender.cpp,
include/Inventor/projectors/SbSpherePlaneProjector.h,
include/Inventor/elements/SoBumpMapMatrixElement.h,
include/Inventor/misc/SoBasic.h, src/fields/SoFieldData.cpp,
include/Inventor/elements/SoNormalElement.h,
include/Inventor/elements/SoGLRenderPassElement.h,
include/Inventor/fields/SoSFName.h, src/vrml97/FontStyle.cpp,
include/Inventor/manips/SoHandleBoxManip.h,
include/Inventor/C/threads/schedp.h,
src/elements/SoTextOutlineEnabledElement.cpp, src/events/SoEvent.cpp,
src/vrml97/TimeSensor.cpp,
src/elements/SoProjectionMatrixElement.cpp,
src/manips/SoCenterballManip.cpp,
include/Inventor/fields/SoSFULong.h,
include/Inventor/elements/SoViewingMatrixElement.h,
include/Inventor/misc/SoScriptEngine.h,
include/Inventor/engines/SoComposeVec4f.h,
src/elements/SoDecimationPercentageElement.cpp,
src/threads/rwmutex.c, src/engines/SoFieldConverter.cpp,
include/Inventor/elements/SoGLLineWidthElement.h,
include/Inventor/draggers/SoScale1Dragger.h,
src/draggers/SoTranslate2Dragger.cpp, src/sensors/all-sensors-
cpp.cpp, include/Inventor/nodes/SoIndexedShape.h,
src/engines/SoInterpolate.cpp, src/vrml97/SphereSensor.cpp,
include/Inventor/nodes/SoExtSelection.h, src/lists/SbVec3fList.cpp,
include/Inventor/SbPList.h, src/nodes/SoDrawStyle.cpp,
include/Inventor/C/base/memalloc.h,
include/Inventor/nodekits/SoSceneKit.h,
include/Inventor/C/glue/gl_glx.h,
include/Inventor/elements/SoAnnoText3CharOrientElement.h,
src/shapenodes/SoText2.cpp, src/vrml97/PixelTexture.cpp,
src/fields/SoSFTrigger.cpp, include/Inventor/nodes/SoSelection.h,
include/Inventor/elements/SoGLPointSizeElement.h,
include/Inventor/VRMLnodes/SoVRMLVertexLine.h,
src/engines/SoInterpolateVec4f.cpp, src/io/SoOutput_Writer.h,
src/elements/SoNormalBindingElement.cpp, src/engines/SoSelectOne.cpp,
include/Inventor/C/threads/condvar.h,
src/elements/SoBumpMapMatrixElement.cpp,
include/Inventor/C/base/heap.h, src/elements/SoLightModelElement.cpp,
src/threads/condvar_win32.ic, src/hardcopy/CGMVectorOutput.cpp,
include/Inventor/elements/SoSubElement.h,
include/Inventor/SbRotation.h, src/manips/SoSpotLightManip.cpp,
src/nodes/SoAnnoText3.cpp, src/elements/SoFloatElement.cpp,
include/Inventor/caches/SoBoundingBoxCache.h,
src/fields/SoSFTime.cpp, include/Inventor/VRMLnodes/SoVRML.h,
include/Inventor/elements/SoFloatElement.h,
src/misc/SoGLFaceSetTemplate.icc, include/Inventor/C/glue/dlp.h,
include/Inventor/nodes/SoAnnoText3.h,
include/Inventor/fields/SoMFMatrix.h,
include/Inventor/nodes/SoBlinker.h,
include/Inventor/engines/SoInterpolateRotation.h,
src/mpeg/SoMPEGRenderer.cpp,
src/elements/GL/SoGLTexture3EnabledElement.cpp,
src/shapenodes/SoImage.cpp, include/Inventor/SbSphere.h,
src/engines/evaluator_tab.c, include/Inventor/SbBox.h,
src/actions/SoToVRMLAction.cpp, src/base/SbDPViewVolume.cpp,
src/nodes/SoTexture2Transform.cpp,
src/elements/SoTextureOverrideElement.cpp,
src/elements/SoBumpMapElement.cpp,
include/Inventor/misc/SoCallbackList.h,
include/Inventor/threads/SbThread.h,
include/Inventor/elements/SoGLTextureEnabledElement.h,
src/elements/SoTextureCoordinateBindingElement.cpp,
src/threads/storage.c, src/elements/SoListenerPositionElement.cpp,
src/shapenodes/SoCylinder.cpp,
include/Inventor/elements/SoGLTextureMatrixElement.h,
src/elements/SoAmbientColorElement.cpp, src/vrml97/TouchSensor.cpp,
include/Inventor/SbVec2s.h,
src/elements/GL/SoGLTextureCoordinateElement.cpp,
include/Inventor/elements/SoTextureScalePolicyElement.h,
src/io/SoInput_FileInfo.h, src/fonts/extractfont.cpp,
include/Inventor/VRMLnodes/SoVRMLNavigationInfo.h,
include/Inventor/nodes/SoTextureCoordinateSphere.h,
src/manips/SoPointLightManip.cpp, src/nodes/SoAntiSquish.cpp,
include/Inventor/caches/SoGlyphCache.h,
include/Inventor/actions/SoActions.h,
include/Inventor/VRMLnodes/SoVRMLCoordinate.h,
src/lists/SbIntList.cpp, include/Inventor/nodes/SoCallback.h,
include/Inventor/C/glue/GLUWrapper.h,
src/elements/SoListenerGainElement.cpp,
src/nodes/SoTextureCoordinateBinding.cpp, src/shapenodes/SoCone.cpp,
include/Inventor/draggers/SoTranslate2Dragger.h,
include/Inventor/misc/SoByteStream.h,
include/Inventor/C/threads/wpool.h,
include/Inventor/nodes/SoTextureCoordinateBinding.h,
src/elements/GL/SoGLShapeHintsElement.cpp,
src/elements/GL/SoGLColorIndexElement.cpp,
src/nodes/SoAnnotation.cpp, include/Inventor/nodes/SoClipPlane.h,
include/Inventor/nodes/SoBaseColor.h,
include/Inventor/threads/SbStorage.h,
src/vrml97/NormalInterpolator.cpp, include/Inventor/SbVec2d.h,
include/Inventor/nodes/SoTextureCoordinateFunction.h, src/events/all-
events-cpp.cpp, src/nodes/SoSelection.cpp, src/fields/SoMFString.cpp,
include/Inventor/SbColor4f.h, src/io/SoTranReceiver.cpp,
src/shapenodes/SoText3.cpp,
src/elements/GL/SoGLModelMatrixElement.cpp,
include/Inventor/lists/SoDetailList.h,
include/Inventor/elements/SoGLLightIdElement.h,
include/Inventor/fields/SoMFEnum.h, src/nodes/SoProfile.cpp,
include/Inventor/engines/SoBoolOperation.h,
src/fields/SoMFUInt32.cpp,
src/actions/SoLineHighlightRenderAction.cpp, src/fonts/common.c,
src/draggers/SoDirectionalLightDragger.cpp,
include/Inventor/nodes/SoIndexedLineSet.h:
copyright header update
|