This file is indexed.

/usr/include/gpac/nodes_mpeg4.h is in libgpac-dev 0.5.2-426-gc5ad4e4+dfsg5-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
/*
 *			GPAC - Multimedia Framework C SDK
 *
 *			Authors: Jean Le Feuvre
 *			Copyright (c) Telecom ParisTech 2000-2012
 *					All rights reserved
 *
 *  This file is part of GPAC / Scene Graph sub-project
 *
 *  GPAC is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  GPAC is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; see the file COPYING.  If not, write to
 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */


/*
	DO NOT MOFIFY - File generated on GMT Tue Nov 08 09:10:57 2011

	BY MPEG4Gen for GPAC Version 0.5.0
*/

#ifndef _nodes_mpeg4_H
#define _nodes_mpeg4_H

#ifdef __cplusplus
extern "C" {
#endif

#include <gpac/scenegraph_vrml.h>

#ifndef GPAC_DISABLE_VRML



enum {
	TAG_MPEG4_Anchor = GF_NODE_RANGE_FIRST_MPEG4,
	TAG_MPEG4_AnimationStream,
	TAG_MPEG4_Appearance,
	TAG_MPEG4_AudioBuffer,
	TAG_MPEG4_AudioClip,
	TAG_MPEG4_AudioDelay,
	TAG_MPEG4_AudioFX,
	TAG_MPEG4_AudioMix,
	TAG_MPEG4_AudioSource,
	TAG_MPEG4_AudioSwitch,
	TAG_MPEG4_Background,
	TAG_MPEG4_Background2D,
	TAG_MPEG4_Billboard,
	TAG_MPEG4_Bitmap,
	TAG_MPEG4_Box,
	TAG_MPEG4_Circle,
	TAG_MPEG4_Collision,
	TAG_MPEG4_Color,
	TAG_MPEG4_ColorInterpolator,
	TAG_MPEG4_CompositeTexture2D,
	TAG_MPEG4_CompositeTexture3D,
	TAG_MPEG4_Conditional,
	TAG_MPEG4_Cone,
	TAG_MPEG4_Coordinate,
	TAG_MPEG4_Coordinate2D,
	TAG_MPEG4_CoordinateInterpolator,
	TAG_MPEG4_CoordinateInterpolator2D,
	TAG_MPEG4_Curve2D,
	TAG_MPEG4_Cylinder,
	TAG_MPEG4_CylinderSensor,
	TAG_MPEG4_DirectionalLight,
	TAG_MPEG4_DiscSensor,
	TAG_MPEG4_ElevationGrid,
	TAG_MPEG4_Expression,
	TAG_MPEG4_Extrusion,
	TAG_MPEG4_Face,
	TAG_MPEG4_FaceDefMesh,
	TAG_MPEG4_FaceDefTables,
	TAG_MPEG4_FaceDefTransform,
	TAG_MPEG4_FAP,
	TAG_MPEG4_FDP,
	TAG_MPEG4_FIT,
	TAG_MPEG4_Fog,
	TAG_MPEG4_FontStyle,
	TAG_MPEG4_Form,
	TAG_MPEG4_Group,
	TAG_MPEG4_ImageTexture,
	TAG_MPEG4_IndexedFaceSet,
	TAG_MPEG4_IndexedFaceSet2D,
	TAG_MPEG4_IndexedLineSet,
	TAG_MPEG4_IndexedLineSet2D,
	TAG_MPEG4_Inline,
	TAG_MPEG4_LOD,
	TAG_MPEG4_Layer2D,
	TAG_MPEG4_Layer3D,
	TAG_MPEG4_Layout,
	TAG_MPEG4_LineProperties,
	TAG_MPEG4_ListeningPoint,
	TAG_MPEG4_Material,
	TAG_MPEG4_Material2D,
	TAG_MPEG4_MovieTexture,
	TAG_MPEG4_NavigationInfo,
	TAG_MPEG4_Normal,
	TAG_MPEG4_NormalInterpolator,
	TAG_MPEG4_OrderedGroup,
	TAG_MPEG4_OrientationInterpolator,
	TAG_MPEG4_PixelTexture,
	TAG_MPEG4_PlaneSensor,
	TAG_MPEG4_PlaneSensor2D,
	TAG_MPEG4_PointLight,
	TAG_MPEG4_PointSet,
	TAG_MPEG4_PointSet2D,
	TAG_MPEG4_PositionInterpolator,
	TAG_MPEG4_PositionInterpolator2D,
	TAG_MPEG4_ProximitySensor2D,
	TAG_MPEG4_ProximitySensor,
	TAG_MPEG4_QuantizationParameter,
	TAG_MPEG4_Rectangle,
	TAG_MPEG4_ScalarInterpolator,
	TAG_MPEG4_Script,
	TAG_MPEG4_Shape,
	TAG_MPEG4_Sound,
	TAG_MPEG4_Sound2D,
	TAG_MPEG4_Sphere,
	TAG_MPEG4_SphereSensor,
	TAG_MPEG4_SpotLight,
	TAG_MPEG4_Switch,
	TAG_MPEG4_TermCap,
	TAG_MPEG4_Text,
	TAG_MPEG4_TextureCoordinate,
	TAG_MPEG4_TextureTransform,
	TAG_MPEG4_TimeSensor,
	TAG_MPEG4_TouchSensor,
	TAG_MPEG4_Transform,
	TAG_MPEG4_Transform2D,
	TAG_MPEG4_Valuator,
	TAG_MPEG4_Viewpoint,
	TAG_MPEG4_VisibilitySensor,
	TAG_MPEG4_Viseme,
	TAG_MPEG4_WorldInfo,
	TAG_MPEG4_AcousticMaterial,
	TAG_MPEG4_AcousticScene,
	TAG_MPEG4_ApplicationWindow,
	TAG_MPEG4_BAP,
	TAG_MPEG4_BDP,
	TAG_MPEG4_Body,
	TAG_MPEG4_BodyDefTable,
	TAG_MPEG4_BodySegmentConnectionHint,
	TAG_MPEG4_DirectiveSound,
	TAG_MPEG4_Hierarchical3DMesh,
	TAG_MPEG4_MaterialKey,
	TAG_MPEG4_PerceptualParameters,
	TAG_MPEG4_TemporalTransform,
	TAG_MPEG4_TemporalGroup,
	TAG_MPEG4_ServerCommand,
	TAG_MPEG4_InputSensor,
	TAG_MPEG4_MatteTexture,
	TAG_MPEG4_MediaBuffer,
	TAG_MPEG4_MediaControl,
	TAG_MPEG4_MediaSensor,
	TAG_MPEG4_BitWrapper,
	TAG_MPEG4_CoordinateInterpolator4D,
	TAG_MPEG4_DepthImage,
	TAG_MPEG4_FFD,
	TAG_MPEG4_Implicit,
	TAG_MPEG4_XXLFM_Appearance,
	TAG_MPEG4_XXLFM_BlendList,
	TAG_MPEG4_XXLFM_FrameList,
	TAG_MPEG4_XXLFM_LightMap,
	TAG_MPEG4_XXLFM_SurfaceMapList,
	TAG_MPEG4_XXLFM_ViewMapList,
	TAG_MPEG4_MeshGrid,
	TAG_MPEG4_NonLinearDeformer,
	TAG_MPEG4_NurbsCurve,
	TAG_MPEG4_NurbsCurve2D,
	TAG_MPEG4_NurbsSurface,
	TAG_MPEG4_OctreeImage,
	TAG_MPEG4_XXParticles,
	TAG_MPEG4_XXParticleInitBox,
	TAG_MPEG4_XXPlanarObstacle,
	TAG_MPEG4_XXPointAttractor,
	TAG_MPEG4_PointTexture,
	TAG_MPEG4_PositionAnimator,
	TAG_MPEG4_PositionAnimator2D,
	TAG_MPEG4_PositionInterpolator4D,
	TAG_MPEG4_ProceduralTexture,
	TAG_MPEG4_Quadric,
	TAG_MPEG4_SBBone,
	TAG_MPEG4_SBMuscle,
	TAG_MPEG4_SBSegment,
	TAG_MPEG4_SBSite,
	TAG_MPEG4_SBSkinnedModel,
	TAG_MPEG4_SBVCAnimation,
	TAG_MPEG4_ScalarAnimator,
	TAG_MPEG4_SimpleTexture,
	TAG_MPEG4_SolidRep,
	TAG_MPEG4_SubdivisionSurface,
	TAG_MPEG4_SubdivSurfaceSector,
	TAG_MPEG4_WaveletSubdivisionSurface,
	TAG_MPEG4_Clipper2D,
	TAG_MPEG4_ColorTransform,
	TAG_MPEG4_Ellipse,
	TAG_MPEG4_LinearGradient,
	TAG_MPEG4_PathLayout,
	TAG_MPEG4_RadialGradient,
	TAG_MPEG4_SynthesizedTexture,
	TAG_MPEG4_TransformMatrix2D,
	TAG_MPEG4_Viewport,
	TAG_MPEG4_XCurve2D,
	TAG_MPEG4_XFontStyle,
	TAG_MPEG4_XLineProperties,
	TAG_MPEG4_AdvancedAudioBuffer,
	TAG_MPEG4_AudioChannelConfig,
	TAG_MPEG4_DepthImageV2,
	TAG_MPEG4_MorphShape,
	TAG_MPEG4_MultiTexture,
	TAG_MPEG4_PointTextureV2,
	TAG_MPEG4_SBVCAnimationV2,
	TAG_MPEG4_SimpleTextureV2,
	TAG_MPEG4_SurroundingSound,
	TAG_MPEG4_Transform3DAudio,
	TAG_MPEG4_WideSound,
	TAG_MPEG4_ScoreShape,
	TAG_MPEG4_MusicScore,
	TAG_MPEG4_FootPrintSetNode,
	TAG_MPEG4_FootPrintNode,
	TAG_MPEG4_BuildingPartNode,
	TAG_MPEG4_RoofNode,
	TAG_MPEG4_FacadeNode,
	TAG_MPEG4_Shadow,
	TAG_MPEG4_CacheTexture,
	TAG_MPEG4_EnvironmentTest,
	TAG_MPEG4_KeyNavigator,
	TAG_MPEG4_SpacePartition,
	TAG_MPEG4_Storage,
	TAG_LastImplementedMPEG4
};

typedef struct _tagAnchor
{
	BASE_NODE
	VRML_CHILDREN
	SFString description;	/*exposedField*/
	MFString parameter;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFBool activate;	/*eventIn*/
	void (*on_activate)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
} M_Anchor;


typedef struct _tagAnimationStream
{
	BASE_NODE
	SFBool loop;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFTime duration_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_AnimationStream;


typedef struct _tagAppearance
{
	BASE_NODE
	GF_Node *material;	/*exposedField*/
	GF_Node *texture;	/*exposedField*/
	GF_Node *textureTransform;	/*exposedField*/
} M_Appearance;


typedef struct _tagAudioBuffer
{
	BASE_NODE
	SFBool loop;	/*exposedField*/
	SFFloat pitch;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	GF_ChildNodeItem *children;	/*exposedField*/
	SFInt32 numChan;	/*exposedField*/
	MFInt32 phaseGroup;	/*exposedField*/
	SFFloat length;	/*exposedField*/
	SFTime duration_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_AudioBuffer;


typedef struct _tagAudioClip
{
	BASE_NODE
	SFString description;	/*exposedField*/
	SFBool loop;	/*exposedField*/
	SFFloat pitch;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFTime duration_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_AudioClip;


typedef struct _tagAudioDelay
{
	BASE_NODE
	VRML_CHILDREN
	SFTime delay;	/*exposedField*/
	SFInt32 numChan;	/*field*/
	MFInt32 phaseGroup;	/*field*/
} M_AudioDelay;


typedef struct _tagAudioFX
{
	BASE_NODE
	VRML_CHILDREN
	SFString orch;	/*exposedField*/
	SFString score;	/*exposedField*/
	MFFloat params;	/*exposedField*/
	SFInt32 numChan;	/*field*/
	MFInt32 phaseGroup;	/*field*/
} M_AudioFX;


typedef struct _tagAudioMix
{
	BASE_NODE
	VRML_CHILDREN
	SFInt32 numInputs;	/*exposedField*/
	MFFloat matrix;	/*exposedField*/
	SFInt32 numChan;	/*field*/
	MFInt32 phaseGroup;	/*field*/
} M_AudioMix;


typedef struct _tagAudioSource
{
	BASE_NODE
	VRML_CHILDREN
	MFURL url;	/*exposedField*/
	SFFloat pitch;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	SFInt32 numChan;	/*field*/
	MFInt32 phaseGroup;	/*field*/
} M_AudioSource;


typedef struct _tagAudioSwitch
{
	BASE_NODE
	VRML_CHILDREN
	MFInt32 whichChoice;	/*exposedField*/
	SFInt32 numChan;	/*field*/
	MFInt32 phaseGroup;	/*field*/
} M_AudioSwitch;


typedef struct _tagBackground
{
	BASE_NODE
	SFBool set_bind;	/*eventIn*/
	void (*on_set_bind)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat groundAngle;	/*exposedField*/
	MFColor groundColor;	/*exposedField*/
	MFURL backUrl;	/*exposedField*/
	MFURL bottomUrl;	/*exposedField*/
	MFURL frontUrl;	/*exposedField*/
	MFURL leftUrl;	/*exposedField*/
	MFURL rightUrl;	/*exposedField*/
	MFURL topUrl;	/*exposedField*/
	MFFloat skyAngle;	/*exposedField*/
	MFColor skyColor;	/*exposedField*/
	SFBool isBound;	/*eventOut*/
} M_Background;


typedef struct _tagBackground2D
{
	BASE_NODE
	SFBool set_bind;	/*eventIn*/
	void (*on_set_bind)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFColor backColor;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFBool isBound;	/*eventOut*/
} M_Background2D;


typedef struct _tagBillboard
{
	BASE_NODE
	VRML_CHILDREN
	SFVec3f axisOfRotation;	/*exposedField*/
} M_Billboard;


typedef struct _tagBitmap
{
	BASE_NODE
	SFVec2f scale;	/*exposedField*/
} M_Bitmap;


typedef struct _tagBox
{
	BASE_NODE
	SFVec3f size;	/*field*/
} M_Box;


typedef struct _tagCircle
{
	BASE_NODE
	SFFloat radius;	/*exposedField*/
} M_Circle;


typedef struct _tagCollision
{
	BASE_NODE
	VRML_CHILDREN
	SFBool collide;	/*exposedField*/
	GF_Node *proxy;	/*field*/
	SFTime collideTime;	/*eventOut*/
} M_Collision;


typedef struct _tagColor
{
	BASE_NODE
	MFColor color;	/*exposedField*/
} M_Color;


typedef struct _tagColorInterpolator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFColor keyValue;	/*exposedField*/
	SFColor value_changed;	/*eventOut*/
} M_ColorInterpolator;


typedef struct _tagCompositeTexture2D
{
	BASE_NODE
	VRML_CHILDREN
	SFInt32 pixelWidth;	/*exposedField*/
	SFInt32 pixelHeight;	/*exposedField*/
	GF_Node *background;	/*exposedField*/
	GF_Node *viewport;	/*exposedField*/
	SFInt32 repeatSandT;	/*field*/
} M_CompositeTexture2D;


typedef struct _tagCompositeTexture3D
{
	BASE_NODE
	VRML_CHILDREN
	SFInt32 pixelWidth;	/*exposedField*/
	SFInt32 pixelHeight;	/*exposedField*/
	GF_Node *background;	/*exposedField*/
	GF_Node *fog;	/*exposedField*/
	GF_Node *navigationInfo;	/*exposedField*/
	GF_Node *viewpoint;	/*exposedField*/
	SFBool repeatS;	/*field*/
	SFBool repeatT;	/*field*/
} M_CompositeTexture3D;


typedef struct _tagConditional
{
	BASE_NODE
	SFBool activate;	/*eventIn*/
	void (*on_activate)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool reverseActivate;	/*eventIn*/
	void (*on_reverseActivate)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFCommandBuffer buffer;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
} M_Conditional;


typedef struct _tagCone
{
	BASE_NODE
	SFFloat bottomRadius;	/*field*/
	SFFloat height;	/*field*/
	SFBool side;	/*field*/
	SFBool bottom;	/*field*/
} M_Cone;


typedef struct _tagCoordinate
{
	BASE_NODE
	MFVec3f point;	/*exposedField*/
} M_Coordinate;


typedef struct _tagCoordinate2D
{
	BASE_NODE
	MFVec2f point;	/*exposedField*/
} M_Coordinate2D;


typedef struct _tagCoordinateInterpolator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFVec3f keyValue;	/*exposedField*/
	MFVec3f value_changed;	/*eventOut*/
} M_CoordinateInterpolator;


typedef struct _tagCoordinateInterpolator2D
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFVec2f keyValue;	/*exposedField*/
	MFVec2f value_changed;	/*eventOut*/
} M_CoordinateInterpolator2D;


typedef struct _tagCurve2D
{
	BASE_NODE
	GF_Node *point;	/*exposedField*/
	SFFloat fineness;	/*exposedField*/
	MFInt32 type;	/*exposedField*/
} M_Curve2D;


typedef struct _tagCylinder
{
	BASE_NODE
	SFBool bottom;	/*field*/
	SFFloat height;	/*field*/
	SFFloat radius;	/*field*/
	SFBool side;	/*field*/
	SFBool top;	/*field*/
} M_Cylinder;


typedef struct _tagCylinderSensor
{
	BASE_NODE
	SFBool autoOffset;	/*exposedField*/
	SFFloat diskAngle;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFFloat maxAngle;	/*exposedField*/
	SFFloat minAngle;	/*exposedField*/
	SFFloat offset;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFRotation rotation_changed;	/*eventOut*/
	SFVec3f trackPoint_changed;	/*eventOut*/
} M_CylinderSensor;


typedef struct _tagDirectionalLight
{
	BASE_NODE
	SFFloat ambientIntensity;	/*exposedField*/
	SFColor color;	/*exposedField*/
	SFVec3f direction;	/*exposedField*/
	SFFloat intensity;	/*exposedField*/
	SFBool on;	/*exposedField*/
} M_DirectionalLight;


typedef struct _tagDiscSensor
{
	BASE_NODE
	SFBool autoOffset;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFFloat maxAngle;	/*exposedField*/
	SFFloat minAngle;	/*exposedField*/
	SFFloat offset;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFFloat rotation_changed;	/*eventOut*/
	SFVec2f trackPoint_changed;	/*eventOut*/
} M_DiscSensor;


typedef struct _tagElevationGrid
{
	BASE_NODE
	MFFloat set_height;	/*eventIn*/
	void (*on_set_height)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	GF_Node *normal;	/*exposedField*/
	GF_Node *texCoord;	/*exposedField*/
	MFFloat height;	/*field*/
	SFBool ccw;	/*field*/
	SFBool colorPerVertex;	/*field*/
	SFFloat creaseAngle;	/*field*/
	SFBool normalPerVertex;	/*field*/
	SFBool solid;	/*field*/
	SFInt32 xDimension;	/*field*/
	SFFloat xSpacing;	/*field*/
	SFInt32 zDimension;	/*field*/
	SFFloat zSpacing;	/*field*/
} M_ElevationGrid;


typedef struct _tagExpression
{
	BASE_NODE
	SFInt32 expression_select1;	/*exposedField*/
	SFInt32 expression_intensity1;	/*exposedField*/
	SFInt32 expression_select2;	/*exposedField*/
	SFInt32 expression_intensity2;	/*exposedField*/
	SFBool init_face;	/*exposedField*/
	SFBool expression_def;	/*exposedField*/
} M_Expression;


typedef struct _tagExtrusion
{
	BASE_NODE
	MFVec2f set_crossSection;	/*eventIn*/
	void (*on_set_crossSection)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFRotation set_orientation;	/*eventIn*/
	void (*on_set_orientation)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFVec2f set_scale;	/*eventIn*/
	void (*on_set_scale)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFVec3f set_spine;	/*eventIn*/
	void (*on_set_spine)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool beginCap;	/*field*/
	SFBool ccw;	/*field*/
	SFBool convex;	/*field*/
	SFFloat creaseAngle;	/*field*/
	MFVec2f crossSection;	/*field*/
	SFBool endCap;	/*field*/
	MFRotation orientation;	/*field*/
	MFVec2f scale;	/*field*/
	SFBool solid;	/*field*/
	MFVec3f spine;	/*field*/
} M_Extrusion;


typedef struct _tagFace
{
	BASE_NODE
	GF_Node *fap;	/*exposedField*/
	GF_Node *fdp;	/*exposedField*/
	GF_Node *fit;	/*exposedField*/
	GF_Node *ttsSource;	/*exposedField*/
	GF_ChildNodeItem *renderedFace;	/*exposedField*/
} M_Face;


typedef struct _tagFaceDefMesh
{
	BASE_NODE
	GF_Node *faceSceneGraphNode;	/*field*/
	MFInt32 intervalBorders;	/*field*/
	MFInt32 coordIndex;	/*field*/
	MFVec3f displacements;	/*field*/
} M_FaceDefMesh;


typedef struct _tagFaceDefTables
{
	BASE_NODE
	SFInt32 fapID;	/*field*/
	SFInt32 highLevelSelect;	/*field*/
	GF_ChildNodeItem *faceDefMesh;	/*exposedField*/
	GF_ChildNodeItem *faceDefTransform;	/*exposedField*/
} M_FaceDefTables;


typedef struct _tagFaceDefTransform
{
	BASE_NODE
	GF_Node *faceSceneGraphNode;	/*field*/
	SFInt32 fieldId;	/*field*/
	SFRotation rotationDef;	/*field*/
	SFVec3f scaleDef;	/*field*/
	SFVec3f translationDef;	/*field*/
} M_FaceDefTransform;


typedef struct _tagFAP
{
	BASE_NODE
	GF_Node *viseme;	/*exposedField*/
	GF_Node *expression;	/*exposedField*/
	SFInt32 open_jaw;	/*exposedField*/
	SFInt32 lower_t_midlip;	/*exposedField*/
	SFInt32 raise_b_midlip;	/*exposedField*/
	SFInt32 stretch_l_corner;	/*exposedField*/
	SFInt32 stretch_r_corner;	/*exposedField*/
	SFInt32 lower_t_lip_lm;	/*exposedField*/
	SFInt32 lower_t_lip_rm;	/*exposedField*/
	SFInt32 lower_b_lip_lm;	/*exposedField*/
	SFInt32 lower_b_lip_rm;	/*exposedField*/
	SFInt32 raise_l_cornerlip;	/*exposedField*/
	SFInt32 raise_r_cornerlip;	/*exposedField*/
	SFInt32 thrust_jaw;	/*exposedField*/
	SFInt32 shift_jaw;	/*exposedField*/
	SFInt32 push_b_lip;	/*exposedField*/
	SFInt32 push_t_lip;	/*exposedField*/
	SFInt32 depress_chin;	/*exposedField*/
	SFInt32 close_t_l_eyelid;	/*exposedField*/
	SFInt32 close_t_r_eyelid;	/*exposedField*/
	SFInt32 close_b_l_eyelid;	/*exposedField*/
	SFInt32 close_b_r_eyelid;	/*exposedField*/
	SFInt32 yaw_l_eyeball;	/*exposedField*/
	SFInt32 yaw_r_eyeball;	/*exposedField*/
	SFInt32 pitch_l_eyeball;	/*exposedField*/
	SFInt32 pitch_r_eyeball;	/*exposedField*/
	SFInt32 thrust_l_eyeball;	/*exposedField*/
	SFInt32 thrust_r_eyeball;	/*exposedField*/
	SFInt32 dilate_l_pupil;	/*exposedField*/
	SFInt32 dilate_r_pupil;	/*exposedField*/
	SFInt32 raise_l_i_eyebrow;	/*exposedField*/
	SFInt32 raise_r_i_eyebrow;	/*exposedField*/
	SFInt32 raise_l_m_eyebrow;	/*exposedField*/
	SFInt32 raise_r_m_eyebrow;	/*exposedField*/
	SFInt32 raise_l_o_eyebrow;	/*exposedField*/
	SFInt32 raise_r_o_eyebrow;	/*exposedField*/
	SFInt32 squeeze_l_eyebrow;	/*exposedField*/
	SFInt32 squeeze_r_eyebrow;	/*exposedField*/
	SFInt32 puff_l_cheek;	/*exposedField*/
	SFInt32 puff_r_cheek;	/*exposedField*/
	SFInt32 lift_l_cheek;	/*exposedField*/
	SFInt32 lift_r_cheek;	/*exposedField*/
	SFInt32 shift_tongue_tip;	/*exposedField*/
	SFInt32 raise_tongue_tip;	/*exposedField*/
	SFInt32 thrust_tongue_tip;	/*exposedField*/
	SFInt32 raise_tongue;	/*exposedField*/
	SFInt32 tongue_roll;	/*exposedField*/
	SFInt32 head_pitch;	/*exposedField*/
	SFInt32 head_yaw;	/*exposedField*/
	SFInt32 head_roll;	/*exposedField*/
	SFInt32 lower_t_midlip_o;	/*exposedField*/
	SFInt32 raise_b_midlip_o;	/*exposedField*/
	SFInt32 stretch_l_cornerlip;	/*exposedField*/
	SFInt32 stretch_r_cornerlip;	/*exposedField*/
	SFInt32 lower_t_lip_lm_o;	/*exposedField*/
	SFInt32 lower_t_lip_rm_o;	/*exposedField*/
	SFInt32 raise_b_lip_lm_o;	/*exposedField*/
	SFInt32 raise_b_lip_rm_o;	/*exposedField*/
	SFInt32 raise_l_cornerlip_o;	/*exposedField*/
	SFInt32 raise_r_cornerlip_o;	/*exposedField*/
	SFInt32 stretch_l_nose;	/*exposedField*/
	SFInt32 stretch_r_nose;	/*exposedField*/
	SFInt32 raise_nose;	/*exposedField*/
	SFInt32 bend_nose;	/*exposedField*/
	SFInt32 raise_l_ear;	/*exposedField*/
	SFInt32 raise_r_ear;	/*exposedField*/
	SFInt32 pull_l_ear;	/*exposedField*/
	SFInt32 pull_r_ear;	/*exposedField*/
} M_FAP;


typedef struct _tagFDP
{
	BASE_NODE
	GF_Node *featurePointsCoord;	/*exposedField*/
	GF_Node *textureCoord;	/*exposedField*/
	GF_ChildNodeItem *faceDefTables;	/*exposedField*/
	GF_ChildNodeItem *faceSceneGraph;	/*exposedField*/
	SFBool useOrthoTexture;	/*field*/
} M_FDP;


typedef struct _tagFIT
{
	BASE_NODE
	MFInt32 FAPs;	/*exposedField*/
	MFInt32 Graph;	/*exposedField*/
	MFInt32 numeratorExp;	/*exposedField*/
	MFInt32 denominatorExp;	/*exposedField*/
	MFInt32 numeratorImpulse;	/*exposedField*/
	MFInt32 numeratorTerms;	/*exposedField*/
	MFInt32 denominatorTerms;	/*exposedField*/
	MFFloat numeratorCoefs;	/*exposedField*/
	MFFloat denominatorCoefs;	/*exposedField*/
} M_FIT;


typedef struct _tagFog
{
	BASE_NODE
	SFColor color;	/*exposedField*/
	SFString fogType;	/*exposedField*/
	SFFloat visibilityRange;	/*exposedField*/
	SFBool set_bind;	/*eventIn*/
	void (*on_set_bind)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool isBound;	/*eventOut*/
} M_Fog;


typedef struct _tagFontStyle
{
	BASE_NODE
	MFString family;	/*exposedField*/
	SFBool horizontal;	/*exposedField*/
	MFString justify;	/*exposedField*/
	SFString language;	/*exposedField*/
	SFBool leftToRight;	/*exposedField*/
	SFFloat size;	/*exposedField*/
	SFFloat spacing;	/*exposedField*/
	SFString style;	/*exposedField*/
	SFBool topToBottom;	/*exposedField*/
} M_FontStyle;


typedef struct _tagForm
{
	BASE_NODE
	VRML_CHILDREN
	SFVec2f size;	/*exposedField*/
	MFInt32 groups;	/*exposedField*/
	MFString constraints;	/*exposedField*/
	MFInt32 groupsIndex;	/*exposedField*/
} M_Form;


typedef struct _tagGroup
{
	BASE_NODE
	VRML_CHILDREN
} M_Group;


typedef struct _tagImageTexture
{
	BASE_NODE
	MFURL url;	/*exposedField*/
	SFBool repeatS;	/*field*/
	SFBool repeatT;	/*field*/
} M_ImageTexture;


typedef struct _tagIndexedFaceSet
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_coordIndex;	/*eventIn*/
	void (*on_set_coordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_normalIndex;	/*eventIn*/
	void (*on_set_normalIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_texCoordIndex;	/*eventIn*/
	void (*on_set_texCoordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
	GF_Node *normal;	/*exposedField*/
	GF_Node *texCoord;	/*exposedField*/
	SFBool ccw;	/*field*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	SFBool convex;	/*field*/
	MFInt32 coordIndex;	/*field*/
	SFFloat creaseAngle;	/*field*/
	MFInt32 normalIndex;	/*field*/
	SFBool normalPerVertex;	/*field*/
	SFBool solid;	/*field*/
	MFInt32 texCoordIndex;	/*field*/
} M_IndexedFaceSet;


typedef struct _tagIndexedFaceSet2D
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_coordIndex;	/*eventIn*/
	void (*on_set_coordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_texCoordIndex;	/*eventIn*/
	void (*on_set_texCoordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
	GF_Node *texCoord;	/*exposedField*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	SFBool convex;	/*field*/
	MFInt32 coordIndex;	/*field*/
	MFInt32 texCoordIndex;	/*field*/
} M_IndexedFaceSet2D;


typedef struct _tagIndexedLineSet
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_coordIndex;	/*eventIn*/
	void (*on_set_coordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	MFInt32 coordIndex;	/*field*/
} M_IndexedLineSet;


typedef struct _tagIndexedLineSet2D
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_coordIndex;	/*eventIn*/
	void (*on_set_coordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	MFInt32 coordIndex;	/*field*/
} M_IndexedLineSet2D;


typedef struct _tagInline
{
	BASE_NODE
	MFURL url;	/*exposedField*/
} M_Inline;


typedef struct _tagLOD
{
	BASE_NODE
	GF_ChildNodeItem *level;	/*exposedField*/
	SFVec3f center;	/*field*/
	MFFloat range;	/*field*/
} M_LOD;


typedef struct _tagLayer2D
{
	BASE_NODE
	VRML_CHILDREN
	SFVec2f size;	/*exposedField*/
	GF_Node *background;	/*exposedField*/
	GF_Node *viewport;	/*exposedField*/
} M_Layer2D;


typedef struct _tagLayer3D
{
	BASE_NODE
	VRML_CHILDREN
	SFVec2f size;	/*exposedField*/
	GF_Node *background;	/*exposedField*/
	GF_Node *fog;	/*exposedField*/
	GF_Node *navigationInfo;	/*exposedField*/
	GF_Node *viewpoint;	/*exposedField*/
} M_Layer3D;


typedef struct _tagLayout
{
	BASE_NODE
	VRML_CHILDREN
	SFBool wrap;	/*exposedField*/
	SFVec2f size;	/*exposedField*/
	SFBool horizontal;	/*exposedField*/
	MFString justify;	/*exposedField*/
	SFBool leftToRight;	/*exposedField*/
	SFBool topToBottom;	/*exposedField*/
	SFFloat spacing;	/*exposedField*/
	SFBool smoothScroll;	/*exposedField*/
	SFBool loop;	/*exposedField*/
	SFBool scrollVertical;	/*exposedField*/
	SFFloat scrollRate;	/*exposedField*/
	SFInt32 scrollMode;	/*exposedField*/
} M_Layout;


typedef struct _tagLineProperties
{
	BASE_NODE
	SFColor lineColor;	/*exposedField*/
	SFInt32 lineStyle;	/*exposedField*/
	SFFloat width;	/*exposedField*/
} M_LineProperties;


typedef struct _tagListeningPoint
{
	BASE_NODE
	SFBool set_bind;	/*eventIn*/
	void (*on_set_bind)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool jump;	/*exposedField*/
	SFRotation orientation;	/*exposedField*/
	SFVec3f position;	/*exposedField*/
	SFString description;	/*field*/
	SFTime bindTime;	/*eventOut*/
	SFBool isBound;	/*eventOut*/
} M_ListeningPoint;


typedef struct _tagMaterial
{
	BASE_NODE
	SFFloat ambientIntensity;	/*exposedField*/
	SFColor diffuseColor;	/*exposedField*/
	SFColor emissiveColor;	/*exposedField*/
	SFFloat shininess;	/*exposedField*/
	SFColor specularColor;	/*exposedField*/
	SFFloat transparency;	/*exposedField*/
} M_Material;


typedef struct _tagMaterial2D
{
	BASE_NODE
	SFColor emissiveColor;	/*exposedField*/
	SFBool filled;	/*exposedField*/
	GF_Node *lineProps;	/*exposedField*/
	SFFloat transparency;	/*exposedField*/
} M_Material2D;


typedef struct _tagMovieTexture
{
	BASE_NODE
	SFBool loop;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFBool repeatS;	/*field*/
	SFBool repeatT;	/*field*/
	SFTime duration_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_MovieTexture;


typedef struct _tagNavigationInfo
{
	BASE_NODE
	SFBool set_bind;	/*eventIn*/
	void (*on_set_bind)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat avatarSize;	/*exposedField*/
	SFBool headlight;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	MFString type;	/*exposedField*/
	SFFloat visibilityLimit;	/*exposedField*/
	SFBool isBound;	/*eventOut*/
} M_NavigationInfo;


typedef struct _tagNormal
{
	BASE_NODE
	MFVec3f vector;	/*exposedField*/
} M_Normal;


typedef struct _tagNormalInterpolator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFVec3f keyValue;	/*exposedField*/
	MFVec3f value_changed;	/*eventOut*/
} M_NormalInterpolator;


typedef struct _tagOrderedGroup
{
	BASE_NODE
	VRML_CHILDREN
	MFFloat order;	/*exposedField*/
} M_OrderedGroup;


typedef struct _tagOrientationInterpolator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFRotation keyValue;	/*exposedField*/
	SFRotation value_changed;	/*eventOut*/
} M_OrientationInterpolator;


typedef struct _tagPixelTexture
{
	BASE_NODE
	SFImage image;	/*exposedField*/
	SFBool repeatS;	/*field*/
	SFBool repeatT;	/*field*/
} M_PixelTexture;


typedef struct _tagPlaneSensor
{
	BASE_NODE
	SFBool autoOffset;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFVec2f maxPosition;	/*exposedField*/
	SFVec2f minPosition;	/*exposedField*/
	SFVec3f offset;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFVec3f trackPoint_changed;	/*eventOut*/
	SFVec3f translation_changed;	/*eventOut*/
} M_PlaneSensor;


typedef struct _tagPlaneSensor2D
{
	BASE_NODE
	SFBool autoOffset;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFVec2f maxPosition;	/*exposedField*/
	SFVec2f minPosition;	/*exposedField*/
	SFVec2f offset;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFVec2f trackPoint_changed;	/*eventOut*/
	SFVec2f translation_changed;	/*eventOut*/
} M_PlaneSensor2D;


typedef struct _tagPointLight
{
	BASE_NODE
	SFFloat ambientIntensity;	/*exposedField*/
	SFVec3f attenuation;	/*exposedField*/
	SFColor color;	/*exposedField*/
	SFFloat intensity;	/*exposedField*/
	SFVec3f location;	/*exposedField*/
	SFBool on;	/*exposedField*/
	SFFloat radius;	/*exposedField*/
} M_PointLight;


typedef struct _tagPointSet
{
	BASE_NODE
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
} M_PointSet;


typedef struct _tagPointSet2D
{
	BASE_NODE
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
} M_PointSet2D;


typedef struct _tagPositionInterpolator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFVec3f keyValue;	/*exposedField*/
	SFVec3f value_changed;	/*eventOut*/
} M_PositionInterpolator;


typedef struct _tagPositionInterpolator2D
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFVec2f keyValue;	/*exposedField*/
	SFVec2f value_changed;	/*eventOut*/
} M_PositionInterpolator2D;


typedef struct _tagProximitySensor2D
{
	BASE_NODE
	SFVec2f center;	/*exposedField*/
	SFVec2f size;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFVec2f position_changed;	/*eventOut*/
	SFFloat orientation_changed;	/*eventOut*/
	SFTime enterTime;	/*eventOut*/
	SFTime exitTime;	/*eventOut*/
} M_ProximitySensor2D;


typedef struct _tagProximitySensor
{
	BASE_NODE
	SFVec3f center;	/*exposedField*/
	SFVec3f size;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFVec3f position_changed;	/*eventOut*/
	SFRotation orientation_changed;	/*eventOut*/
	SFTime enterTime;	/*eventOut*/
	SFTime exitTime;	/*eventOut*/
} M_ProximitySensor;


typedef struct _tagQuantizationParameter
{
	BASE_NODE
	SFBool isLocal;	/*field*/
	SFBool position3DQuant;	/*field*/
	SFVec3f position3DMin;	/*field*/
	SFVec3f position3DMax;	/*field*/
	SFInt32 position3DNbBits;	/*field*/
	SFBool position2DQuant;	/*field*/
	SFVec2f position2DMin;	/*field*/
	SFVec2f position2DMax;	/*field*/
	SFInt32 position2DNbBits;	/*field*/
	SFBool drawOrderQuant;	/*field*/
	SFFloat drawOrderMin;	/*field*/
	SFFloat drawOrderMax;	/*field*/
	SFInt32 drawOrderNbBits;	/*field*/
	SFBool colorQuant;	/*field*/
	SFFloat colorMin;	/*field*/
	SFFloat colorMax;	/*field*/
	SFInt32 colorNbBits;	/*field*/
	SFBool textureCoordinateQuant;	/*field*/
	SFFloat textureCoordinateMin;	/*field*/
	SFFloat textureCoordinateMax;	/*field*/
	SFInt32 textureCoordinateNbBits;	/*field*/
	SFBool angleQuant;	/*field*/
	SFFloat angleMin;	/*field*/
	SFFloat angleMax;	/*field*/
	SFInt32 angleNbBits;	/*field*/
	SFBool scaleQuant;	/*field*/
	SFFloat scaleMin;	/*field*/
	SFFloat scaleMax;	/*field*/
	SFInt32 scaleNbBits;	/*field*/
	SFBool keyQuant;	/*field*/
	SFFloat keyMin;	/*field*/
	SFFloat keyMax;	/*field*/
	SFInt32 keyNbBits;	/*field*/
	SFBool normalQuant;	/*field*/
	SFInt32 normalNbBits;	/*field*/
	SFBool sizeQuant;	/*field*/
	SFFloat sizeMin;	/*field*/
	SFFloat sizeMax;	/*field*/
	SFInt32 sizeNbBits;	/*field*/
	SFBool useEfficientCoding;	/*field*/
} M_QuantizationParameter;


typedef struct _tagRectangle
{
	BASE_NODE
	SFVec2f size;	/*exposedField*/
} M_Rectangle;


typedef struct _tagScalarInterpolator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFFloat keyValue;	/*exposedField*/
	SFFloat value_changed;	/*eventOut*/
} M_ScalarInterpolator;


typedef struct _tagScript
{
	BASE_NODE
	MFScript url;	/*exposedField*/
	SFBool directOutput;	/*field*/
	SFBool mustEvaluate;	/*field*/
} M_Script;


typedef struct _tagShape
{
	BASE_NODE
	GF_Node *appearance;	/*exposedField*/
	GF_Node *geometry;	/*exposedField*/
} M_Shape;


typedef struct _tagSound
{
	BASE_NODE
	SFVec3f direction;	/*exposedField*/
	SFFloat intensity;	/*exposedField*/
	SFVec3f location;	/*exposedField*/
	SFFloat maxBack;	/*exposedField*/
	SFFloat maxFront;	/*exposedField*/
	SFFloat minBack;	/*exposedField*/
	SFFloat minFront;	/*exposedField*/
	SFFloat priority;	/*exposedField*/
	GF_Node *source;	/*exposedField*/
	SFBool spatialize;	/*field*/
} M_Sound;


typedef struct _tagSound2D
{
	BASE_NODE
	SFFloat intensity;	/*exposedField*/
	SFVec2f location;	/*exposedField*/
	GF_Node *source;	/*exposedField*/
	SFBool spatialize;	/*field*/
} M_Sound2D;


typedef struct _tagSphere
{
	BASE_NODE
	SFFloat radius;	/*field*/
} M_Sphere;


typedef struct _tagSphereSensor
{
	BASE_NODE
	SFBool autoOffset;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFRotation offset;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFRotation rotation_changed;	/*eventOut*/
	SFVec3f trackPoint_changed;	/*eventOut*/
} M_SphereSensor;


typedef struct _tagSpotLight
{
	BASE_NODE
	SFFloat ambientIntensity;	/*exposedField*/
	SFVec3f attenuation;	/*exposedField*/
	SFFloat beamWidth;	/*exposedField*/
	SFColor color;	/*exposedField*/
	SFFloat cutOffAngle;	/*exposedField*/
	SFVec3f direction;	/*exposedField*/
	SFFloat intensity;	/*exposedField*/
	SFVec3f location;	/*exposedField*/
	SFBool on;	/*exposedField*/
	SFFloat radius;	/*exposedField*/
} M_SpotLight;


typedef struct _tagSwitch
{
	BASE_NODE
	GF_ChildNodeItem *choice;	/*exposedField*/
	SFInt32 whichChoice;	/*exposedField*/
} M_Switch;


typedef struct _tagTermCap
{
	BASE_NODE
	SFTime evaluate;	/*eventIn*/
	void (*on_evaluate)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFInt32 capability;	/*exposedField*/
	SFInt32 value;	/*eventOut*/
} M_TermCap;


typedef struct _tagText
{
	BASE_NODE
	MFString string;	/*exposedField*/
	MFFloat length;	/*exposedField*/
	GF_Node *fontStyle;	/*exposedField*/
	SFFloat maxExtent;	/*exposedField*/
} M_Text;


typedef struct _tagTextureCoordinate
{
	BASE_NODE
	MFVec2f point;	/*exposedField*/
} M_TextureCoordinate;


typedef struct _tagTextureTransform
{
	BASE_NODE
	SFVec2f center;	/*exposedField*/
	SFFloat rotation;	/*exposedField*/
	SFVec2f scale;	/*exposedField*/
	SFVec2f translation;	/*exposedField*/
} M_TextureTransform;


typedef struct _tagTimeSensor
{
	BASE_NODE
	SFTime cycleInterval;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFBool loop;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	SFTime cycleTime;	/*eventOut*/
	SFFloat fraction_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
	SFTime time;	/*eventOut*/
} M_TimeSensor;


typedef struct _tagTouchSensor
{
	BASE_NODE
	SFBool enabled;	/*exposedField*/
	SFVec3f hitNormal_changed;	/*eventOut*/
	SFVec3f hitPoint_changed;	/*eventOut*/
	SFVec2f hitTexCoord_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
	SFBool isOver;	/*eventOut*/
	SFTime touchTime;	/*eventOut*/
} M_TouchSensor;


typedef struct _tagTransform
{
	BASE_NODE
	VRML_CHILDREN
	SFVec3f center;	/*exposedField*/
	SFRotation rotation;	/*exposedField*/
	SFVec3f scale;	/*exposedField*/
	SFRotation scaleOrientation;	/*exposedField*/
	SFVec3f translation;	/*exposedField*/
} M_Transform;


typedef struct _tagTransform2D
{
	BASE_NODE
	VRML_CHILDREN
	SFVec2f center;	/*exposedField*/
	SFFloat rotationAngle;	/*exposedField*/
	SFVec2f scale;	/*exposedField*/
	SFFloat scaleOrientation;	/*exposedField*/
	SFVec2f translation;	/*exposedField*/
} M_Transform2D;


typedef struct _tagValuator
{
	BASE_NODE
	SFBool inSFBool;	/*eventIn*/
	void (*on_inSFBool)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFColor inSFColor;	/*eventIn*/
	void (*on_inSFColor)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFColor inMFColor;	/*eventIn*/
	void (*on_inMFColor)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFFloat inSFFloat;	/*eventIn*/
	void (*on_inSFFloat)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat inMFFloat;	/*eventIn*/
	void (*on_inMFFloat)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFInt32 inSFInt32;	/*eventIn*/
	void (*on_inSFInt32)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 inMFInt32;	/*eventIn*/
	void (*on_inMFInt32)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFRotation inSFRotation;	/*eventIn*/
	void (*on_inSFRotation)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFRotation inMFRotation;	/*eventIn*/
	void (*on_inMFRotation)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFString inSFString;	/*eventIn*/
	void (*on_inSFString)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFString inMFString;	/*eventIn*/
	void (*on_inMFString)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFTime inSFTime;	/*eventIn*/
	void (*on_inSFTime)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFVec2f inSFVec2f;	/*eventIn*/
	void (*on_inSFVec2f)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFVec2f inMFVec2f;	/*eventIn*/
	void (*on_inMFVec2f)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFVec3f inSFVec3f;	/*eventIn*/
	void (*on_inSFVec3f)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFVec3f inMFVec3f;	/*eventIn*/
	void (*on_inMFVec3f)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool outSFBool;	/*eventOut*/
	SFColor outSFColor;	/*eventOut*/
	MFColor outMFColor;	/*eventOut*/
	SFFloat outSFFloat;	/*eventOut*/
	MFFloat outMFFloat;	/*eventOut*/
	SFInt32 outSFInt32;	/*eventOut*/
	MFInt32 outMFInt32;	/*eventOut*/
	SFRotation outSFRotation;	/*eventOut*/
	MFRotation outMFRotation;	/*eventOut*/
	SFString outSFString;	/*eventOut*/
	MFString outMFString;	/*eventOut*/
	SFTime outSFTime;	/*eventOut*/
	SFVec2f outSFVec2f;	/*eventOut*/
	MFVec2f outMFVec2f;	/*eventOut*/
	SFVec3f outSFVec3f;	/*eventOut*/
	MFVec3f outMFVec3f;	/*eventOut*/
	SFFloat Factor1;	/*exposedField*/
	SFFloat Factor2;	/*exposedField*/
	SFFloat Factor3;	/*exposedField*/
	SFFloat Factor4;	/*exposedField*/
	SFFloat Offset1;	/*exposedField*/
	SFFloat Offset2;	/*exposedField*/
	SFFloat Offset3;	/*exposedField*/
	SFFloat Offset4;	/*exposedField*/
	SFBool Sum;	/*exposedField*/
} M_Valuator;


typedef struct _tagViewpoint
{
	BASE_NODE
	SFBool set_bind;	/*eventIn*/
	void (*on_set_bind)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFFloat fieldOfView;	/*exposedField*/
	SFBool jump;	/*exposedField*/
	SFRotation orientation;	/*exposedField*/
	SFVec3f position;	/*exposedField*/
	SFString description;	/*field*/
	SFTime bindTime;	/*eventOut*/
	SFBool isBound;	/*eventOut*/
} M_Viewpoint;


typedef struct _tagVisibilitySensor
{
	BASE_NODE
	SFVec3f center;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFVec3f size;	/*exposedField*/
	SFTime enterTime;	/*eventOut*/
	SFTime exitTime;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_VisibilitySensor;


typedef struct _tagViseme
{
	BASE_NODE
	SFInt32 viseme_select1;	/*exposedField*/
	SFInt32 viseme_select2;	/*exposedField*/
	SFInt32 viseme_blend;	/*exposedField*/
	SFBool viseme_def;	/*exposedField*/
} M_Viseme;


typedef struct _tagWorldInfo
{
	BASE_NODE
	MFString info;	/*field*/
	SFString title;	/*field*/
} M_WorldInfo;


typedef struct _tagAcousticMaterial
{
	BASE_NODE
	SFFloat ambientIntensity;	/*exposedField*/
	SFColor diffuseColor;	/*exposedField*/
	SFColor emissiveColor;	/*exposedField*/
	SFFloat shininess;	/*exposedField*/
	SFColor specularColor;	/*exposedField*/
	SFFloat transparency;	/*exposedField*/
	MFFloat reffunc;	/*field*/
	MFFloat transfunc;	/*field*/
	MFFloat refFrequency;	/*field*/
	MFFloat transFrequency;	/*field*/
} M_AcousticMaterial;


typedef struct _tagAcousticScene
{
	BASE_NODE
	SFVec3f center;	/*field*/
	SFVec3f Size;	/*field*/
	MFTime reverbTime;	/*field*/
	MFFloat reverbFreq;	/*field*/
	SFFloat reverbLevel;	/*exposedField*/
	SFTime reverbDelay;	/*exposedField*/
} M_AcousticScene;


typedef struct _tagApplicationWindow
{
	BASE_NODE
	SFBool isActive;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	SFString description;	/*exposedField*/
	MFString parameter;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFVec2f size;	/*exposedField*/
} M_ApplicationWindow;


typedef struct _tagBAP
{
	BASE_NODE
	SFInt32 sacroiliac_tilt;	/*exposedField*/
	SFInt32 sacroiliac_torsion;	/*exposedField*/
	SFInt32 sacroiliac_roll;	/*exposedField*/
	SFInt32 l_hip_flexion;	/*exposedField*/
	SFInt32 r_hip_flexion;	/*exposedField*/
	SFInt32 l_hip_abduct;	/*exposedField*/
	SFInt32 r_hip_abduct;	/*exposedField*/
	SFInt32 l_hip_twisting;	/*exposedField*/
	SFInt32 r_hip_twisting;	/*exposedField*/
	SFInt32 l_knee_flexion;	/*exposedField*/
	SFInt32 r_knee_flexion;	/*exposedField*/
	SFInt32 l_knee_twisting;	/*exposedField*/
	SFInt32 r_knee_twisting;	/*exposedField*/
	SFInt32 l_ankle_flexion;	/*exposedField*/
	SFInt32 r_ankle_flexion;	/*exposedField*/
	SFInt32 l_ankle_twisting;	/*exposedField*/
	SFInt32 r_ankle_twisting;	/*exposedField*/
	SFInt32 l_subtalar_flexion;	/*exposedField*/
	SFInt32 r_subtalar_flexion;	/*exposedField*/
	SFInt32 l_midtarsal_flexion;	/*exposedField*/
	SFInt32 r_midtarsal_flexion;	/*exposedField*/
	SFInt32 l_metatarsal_flexion;	/*exposedField*/
	SFInt32 r_metatarsal_flexion;	/*exposedField*/
	SFInt32 l_sternoclavicular_abduct;	/*exposedField*/
	SFInt32 r_sternoclavicular_abduct;	/*exposedField*/
	SFInt32 l_sternoclavicular_rotate;	/*exposedField*/
	SFInt32 r_sternoclavicular_rotate;	/*exposedField*/
	SFInt32 l_acromioclavicular_abduct;	/*exposedField*/
	SFInt32 r_acromioclavicular_abduct;	/*exposedField*/
	SFInt32 l_acromioclavicular_rotate;	/*exposedField*/
	SFInt32 r_acromioclavicular_rotate;	/*exposedField*/
	SFInt32 l_shoulder_flexion;	/*exposedField*/
	SFInt32 r_shoulder_flexion;	/*exposedField*/
	SFInt32 l_shoulder_abduct;	/*exposedField*/
	SFInt32 r_shoulder_abduct;	/*exposedField*/
	SFInt32 l_shoulder_twisting;	/*exposedField*/
	SFInt32 r_shoulder_twisting;	/*exposedField*/
	SFInt32 l_elbow_flexion;	/*exposedField*/
	SFInt32 r_elbow_flexion;	/*exposedField*/
	SFInt32 l_elbow_twisting;	/*exposedField*/
	SFInt32 r_elbow_twisting;	/*exposedField*/
	SFInt32 l_wrist_flexion;	/*exposedField*/
	SFInt32 r_wrist_flexion;	/*exposedField*/
	SFInt32 l_wrist_pivot;	/*exposedField*/
	SFInt32 r_wrist_pivot;	/*exposedField*/
	SFInt32 l_wrist_twisting;	/*exposedField*/
	SFInt32 r_wrist_twisting;	/*exposedField*/
	SFInt32 skullbase_roll;	/*exposedField*/
	SFInt32 skullbase_torsion;	/*exposedField*/
	SFInt32 skullbase_tilt;	/*exposedField*/
	SFInt32 vc1roll;	/*exposedField*/
	SFInt32 vc1torsion;	/*exposedField*/
	SFInt32 vc1tilt;	/*exposedField*/
	SFInt32 vc2roll;	/*exposedField*/
	SFInt32 vc2torsion;	/*exposedField*/
	SFInt32 vc2tilt;	/*exposedField*/
	SFInt32 vc3roll;	/*exposedField*/
	SFInt32 vc3torsion;	/*exposedField*/
	SFInt32 vc3tilt;	/*exposedField*/
	SFInt32 vc4roll;	/*exposedField*/
	SFInt32 vc4torsion;	/*exposedField*/
	SFInt32 vc4tilt;	/*exposedField*/
	SFInt32 vc5roll;	/*exposedField*/
	SFInt32 vc5torsion;	/*exposedField*/
	SFInt32 vc5tilt;	/*exposedField*/
	SFInt32 vc6roll;	/*exposedField*/
	SFInt32 vc6torsion;	/*exposedField*/
	SFInt32 vc6tilt;	/*exposedField*/
	SFInt32 vc7roll;	/*exposedField*/
	SFInt32 vc7torsion;	/*exposedField*/
	SFInt32 vc7tilt;	/*exposedField*/
	SFInt32 vt1roll;	/*exposedField*/
	SFInt32 vt1torsion;	/*exposedField*/
	SFInt32 vt1tilt;	/*exposedField*/
	SFInt32 vt2roll;	/*exposedField*/
	SFInt32 vt2torsion;	/*exposedField*/
	SFInt32 vt2tilt;	/*exposedField*/
	SFInt32 vt3roll;	/*exposedField*/
	SFInt32 vt3torsion;	/*exposedField*/
	SFInt32 vt3tilt;	/*exposedField*/
	SFInt32 vt4roll;	/*exposedField*/
	SFInt32 vt4torsion;	/*exposedField*/
	SFInt32 vt4tilt;	/*exposedField*/
	SFInt32 vt5roll;	/*exposedField*/
	SFInt32 vt5torsion;	/*exposedField*/
	SFInt32 vt5tilt;	/*exposedField*/
	SFInt32 vt6roll;	/*exposedField*/
	SFInt32 vt6torsion;	/*exposedField*/
	SFInt32 vt6tilt;	/*exposedField*/
	SFInt32 vt7roll;	/*exposedField*/
	SFInt32 vt7torsion;	/*exposedField*/
	SFInt32 vt7tilt;	/*exposedField*/
	SFInt32 vt8roll;	/*exposedField*/
	SFInt32 vt8torsion;	/*exposedField*/
	SFInt32 vt8tilt;	/*exposedField*/
	SFInt32 vt9roll;	/*exposedField*/
	SFInt32 vt9torsion;	/*exposedField*/
	SFInt32 vt9tilt;	/*exposedField*/
	SFInt32 vt10roll;	/*exposedField*/
	SFInt32 vt10torsion;	/*exposedField*/
	SFInt32 vt10tilt;	/*exposedField*/
	SFInt32 vt11roll;	/*exposedField*/
	SFInt32 vt11torsion;	/*exposedField*/
	SFInt32 vt11tilt;	/*exposedField*/
	SFInt32 vt12roll;	/*exposedField*/
	SFInt32 vt12torsion;	/*exposedField*/
	SFInt32 vt12tilt;	/*exposedField*/
	SFInt32 vl1roll;	/*exposedField*/
	SFInt32 vl1torsion;	/*exposedField*/
	SFInt32 vl1tilt;	/*exposedField*/
	SFInt32 vl2roll;	/*exposedField*/
	SFInt32 vl2torsion;	/*exposedField*/
	SFInt32 vl2tilt;	/*exposedField*/
	SFInt32 vl3roll;	/*exposedField*/
	SFInt32 vl3torsion;	/*exposedField*/
	SFInt32 vl3tilt;	/*exposedField*/
	SFInt32 vl4roll;	/*exposedField*/
	SFInt32 vl4torsion;	/*exposedField*/
	SFInt32 vl4tilt;	/*exposedField*/
	SFInt32 vl5roll;	/*exposedField*/
	SFInt32 vl5torsion;	/*exposedField*/
	SFInt32 vl5tilt;	/*exposedField*/
	SFInt32 l_pinky0_flexion;	/*exposedField*/
	SFInt32 r_pinky0_flexion;	/*exposedField*/
	SFInt32 l_pinky1_flexion;	/*exposedField*/
	SFInt32 r_pinky1_flexion;	/*exposedField*/
	SFInt32 l_pinky1_pivot;	/*exposedField*/
	SFInt32 r_pinky1_pivot;	/*exposedField*/
	SFInt32 l_pinky1_twisting;	/*exposedField*/
	SFInt32 r_pinky1_twisting;	/*exposedField*/
	SFInt32 l_pinky2_flexion;	/*exposedField*/
	SFInt32 r_pinky2_flexion;	/*exposedField*/
	SFInt32 l_pinky3_flexion;	/*exposedField*/
	SFInt32 r_pinky3_flexion;	/*exposedField*/
	SFInt32 l_ring0_flexion;	/*exposedField*/
	SFInt32 r_ring0_flexion;	/*exposedField*/
	SFInt32 l_ring1_flexion;	/*exposedField*/
	SFInt32 r_ring1_flexion;	/*exposedField*/
	SFInt32 l_ring1_pivot;	/*exposedField*/
	SFInt32 r_ring1_pivot;	/*exposedField*/
	SFInt32 l_ring1_twisting;	/*exposedField*/
	SFInt32 r_ring1_twisting;	/*exposedField*/
	SFInt32 l_ring2_flexion;	/*exposedField*/
	SFInt32 r_ring2_flexion;	/*exposedField*/
	SFInt32 l_ring3_flexion;	/*exposedField*/
	SFInt32 r_ring3_flexion;	/*exposedField*/
	SFInt32 l_middle0_flexion;	/*exposedField*/
	SFInt32 r_middle0_flexion;	/*exposedField*/
	SFInt32 l_middle1_flexion;	/*exposedField*/
	SFInt32 r_middle1_flexion;	/*exposedField*/
	SFInt32 l_middle1_pivot;	/*exposedField*/
	SFInt32 r_middle1_pivot;	/*exposedField*/
	SFInt32 l_middle1_twisting;	/*exposedField*/
	SFInt32 r_middle1_twisting;	/*exposedField*/
	SFInt32 l_middle2_flexion;	/*exposedField*/
	SFInt32 r_middle2_flexion;	/*exposedField*/
	SFInt32 l_middle3_flexion;	/*exposedField*/
	SFInt32 r_middle3_flexion;	/*exposedField*/
	SFInt32 l_index0_flexion;	/*exposedField*/
	SFInt32 r_index0_flexion;	/*exposedField*/
	SFInt32 l_index1_flexion;	/*exposedField*/
	SFInt32 r_index1_flexion;	/*exposedField*/
	SFInt32 l_index1_pivot;	/*exposedField*/
	SFInt32 r_index1_pivot;	/*exposedField*/
	SFInt32 l_index1_twisting;	/*exposedField*/
	SFInt32 r_index1_twisting;	/*exposedField*/
	SFInt32 l_index2_flexion;	/*exposedField*/
	SFInt32 r_index2_flexion;	/*exposedField*/
	SFInt32 l_index3_flexion;	/*exposedField*/
	SFInt32 r_index3_flexion;	/*exposedField*/
	SFInt32 l_thumb1_flexion;	/*exposedField*/
	SFInt32 r_thumb1_flexion;	/*exposedField*/
	SFInt32 l_thumb1_pivot;	/*exposedField*/
	SFInt32 r_thumb1_pivot;	/*exposedField*/
	SFInt32 l_thumb1_twisting;	/*exposedField*/
	SFInt32 r_thumb1_twisting;	/*exposedField*/
	SFInt32 l_thumb2_flexion;	/*exposedField*/
	SFInt32 r_thumb2_flexion;	/*exposedField*/
	SFInt32 l_thumb3_flexion;	/*exposedField*/
	SFInt32 r_thumb3_flexion;	/*exposedField*/
	SFInt32 HumanoidRoot_tr_vertical;	/*exposedField*/
	SFInt32 HumanoidRoot_tr_lateral;	/*exposedField*/
	SFInt32 HumanoidRoot_tr_frontal;	/*exposedField*/
	SFInt32 HumanoidRoot_rt_body_turn;	/*exposedField*/
	SFInt32 HumanoidRoot_rt_body_roll;	/*exposedField*/
	SFInt32 HumanoidRoot_rt_body_tilt;	/*exposedField*/
	SFInt32 extensionBap187;	/*exposedField*/
	SFInt32 extensionBap188;	/*exposedField*/
	SFInt32 extensionBap189;	/*exposedField*/
	SFInt32 extensionBap190;	/*exposedField*/
	SFInt32 extensionBap191;	/*exposedField*/
	SFInt32 extensionBap192;	/*exposedField*/
	SFInt32 extensionBap193;	/*exposedField*/
	SFInt32 extensionBap194;	/*exposedField*/
	SFInt32 extensionBap195;	/*exposedField*/
	SFInt32 extensionBap196;	/*exposedField*/
	SFInt32 extensionBap197;	/*exposedField*/
	SFInt32 extensionBap198;	/*exposedField*/
	SFInt32 extensionBap199;	/*exposedField*/
	SFInt32 extensionBap200;	/*exposedField*/
	SFInt32 extensionBap201;	/*exposedField*/
	SFInt32 extensionBap202;	/*exposedField*/
	SFInt32 extensionBap203;	/*exposedField*/
	SFInt32 extensionBap204;	/*exposedField*/
	SFInt32 extensionBap205;	/*exposedField*/
	SFInt32 extensionBap206;	/*exposedField*/
	SFInt32 extensionBap207;	/*exposedField*/
	SFInt32 extensionBap208;	/*exposedField*/
	SFInt32 extensionBap209;	/*exposedField*/
	SFInt32 extensionBap210;	/*exposedField*/
	SFInt32 extensionBap211;	/*exposedField*/
	SFInt32 extensionBap212;	/*exposedField*/
	SFInt32 extensionBap213;	/*exposedField*/
	SFInt32 extensionBap214;	/*exposedField*/
	SFInt32 extensionBap215;	/*exposedField*/
	SFInt32 extensionBap216;	/*exposedField*/
	SFInt32 extensionBap217;	/*exposedField*/
	SFInt32 extensionBap218;	/*exposedField*/
	SFInt32 extensionBap219;	/*exposedField*/
	SFInt32 extensionBap220;	/*exposedField*/
	SFInt32 extensionBap221;	/*exposedField*/
	SFInt32 extensionBap222;	/*exposedField*/
	SFInt32 extensionBap223;	/*exposedField*/
	SFInt32 extensionBap224;	/*exposedField*/
	SFInt32 extensionBap225;	/*exposedField*/
	SFInt32 extensionBap226;	/*exposedField*/
	SFInt32 extensionBap227;	/*exposedField*/
	SFInt32 extensionBap228;	/*exposedField*/
	SFInt32 extensionBap229;	/*exposedField*/
	SFInt32 extensionBap230;	/*exposedField*/
	SFInt32 extensionBap231;	/*exposedField*/
	SFInt32 extensionBap232;	/*exposedField*/
	SFInt32 extensionBap233;	/*exposedField*/
	SFInt32 extensionBap234;	/*exposedField*/
	SFInt32 extensionBap235;	/*exposedField*/
	SFInt32 extensionBap236;	/*exposedField*/
	SFInt32 extensionBap237;	/*exposedField*/
	SFInt32 extensionBap238;	/*exposedField*/
	SFInt32 extensionBap239;	/*exposedField*/
	SFInt32 extensionBap240;	/*exposedField*/
	SFInt32 extensionBap241;	/*exposedField*/
	SFInt32 extensionBap242;	/*exposedField*/
	SFInt32 extensionBap243;	/*exposedField*/
	SFInt32 extensionBap244;	/*exposedField*/
	SFInt32 extensionBap245;	/*exposedField*/
	SFInt32 extensionBap246;	/*exposedField*/
	SFInt32 extensionBap247;	/*exposedField*/
	SFInt32 extensionBap248;	/*exposedField*/
	SFInt32 extensionBap249;	/*exposedField*/
	SFInt32 extensionBap250;	/*exposedField*/
	SFInt32 extensionBap251;	/*exposedField*/
	SFInt32 extensionBap252;	/*exposedField*/
	SFInt32 extensionBap253;	/*exposedField*/
	SFInt32 extensionBap254;	/*exposedField*/
	SFInt32 extensionBap255;	/*exposedField*/
	SFInt32 extensionBap256;	/*exposedField*/
	SFInt32 extensionBap257;	/*exposedField*/
	SFInt32 extensionBap258;	/*exposedField*/
	SFInt32 extensionBap259;	/*exposedField*/
	SFInt32 extensionBap260;	/*exposedField*/
	SFInt32 extensionBap261;	/*exposedField*/
	SFInt32 extensionBap262;	/*exposedField*/
	SFInt32 extensionBap263;	/*exposedField*/
	SFInt32 extensionBap264;	/*exposedField*/
	SFInt32 extensionBap265;	/*exposedField*/
	SFInt32 extensionBap266;	/*exposedField*/
	SFInt32 extensionBap267;	/*exposedField*/
	SFInt32 extensionBap268;	/*exposedField*/
	SFInt32 extensionBap269;	/*exposedField*/
	SFInt32 extensionBap270;	/*exposedField*/
	SFInt32 extensionBap271;	/*exposedField*/
	SFInt32 extensionBap272;	/*exposedField*/
	SFInt32 extensionBap273;	/*exposedField*/
	SFInt32 extensionBap274;	/*exposedField*/
	SFInt32 extensionBap275;	/*exposedField*/
	SFInt32 extensionBap276;	/*exposedField*/
	SFInt32 extensionBap277;	/*exposedField*/
	SFInt32 extensionBap278;	/*exposedField*/
	SFInt32 extensionBap279;	/*exposedField*/
	SFInt32 extensionBap280;	/*exposedField*/
	SFInt32 extensionBap281;	/*exposedField*/
	SFInt32 extensionBap282;	/*exposedField*/
	SFInt32 extensionBap283;	/*exposedField*/
	SFInt32 extensionBap284;	/*exposedField*/
	SFInt32 extensionBap285;	/*exposedField*/
	SFInt32 extensionBap286;	/*exposedField*/
	SFInt32 extensionBap287;	/*exposedField*/
	SFInt32 extensionBap288;	/*exposedField*/
	SFInt32 extensionBap289;	/*exposedField*/
	SFInt32 extensionBap290;	/*exposedField*/
	SFInt32 extensionBap291;	/*exposedField*/
	SFInt32 extensionBap292;	/*exposedField*/
	SFInt32 extensionBap293;	/*exposedField*/
	SFInt32 extensionBap294;	/*exposedField*/
	SFInt32 extensionBap295;	/*exposedField*/
	SFInt32 extensionBap296;	/*exposedField*/
} M_BAP;


typedef struct _tagBDP
{
	BASE_NODE
	GF_ChildNodeItem *bodyDefTables;	/*exposedField*/
	GF_ChildNodeItem *bodySceneGraph;	/*exposedField*/
} M_BDP;


typedef struct _tagBody
{
	BASE_NODE
	GF_Node *bdp;	/*exposedField*/
	GF_Node *bap;	/*exposedField*/
	GF_ChildNodeItem *renderedBody;	/*exposedField*/
} M_Body;


typedef struct _tagBodyDefTable
{
	BASE_NODE
	SFString bodySceneGraphNodeName;	/*exposedField*/
	MFInt32 bapIDs;	/*exposedField*/
	MFInt32 vertexIds;	/*exposedField*/
	MFInt32 bapCombinations;	/*exposedField*/
	MFVec3f displacements;	/*exposedField*/
	SFInt32 numInterpolateKeys;	/*exposedField*/
} M_BodyDefTable;


typedef struct _tagBodySegmentConnectionHint
{
	BASE_NODE
	SFString firstSegmentNodeName;	/*exposedField*/
	SFString secondSegmentNodeName;	/*exposedField*/
	MFInt32 firstVertexIdList;	/*exposedField*/
	MFInt32 secondVertexIdList;	/*exposedField*/
} M_BodySegmentConnectionHint;


typedef struct _tagDirectiveSound
{
	BASE_NODE
	SFVec3f direction;	/*exposedField*/
	SFFloat intensity;	/*exposedField*/
	SFVec3f location;	/*exposedField*/
	GF_Node *source;	/*exposedField*/
	GF_Node *perceptualParameters;	/*exposedField*/
	SFBool roomEffect;	/*exposedField*/
	SFBool spatialize;	/*exposedField*/
	MFFloat directivity;	/*field*/
	MFFloat angles;	/*field*/
	MFFloat frequency;	/*field*/
	SFFloat speedOfSound;	/*field*/
	SFFloat distance;	/*field*/
	SFBool useAirabs;	/*field*/
} M_DirectiveSound;


typedef struct _tagHierarchical3DMesh
{
	BASE_NODE
	SFInt32 triangleBudget;	/*eventIn*/
	void (*on_triangleBudget)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFFloat level;	/*exposedField*/
	MFURL url;	/*field*/
	SFBool doneLoading;	/*eventOut*/
} M_Hierarchical3DMesh;


typedef struct _tagMaterialKey
{
	BASE_NODE
	SFBool isKeyed;	/*exposedField*/
	SFBool isRGB;	/*exposedField*/
	SFColor keyColor;	/*exposedField*/
	SFFloat lowThreshold;	/*exposedField*/
	SFFloat highThreshold;	/*exposedField*/
	SFFloat transparency;	/*exposedField*/
} M_MaterialKey;


typedef struct _tagPerceptualParameters
{
	BASE_NODE
	SFFloat sourcePresence;	/*exposedField*/
	SFFloat sourceWarmth;	/*exposedField*/
	SFFloat sourceBrilliance;	/*exposedField*/
	SFFloat roomPresence;	/*exposedField*/
	SFFloat runningReverberance;	/*exposedField*/
	SFFloat envelopment;	/*exposedField*/
	SFFloat lateReverberance;	/*exposedField*/
	SFFloat heavyness;	/*exposedField*/
	SFFloat liveness;	/*exposedField*/
	MFFloat omniDirectivity;	/*exposedField*/
	MFFloat directFilterGains;	/*exposedField*/
	MFFloat inputFilterGains;	/*exposedField*/
	SFFloat refDistance;	/*exposedField*/
	SFFloat freqLow;	/*exposedField*/
	SFFloat freqHigh;	/*exposedField*/
	SFTime timeLimit1;	/*exposedField*/
	SFTime timeLimit2;	/*exposedField*/
	SFTime timeLimit3;	/*exposedField*/
	SFTime modalDensity;	/*exposedField*/
} M_PerceptualParameters;


typedef struct _tagTemporalTransform
{
	BASE_NODE
	VRML_CHILDREN
	MFURL url;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime optimalDuration;	/*exposedField*/
	SFBool active;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	SFVec2f scalability;	/*exposedField*/
	MFInt32 stretchMode;	/*exposedField*/
	MFInt32 shrinkMode;	/*exposedField*/
	SFTime maxDelay;	/*exposedField*/
	SFTime actualDuration;	/*eventOut*/
} M_TemporalTransform;


typedef struct _tagTemporalGroup
{
	BASE_NODE
	VRML_CHILDREN
	SFBool costart;	/*field*/
	SFBool coend;	/*field*/
	SFBool meet;	/*field*/
	MFFloat priority;	/*exposedField*/
	SFBool isActive;	/*eventOut*/
	SFInt32 activeChild;	/*eventOut*/
} M_TemporalGroup;


typedef struct _tagServerCommand
{
	BASE_NODE
	SFBool trigger;	/*eventIn*/
	void (*on_trigger)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool enable;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFString command;	/*exposedField*/
} M_ServerCommand;


typedef struct _tagInputSensor
{
	BASE_NODE
	SFBool enabled;	/*exposedField*/
	SFCommandBuffer buffer;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFTime eventTime;	/*eventOut*/
} M_InputSensor;


typedef struct _tagMatteTexture
{
	BASE_NODE
	GF_Node *surfaceA;	/*field*/
	GF_Node *surfaceB;	/*field*/
	GF_Node *alphaSurface;	/*field*/
	SFString operation;	/*exposedField*/
	SFBool overwrite;	/*field*/
	SFFloat fraction;	/*exposedField*/
	MFFloat parameter;	/*exposedField*/
} M_MatteTexture;


typedef struct _tagMediaBuffer
{
	BASE_NODE
	SFFloat bufferSize;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFTime mediaStartTime;	/*exposedField*/
	SFTime mediaStopTime;	/*exposedField*/
	SFBool isBuffered;	/*eventOut*/
	SFBool enabled;	/*exposedField*/
} M_MediaBuffer;


typedef struct _tagMediaControl
{
	BASE_NODE
	MFURL url;	/*exposedField*/
	SFTime mediaStartTime;	/*exposedField*/
	SFTime mediaStopTime;	/*exposedField*/
	SFFloat mediaSpeed;	/*exposedField*/
	SFBool loop;	/*exposedField*/
	SFBool preRoll;	/*exposedField*/
	SFBool mute;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFBool isPreRolled;	/*eventOut*/
} M_MediaControl;


typedef struct _tagMediaSensor
{
	BASE_NODE
	MFURL url;	/*exposedField*/
	SFTime mediaCurrentTime;	/*eventOut*/
	SFTime streamObjectStartTime;	/*eventOut*/
	SFTime mediaDuration;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
	MFString info;	/*eventOut*/
} M_MediaSensor;


typedef struct _tagBitWrapper
{
	BASE_NODE
	GF_Node *node;	/*field*/
	SFInt32 type;	/*field*/
	MFURL url;	/*field*/
	SFString buffer;	/*field*/
	/*GPAC private*/
	u32 buffer_len;
} M_BitWrapper;


typedef struct _tagCoordinateInterpolator4D
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFVec4f keyValue;	/*exposedField*/
	MFVec4f value_changed;	/*eventOut*/
} M_CoordinateInterpolator4D;


typedef struct _tagDepthImage
{
	BASE_NODE
	GF_Node *diTexture;	/*field*/
	SFFloat farPlane;	/*field*/
	SFVec2f fieldOfView;	/*field*/
	SFFloat nearPlane;	/*field*/
	SFRotation orientation;	/*field*/
	SFBool orthographic;	/*field*/
	SFVec3f position;	/*field*/
} M_DepthImage;


typedef struct _tagFFD
{
	BASE_NODE
	VRML_CHILDREN
	MFVec4f controlPoint;	/*exposedField*/
	SFInt32 uDimension;	/*field*/
	MFFloat uKnot;	/*field*/
	SFInt32 uOrder;	/*field*/
	SFInt32 vDimension;	/*field*/
	MFFloat vKnot;	/*field*/
	SFInt32 vOrder;	/*field*/
	SFInt32 wDimension;	/*field*/
	MFFloat wKnot;	/*field*/
	SFInt32 wOrder;	/*field*/
} M_FFD;


typedef struct _tagImplicit
{
	BASE_NODE
	SFVec3f bboxSize;	/*exposedField*/
	MFFloat c;	/*exposedField*/
	MFInt32 densities;	/*exposedField*/
	SFBool dual;	/*exposedField*/
	SFBool solid;	/*exposedField*/
} M_Implicit;


typedef struct _tagXXLFM_Appearance
{
	BASE_NODE
	GF_Node *blendList;	/*exposedField*/
	GF_ChildNodeItem *lightMapList;	/*exposedField*/
	GF_ChildNodeItem *tileList;	/*exposedField*/
	GF_Node *vertexFrameList;	/*exposedField*/
} M_XXLFM_Appearance;


typedef struct _tagXXLFM_BlendList
{
	BASE_NODE
	MFInt32 blendMode;	/*exposedField*/
	MFInt32 lightMapIndex;	/*exposedField*/
} M_XXLFM_BlendList;


typedef struct _tagXXLFM_FrameList
{
	BASE_NODE
	MFInt32 index;	/*exposedField*/
	MFVec3f frame;	/*exposedField*/
} M_XXLFM_FrameList;


typedef struct _tagXXLFM_LightMap
{
	BASE_NODE
	SFVec3f biasRGB;	/*exposedField*/
	SFInt32 priorityLevel;	/*exposedField*/
	SFVec3f scaleRGB;	/*exposedField*/
	GF_Node *surfaceMapList;	/*exposedField*/
	GF_Node *viewMapList;	/*exposedField*/
} M_XXLFM_LightMap;


typedef struct _tagXXLFM_SurfaceMapList
{
	BASE_NODE
	MFInt32 tileIndex;	/*exposedField*/
	GF_Node *triangleCoordinate;	/*exposedField*/
	MFInt32 triangleIndex;	/*exposedField*/
	MFInt32 viewMapIndex;	/*exposedField*/
} M_XXLFM_SurfaceMapList;


typedef struct _tagXXLFM_ViewMapList
{
	BASE_NODE
	GF_Node *textureOrigin;	/*exposedField*/
	GF_Node *textureSize;	/*exposedField*/
	MFInt32 tileIndex;	/*exposedField*/
	MFInt32 vertexIndex;	/*exposedField*/
} M_XXLFM_ViewMapList;


typedef struct _tagMeshGrid
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_coordIndex;	/*eventIn*/
	void (*on_set_coordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_normalIndex;	/*eventIn*/
	void (*on_set_normalIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_texCoordIndex;	/*eventIn*/
	void (*on_set_texCoordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
	SFInt32 displayLevel;	/*exposedField*/
	SFInt32 filterType;	/*exposedField*/
	GF_Node *gridCoord;	/*exposedField*/
	SFInt32 hierarchicalLevel;	/*exposedField*/
	MFInt32 nLevels;	/*exposedField*/
	GF_Node *normal;	/*exposedField*/
	MFInt32 nSlices;	/*exposedField*/
	GF_Node *texCoord;	/*exposedField*/
	MFFloat vertexOffset;	/*exposedField*/
	MFInt32 vertexLink;	/*exposedField*/
	MFInt32 colorIndex;	/*field*/
	MFInt32 coordIndex;	/*field*/
	MFInt32 normalIndex;	/*field*/
	SFBool solid;	/*field*/
	MFInt32 texCoordIndex;	/*field*/
	SFBool isLoading;	/*eventOut*/
	MFInt32 nVertices;	/*eventOut*/
} M_MeshGrid;


typedef struct _tagNonLinearDeformer
{
	BASE_NODE
	SFVec3f axis;	/*exposedField*/
	MFFloat extend;	/*exposedField*/
	GF_Node *geometry;	/*exposedField*/
	SFFloat param;	/*exposedField*/
	SFInt32 type;	/*exposedField*/
} M_NonLinearDeformer;


typedef struct _tagNurbsCurve
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	MFVec4f controlPoint;	/*exposedField*/
	SFInt32 tessellation;	/*exposedField*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	MFFloat knot;	/*field*/
	SFInt32 order;	/*field*/
} M_NurbsCurve;


typedef struct _tagNurbsCurve2D
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	MFVec3f controlPoint;	/*exposedField*/
	SFInt32 tessellation;	/*exposedField*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	MFFloat knot;	/*field*/
	SFInt32 order;	/*field*/
} M_NurbsCurve2D;


typedef struct _tagNurbsSurface
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_texColorIndex;	/*eventIn*/
	void (*on_set_texColorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	MFVec4f controlPoint;	/*exposedField*/
	GF_Node *texCoord;	/*exposedField*/
	SFInt32 uTessellation;	/*exposedField*/
	SFInt32 vTessellation;	/*exposedField*/
	SFBool ccw;	/*field*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	SFBool solid;	/*field*/
	MFInt32 texColorIndex;	/*field*/
	SFInt32 uDimension;	/*field*/
	MFFloat uKnot;	/*field*/
	SFInt32 uOrder;	/*field*/
	SFInt32 vDimension;	/*field*/
	MFFloat vKnot;	/*field*/
	SFInt32 vOrder;	/*field*/
} M_NurbsSurface;


typedef struct _tagOctreeImage
{
	BASE_NODE
	GF_ChildNodeItem *images;	/*field*/
	MFInt32 octree;	/*field*/
	SFInt32 octreeResolution;	/*field*/
	MFInt32 voxelImageIndex;	/*field*/
} M_OctreeImage;


typedef struct _tagXXParticles
{
	BASE_NODE
	SFFloat creationRate;	/*exposedField*/
	SFFloat creationRateVariation;	/*exposedField*/
	SFFloat emitAlpha;	/*exposedField*/
	SFColor emitColor;	/*exposedField*/
	SFColor emitColorVariation;	/*exposedField*/
	SFVec3f emitterPosition;	/*exposedField*/
	SFVec3f emitVelocity;	/*exposedField*/
	SFVec3f emitVelocityVariation;	/*exposedField*/
	SFBool enabled;	/*exposedField*/
	SFFloat fadeAlpha;	/*exposedField*/
	SFColor fadeColor;	/*exposedField*/
	SFFloat fadeRate;	/*exposedField*/
	SFVec3f force;	/*exposedField*/
	GF_ChildNodeItem *influences;	/*exposedField*/
	GF_Node *init;	/*exposedField*/
	SFTime maxLifeTime;	/*exposedField*/
	SFFloat maxLifeTimeVariation;	/*exposedField*/
	SFInt32 maxParticles;	/*exposedField*/
	SFFloat minRange;	/*exposedField*/
	SFFloat maxRange;	/*exposedField*/
	GF_Node *primitive;	/*exposedField*/
	SFInt32 primitiveType;	/*exposedField*/
	SFFloat particleRadius;	/*exposedField*/
	SFFloat particleRadiusRate;	/*exposedField*/
	SFFloat particleRadiusVariation;	/*exposedField*/
} M_XXParticles;


typedef struct _tagXXParticleInitBox
{
	BASE_NODE
	SFFloat falloff;	/*exposedField*/
	SFVec3f size;	/*exposedField*/
} M_XXParticleInitBox;


typedef struct _tagXXPlanarObstacle
{
	BASE_NODE
	SFVec3f distance;	/*exposedField*/
	SFVec3f normal;	/*exposedField*/
	SFFloat reflection;	/*exposedField*/
	SFFloat absorption;	/*exposedField*/
} M_XXPlanarObstacle;


typedef struct _tagXXPointAttractor
{
	BASE_NODE
	SFFloat innerRadius;	/*exposedField*/
	SFFloat outerRadius;	/*exposedField*/
	SFVec3f position;	/*exposedField*/
	SFFloat rate;	/*exposedField*/
} M_XXPointAttractor;


typedef struct _tagPointTexture
{
	BASE_NODE
	MFColor color;	/*field*/
	MFInt32 depth;	/*field*/
	SFInt32 depthNbBits;	/*field*/
	SFInt32 height;	/*field*/
	SFInt32 width;	/*field*/
} M_PointTexture;


typedef struct _tagPositionAnimator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFVec2f fromTo;	/*exposedField*/
	MFFloat key;	/*exposedField*/
	MFRotation keyOrientation;	/*exposedField*/
	SFInt32 keyType;	/*exposedField*/
	MFVec2f keySpline;	/*exposedField*/
	MFVec3f keyValue;	/*exposedField*/
	SFInt32 keyValueType;	/*exposedField*/
	SFVec3f offset;	/*exposedField*/
	MFFloat weight;	/*exposedField*/
	SFVec3f endValue;	/*eventOut*/
	SFRotation rotation_changed;	/*eventOut*/
	SFVec3f value_changed;	/*eventOut*/
} M_PositionAnimator;


typedef struct _tagPositionAnimator2D
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFVec2f fromTo;	/*exposedField*/
	MFFloat key;	/*exposedField*/
	SFInt32 keyOrientation;	/*exposedField*/
	SFInt32 keyType;	/*exposedField*/
	MFVec2f keySpline;	/*exposedField*/
	MFVec2f keyValue;	/*exposedField*/
	SFInt32 keyValueType;	/*exposedField*/
	SFVec2f offset;	/*exposedField*/
	MFFloat weight;	/*exposedField*/
	SFVec2f endValue;	/*eventOut*/
	SFFloat rotation_changed;	/*eventOut*/
	SFVec2f value_changed;	/*eventOut*/
} M_PositionAnimator2D;


typedef struct _tagPositionInterpolator4D
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFFloat key;	/*exposedField*/
	MFVec4f keyValue;	/*exposedField*/
	SFVec4f value_changed;	/*eventOut*/
} M_PositionInterpolator4D;


typedef struct _tagProceduralTexture
{
	BASE_NODE
	SFBool aSmooth;	/*exposedField*/
	MFVec2f aWarpmap;	/*exposedField*/
	MFFloat aWeights;	/*exposedField*/
	SFBool bSmooth;	/*exposedField*/
	MFVec2f bWarpmap;	/*exposedField*/
	MFFloat bWeights;	/*exposedField*/
	SFInt32 cellWidth;	/*exposedField*/
	SFInt32 cellHeight;	/*exposedField*/
	MFColor color;	/*exposedField*/
	SFFloat distortion;	/*exposedField*/
	SFInt32 height;	/*exposedField*/
	SFInt32 roughness;	/*exposedField*/
	SFInt32 seed;	/*exposedField*/
	SFInt32 type;	/*exposedField*/
	SFBool xSmooth;	/*exposedField*/
	MFVec2f xWarpmap;	/*exposedField*/
	SFBool ySmooth;	/*exposedField*/
	MFVec2f yWarpmap;	/*exposedField*/
	SFInt32 width;	/*exposedField*/
	SFImage image_changed;	/*eventOut*/
} M_ProceduralTexture;


typedef struct _tagQuadric
{
	BASE_NODE
	SFVec3f bboxSize;	/*exposedField*/
	MFInt32 densities;	/*exposedField*/
	SFBool dual;	/*exposedField*/
	SFVec4f P0;	/*exposedField*/
	SFVec4f P1;	/*exposedField*/
	SFVec4f P2;	/*exposedField*/
	SFVec4f P3;	/*exposedField*/
	SFVec4f P4;	/*exposedField*/
	SFVec4f P5;	/*exposedField*/
	SFBool solid;	/*exposedField*/
} M_Quadric;


typedef struct _tagSBBone
{
	BASE_NODE
	VRML_CHILDREN
	SFInt32 boneID;	/*exposedField*/
	SFVec3f center;	/*exposedField*/
	SFVec3f endpoint;	/*exposedField*/
	SFInt32 falloff;	/*exposedField*/
	SFInt32 ikChainPosition;	/*exposedField*/
	MFFloat ikPitchLimit;	/*exposedField*/
	MFFloat ikRollLimit;	/*exposedField*/
	MFFloat ikTxLimit;	/*exposedField*/
	MFFloat ikTyLimit;	/*exposedField*/
	MFFloat ikTzLimit;	/*exposedField*/
	MFFloat ikYawLimit;	/*exposedField*/
	SFRotation rotation;	/*exposedField*/
	SFInt32 rotationOrder;	/*exposedField*/
	SFVec3f scale;	/*exposedField*/
	SFRotation scaleOrientation;	/*exposedField*/
	MFFloat sectionInner;	/*exposedField*/
	MFFloat sectionOuter;	/*exposedField*/
	MFFloat sectionPosition;	/*exposedField*/
	MFInt32 skinCoordIndex;	/*exposedField*/
	MFFloat skinCoordWeight;	/*exposedField*/
	SFVec3f translation;	/*exposedField*/
} M_SBBone;


typedef struct _tagSBMuscle
{
	BASE_NODE
	SFInt32 falloff;	/*exposedField*/
	GF_Node *muscleCurve;	/*exposedField*/
	SFInt32 muscleID;	/*exposedField*/
	SFInt32 radius;	/*exposedField*/
	MFInt32 skinCoordIndex;	/*exposedField*/
	MFFloat skinCoordWeight;	/*exposedField*/
} M_SBMuscle;


typedef struct _tagSBSegment
{
	BASE_NODE
	VRML_CHILDREN
	SFVec3f centerOfMass;	/*exposedField*/
	SFFloat mass;	/*exposedField*/
	MFVec3f momentsOfInertia;	/*exposedField*/
	SFString name;	/*exposedField*/
} M_SBSegment;


typedef struct _tagSBSite
{
	BASE_NODE
	VRML_CHILDREN
	SFVec3f center;	/*exposedField*/
	SFString name;	/*exposedField*/
	SFRotation rotation;	/*exposedField*/
	SFVec3f scale;	/*exposedField*/
	SFRotation scaleOrientation;	/*exposedField*/
	SFVec3f translation;	/*exposedField*/
} M_SBSite;


typedef struct _tagSBSkinnedModel
{
	BASE_NODE
	GF_ChildNodeItem *bones;	/*exposedField*/
	SFVec3f center;	/*exposedField*/
	GF_ChildNodeItem *muscles;	/*exposedField*/
	SFString name;	/*exposedField*/
	SFRotation rotation;	/*exposedField*/
	GF_ChildNodeItem *segments;	/*exposedField*/
	SFVec3f scale;	/*exposedField*/
	SFRotation scaleOrientation;	/*exposedField*/
	GF_ChildNodeItem *sites;	/*exposedField*/
	GF_ChildNodeItem *skeleton;	/*exposedField*/
	GF_ChildNodeItem *skin;	/*exposedField*/
	GF_Node *skinCoord;	/*exposedField*/
	GF_Node *skinNormal;	/*exposedField*/
	SFVec3f translation;	/*exposedField*/
	GF_Node *weighsComputationSkinCoord;	/*exposedField*/
} M_SBSkinnedModel;


typedef struct _tagSBVCAnimation
{
	BASE_NODE
	MFURL url;	/*exposedField*/
	GF_ChildNodeItem *virtualCharacters;	/*exposedField*/
} M_SBVCAnimation;


typedef struct _tagScalarAnimator
{
	BASE_NODE
	SFFloat set_fraction;	/*eventIn*/
	void (*on_set_fraction)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFVec2f fromTo;	/*exposedField*/
	MFFloat key;	/*exposedField*/
	SFInt32 keyType;	/*exposedField*/
	MFVec2f keySpline;	/*exposedField*/
	MFFloat keyValue;	/*exposedField*/
	SFInt32 keyValueType;	/*exposedField*/
	SFFloat offset;	/*exposedField*/
	MFFloat weight;	/*exposedField*/
	SFFloat endValue;	/*eventOut*/
	SFFloat value_changed;	/*eventOut*/
} M_ScalarAnimator;


typedef struct _tagSimpleTexture
{
	BASE_NODE
	GF_Node *depth;	/*field*/
	GF_Node *texture;	/*field*/
} M_SimpleTexture;


typedef struct _tagSolidRep
{
	BASE_NODE
	SFVec3f bboxSize;	/*exposedField*/
	MFInt32 densityList;	/*exposedField*/
	GF_Node *solidTree;	/*exposedField*/
} M_SolidRep;


typedef struct _tagSubdivisionSurface
{
	BASE_NODE
	MFInt32 set_colorIndex;	/*eventIn*/
	void (*on_set_colorIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_coordIndex;	/*eventIn*/
	void (*on_set_coordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_cornerVertexIndex;	/*eventIn*/
	void (*on_set_cornerVertexIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_creaseEdgeIndex;	/*eventIn*/
	void (*on_set_creaseEdgeIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_creaseVertexIndex;	/*eventIn*/
	void (*on_set_creaseVertexIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_dartVertexIndex;	/*eventIn*/
	void (*on_set_dartVertexIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFInt32 set_texCoordIndex;	/*eventIn*/
	void (*on_set_texCoordIndex)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *color;	/*exposedField*/
	GF_Node *coord;	/*exposedField*/
	GF_Node *texCoord;	/*exposedField*/
	GF_ChildNodeItem *sectors;	/*exposedField*/
	SFInt32 subdivisionLevel;	/*exposedField*/
	SFInt32 subdivisionType;	/*exposedField*/
	SFInt32 subdivisionSubType;	/*exposedField*/
	MFInt32 invisibleEdgeIndex;	/*field*/
	SFBool ccw;	/*field*/
	MFInt32 colorIndex;	/*field*/
	SFBool colorPerVertex;	/*field*/
	SFBool convex;	/*field*/
	MFInt32 coordIndex;	/*field*/
	MFInt32 cornerVertexIndex;	/*field*/
	MFInt32 creaseEdgeIndex;	/*field*/
	MFInt32 creaseVertexIndex;	/*field*/
	MFInt32 dartVertexIndex;	/*field*/
	SFBool solid;	/*field*/
	MFInt32 texCoordIndex;	/*field*/
} M_SubdivisionSurface;


typedef struct _tagSubdivSurfaceSector
{
	BASE_NODE
	SFFloat flatness;	/*exposedField*/
	SFVec3f normal;	/*exposedField*/
	SFFloat normalTension;	/*exposedField*/
	SFInt32 _tag;	/*exposedField*/
	SFFloat theta;	/*exposedField*/
	SFInt32 faceIndex;	/*field*/
	SFInt32 vertexIndex;	/*field*/
} M_SubdivSurfaceSector;


typedef struct _tagWaveletSubdivisionSurface
{
	BASE_NODE
	GF_Node *baseMesh;	/*exposedField*/
	SFFloat fieldOfView;	/*exposedField*/
	SFFloat frequency;	/*exposedField*/
	SFInt32 quality;	/*exposedField*/
} M_WaveletSubdivisionSurface;


typedef struct _tagClipper2D
{
	BASE_NODE
	VRML_CHILDREN
	GF_Node *geometry;	/*exposedField*/
	SFBool inside;	/*exposedField*/
	GF_Node *transform;	/*exposedField*/
	SFBool XOR;	/*exposedField*/
} M_Clipper2D;


typedef struct _tagColorTransform
{
	BASE_NODE
	VRML_CHILDREN
	SFFloat mrr;	/*exposedField*/
	SFFloat mrg;	/*exposedField*/
	SFFloat mrb;	/*exposedField*/
	SFFloat mra;	/*exposedField*/
	SFFloat tr;	/*exposedField*/
	SFFloat mgr;	/*exposedField*/
	SFFloat mgg;	/*exposedField*/
	SFFloat mgb;	/*exposedField*/
	SFFloat mga;	/*exposedField*/
	SFFloat tg;	/*exposedField*/
	SFFloat mbr;	/*exposedField*/
	SFFloat mbg;	/*exposedField*/
	SFFloat mbb;	/*exposedField*/
	SFFloat mba;	/*exposedField*/
	SFFloat tb;	/*exposedField*/
	SFFloat mar;	/*exposedField*/
	SFFloat mag;	/*exposedField*/
	SFFloat mab;	/*exposedField*/
	SFFloat maa;	/*exposedField*/
	SFFloat ta;	/*exposedField*/
} M_ColorTransform;


typedef struct _tagEllipse
{
	BASE_NODE
	SFVec2f radius;	/*exposedField*/
} M_Ellipse;


typedef struct _tagLinearGradient
{
	BASE_NODE
	SFVec2f endPoint;	/*exposedField*/
	MFFloat key;	/*exposedField*/
	MFColor keyValue;	/*exposedField*/
	MFFloat opacity;	/*exposedField*/
	SFInt32 spreadMethod;	/*exposedField*/
	SFVec2f startPoint;	/*exposedField*/
	GF_Node *transform;	/*exposedField*/
} M_LinearGradient;


typedef struct _tagPathLayout
{
	BASE_NODE
	VRML_CHILDREN
	GF_Node *geometry;	/*exposedField*/
	MFInt32 alignment;	/*exposedField*/
	SFFloat pathOffset;	/*exposedField*/
	SFFloat spacing;	/*exposedField*/
	SFBool reverseLayout;	/*exposedField*/
	SFInt32 wrapMode;	/*exposedField*/
	SFBool splitText;	/*exposedField*/
} M_PathLayout;


typedef struct _tagRadialGradient
{
	BASE_NODE
	SFVec2f center;	/*exposedField*/
	SFVec2f focalPoint;	/*exposedField*/
	MFFloat key;	/*exposedField*/
	MFColor keyValue;	/*exposedField*/
	MFFloat opacity;	/*exposedField*/
	SFFloat radius;	/*exposedField*/
	SFInt32 spreadMethod;	/*exposedField*/
	GF_Node *transform;	/*exposedField*/
} M_RadialGradient;


typedef struct _tagSynthesizedTexture
{
	BASE_NODE
	MFVec3f translation;	/*exposedField*/
	MFRotation rotation;	/*exposedField*/
	SFInt32 pixelWidth;	/*exposedField*/
	SFInt32 pixelHeight;	/*exposedField*/
	SFBool loop;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	MFURL url;	/*exposedField*/
	SFTime duration_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_SynthesizedTexture;


typedef struct _tagTransformMatrix2D
{
	BASE_NODE
	VRML_CHILDREN
	SFFloat mxx;	/*exposedField*/
	SFFloat mxy;	/*exposedField*/
	SFFloat tx;	/*exposedField*/
	SFFloat myx;	/*exposedField*/
	SFFloat myy;	/*exposedField*/
	SFFloat ty;	/*exposedField*/
} M_TransformMatrix2D;


typedef struct _tagViewport
{
	BASE_NODE
	SFBool set_bind;	/*eventIn*/
	void (*on_set_bind)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFVec2f position;	/*exposedField*/
	SFVec2f size;	/*exposedField*/
	SFFloat orientation;	/*exposedField*/
	MFInt32 alignment;	/*exposedField*/
	SFInt32 fit;	/*exposedField*/
	SFString description;	/*field*/
	SFTime bindTime;	/*eventOut*/
	SFBool isBound;	/*eventOut*/
} M_Viewport;


typedef struct _tagXCurve2D
{
	BASE_NODE
	GF_Node *point;	/*exposedField*/
	SFFloat fineness;	/*exposedField*/
	MFInt32 type;	/*exposedField*/
} M_XCurve2D;


typedef struct _tagXFontStyle
{
	BASE_NODE
	MFString fontName;	/*exposedField*/
	SFBool horizontal;	/*exposedField*/
	MFString justify;	/*exposedField*/
	SFString language;	/*exposedField*/
	SFBool leftToRight;	/*exposedField*/
	SFFloat size;	/*exposedField*/
	SFString stretch;	/*exposedField*/
	SFFloat letterSpacing;	/*exposedField*/
	SFFloat wordSpacing;	/*exposedField*/
	SFInt32 weight;	/*exposedField*/
	SFBool fontKerning;	/*exposedField*/
	SFString style;	/*exposedField*/
	SFBool topToBottom;	/*exposedField*/
	MFString featureName;	/*exposedField*/
	MFInt32 featureStartOffset;	/*exposedField*/
	MFInt32 featureLength;	/*exposedField*/
	MFInt32 featureValue;	/*exposedField*/
} M_XFontStyle;


typedef struct _tagXLineProperties
{
	BASE_NODE
	SFColor lineColor;	/*exposedField*/
	SFInt32 lineStyle;	/*exposedField*/
	SFBool isCenterAligned;	/*exposedField*/
	SFBool isScalable;	/*exposedField*/
	SFInt32 lineCap;	/*exposedField*/
	SFInt32 lineJoin;	/*exposedField*/
	SFFloat miterLimit;	/*exposedField*/
	SFFloat transparency;	/*exposedField*/
	SFFloat width;	/*exposedField*/
	SFFloat dashOffset;	/*exposedField*/
	MFFloat dashes;	/*exposedField*/
	GF_Node *texture;	/*exposedField*/
	GF_Node *textureTransform;	/*exposedField*/
} M_XLineProperties;


typedef struct _tagAdvancedAudioBuffer
{
	BASE_NODE
	VRML_CHILDREN
	SFBool loop;	/*exposedField*/
	SFFloat pitch;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	SFTime startLoadTime;	/*exposedField*/
	SFTime stopLoadTime;	/*exposedField*/
	SFInt32 loadMode;	/*exposedField*/
	SFInt32 numAccumulatedBlocks;	/*exposedField*/
	SFInt32 deleteBlock;	/*exposedField*/
	SFInt32 playBlock;	/*exposedField*/
	SFFloat length;	/*exposedField*/
	SFInt32 numChan;	/*field*/
	MFInt32 phaseGroup;	/*field*/
	SFTime duration_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_AdvancedAudioBuffer;


typedef struct _tagAudioChannelConfig
{
	BASE_NODE
	VRML_CHILDREN
	SFInt32 generalChannelFormat;	/*exposedField*/
	SFInt32 fixedPreset;	/*exposedField*/
	SFInt32 fixedPresetSubset;	/*exposedField*/
	SFInt32 fixedPresetAddInf;	/*exposedField*/
	MFInt32 channelCoordinateSystems;	/*exposedField*/
	MFFloat channelSoundLocation;	/*exposedField*/
	MFInt32 channelDirectionalPattern;	/*exposedField*/
	MFVec3f channelDirection;	/*exposedField*/
	SFInt32 ambResolution2D;	/*exposedField*/
	SFInt32 ambResolution3D;	/*exposedField*/
	SFInt32 ambEncodingConvention;	/*exposedField*/
	SFFloat ambNfcReferenceDistance;	/*exposedField*/
	SFFloat ambSoundSpeed;	/*exposedField*/
	SFInt32 ambArrangementRule;	/*exposedField*/
	SFInt32 ambRecombinationPreset;	/*exposedField*/
	MFInt32 ambComponentIndex;	/*exposedField*/
	MFFloat ambBackwardMatrix;	/*exposedField*/
	MFInt32 ambSoundfieldResolution;	/*exposedField*/
	SFInt32 numChannel;	/*field*/
} M_AudioChannelConfig;


typedef struct _tagDepthImageV2
{
	BASE_NODE
	GF_Node *diTexture;	/*field*/
	SFFloat farPlane;	/*field*/
	SFVec2f fieldOfView;	/*field*/
	SFFloat nearPlane;	/*field*/
	SFRotation orientation;	/*field*/
	SFBool orthographic;	/*field*/
	SFVec3f position;	/*field*/
	SFVec2f splatMinMax;	/*field*/
} M_DepthImageV2;


typedef struct _tagMorphShape
{
	BASE_NODE
	GF_Node *baseShape;	/*exposedField*/
	SFInt32 morphID;	/*exposedField*/
	GF_ChildNodeItem *targetShapes;	/*exposedField*/
	MFFloat weights;	/*exposedField*/
} M_MorphShape;


typedef struct _tagMultiTexture
{
	BASE_NODE
	SFFloat alpha;	/*exposedField*/
	SFColor color;	/*exposedField*/
	MFInt32 function;	/*exposedField*/
	MFInt32 mode;	/*exposedField*/
	MFInt32 source;	/*exposedField*/
	GF_ChildNodeItem *texture;	/*exposedField*/
	MFVec3f cameraVector;	/*exposedField*/
	SFBool transparent;	/*exposedField*/
} M_MultiTexture;


typedef struct _tagPointTextureV2
{
	BASE_NODE
	MFColor color;	/*field*/
	MFInt32 depth;	/*field*/
	SFInt32 depthNbBits;	/*field*/
	SFInt32 height;	/*field*/
	GF_Node *normal;	/*field*/
	MFVec3f splatU;	/*field*/
	MFVec3f splatV;	/*field*/
	SFInt32 width;	/*field*/
} M_PointTextureV2;


typedef struct _tagSBVCAnimationV2
{
	BASE_NODE
	MFInt32 activeUrlIndex;	/*exposedField*/
	SFBool loop;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	SFFloat transitionTime;	/*exposedField*/
	MFURL url;	/*exposedField*/
	GF_ChildNodeItem *virtualCharacters;	/*exposedField*/
	SFTime duration_changed;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
} M_SBVCAnimationV2;


typedef struct _tagSimpleTextureV2
{
	BASE_NODE
	GF_Node *depth;	/*field*/
	GF_Node *normal;	/*field*/
	GF_Node *splatU;	/*field*/
	GF_Node *splatV;	/*field*/
	GF_Node *texture;	/*field*/
} M_SimpleTextureV2;


typedef struct _tagSurroundingSound
{
	BASE_NODE
	GF_Node *source;	/*exposedField*/
	SFFloat intensity;	/*exposedField*/
	SFFloat distance;	/*exposedField*/
	SFVec3f location;	/*exposedField*/
	SFFloat distortionFactor;	/*exposedField*/
	SFRotation orientation;	/*exposedField*/
	SFBool isTransformable;	/*exposedField*/
} M_SurroundingSound;


typedef struct _tagTransform3DAudio
{
	BASE_NODE
	VRML_CHILDREN
	SFFloat thirdCenterCoordinate;	/*exposedField*/
	SFVec3f rotationVector;	/*exposedField*/
	SFFloat thirdScaleCoordinate;	/*exposedField*/
	SFVec3f scaleOrientationVector;	/*exposedField*/
	SFFloat thirdTranslationCoordinate;	/*exposedField*/
	SFRotation coordinateTransform;	/*exposedField*/
} M_Transform3DAudio;


typedef struct _tagWideSound
{
	BASE_NODE
	GF_Node *source;	/*exposedField*/
	SFFloat intensity;	/*exposedField*/
	SFVec3f location;	/*exposedField*/
	SFBool spatialize;	/*exposedField*/
	GF_Node *perceptualParameters;	/*exposedField*/
	SFBool roomEffect;	/*exposedField*/
	SFInt32 shape;	/*exposedField*/
	MFFloat size;	/*exposedField*/
	SFVec3f direction;	/*exposedField*/
	SFFloat density;	/*exposedField*/
	SFInt32 diffuseSelect;	/*exposedField*/
	SFFloat decorrStrength;	/*exposedField*/
	SFFloat speedOfSound;	/*field*/
	SFFloat distance;	/*field*/
	SFBool useAirabs;	/*field*/
} M_WideSound;


typedef struct _tagScoreShape
{
	BASE_NODE
	GF_Node *score;	/*exposedField*/
	GF_Node *geometry;	/*exposedField*/
} M_ScoreShape;


typedef struct _tagMusicScore
{
	BASE_NODE
	SFBool executeCommand;	/*eventIn*/
	void (*on_executeCommand)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFString gotoLabel;	/*eventIn*/
	void (*on_gotoLabel)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFInt32 gotoMeasure;	/*eventIn*/
	void (*on_gotoMeasure)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFTime highlightTimePosition;	/*eventIn*/
	void (*on_highlightTimePosition)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFVec3f mousePosition;	/*eventIn*/
	void (*on_mousePosition)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	MFString argumentsOnExecute;	/*exposedField*/
	SFString commandOnExecute;	/*exposedField*/
	SFInt32 firstVisibleMeasure;	/*exposedField*/
	SFBool hyperlinkEnable;	/*exposedField*/
	SFBool loop;	/*exposedField*/
	MFString partsLyrics;	/*exposedField*/
	MFInt32 partsShown;	/*exposedField*/
	SFTime scoreOffset;	/*exposedField*/
	SFVec2f size;	/*exposedField*/
	SFFloat speed;	/*exposedField*/
	SFTime startTime;	/*exposedField*/
	SFTime stopTime;	/*exposedField*/
	SFFloat transpose;	/*exposedField*/
	MFURL url;	/*exposedField*/
	MFURL urlSA;	/*exposedField*/
	SFString viewType;	/*exposedField*/
	SFString activatedLink;	/*eventOut*/
	MFString availableCommands;	/*eventOut*/
	MFString availableLabels;	/*eventOut*/
	MFString availableLyricLanguages;	/*eventOut*/
	MFString availableViewTypes;	/*eventOut*/
	SFBool isActive;	/*eventOut*/
	SFVec3f highlightPosition;	/*eventOut*/
	SFInt32 lastVisibleMeasure;	/*eventOut*/
	SFInt32 numMeasures;	/*eventOut*/
	MFString partNames;	/*eventOut*/
} M_MusicScore;


typedef struct _tagFootPrintSetNode
{
	BASE_NODE
	VRML_CHILDREN
} M_FootPrintSetNode;


typedef struct _tagFootPrintNode
{
	BASE_NODE
	SFInt32 index;	/*exposedField*/
	GF_Node *footprint;	/*exposedField*/
} M_FootPrintNode;


typedef struct _tagBuildingPartNode
{
	BASE_NODE
	SFInt32 index;	/*exposedField*/
	GF_Node *footprint;	/*exposedField*/
	SFInt32 buildingIndex;	/*exposedField*/
	SFFloat height;	/*exposedField*/
	SFFloat altitude;	/*exposedField*/
	GF_ChildNodeItem *alternativeGeometry;	/*exposedField*/
	GF_ChildNodeItem *roofs;	/*exposedField*/
	GF_ChildNodeItem *facades;	/*exposedField*/
} M_BuildingPartNode;


typedef struct _tagRoofNode
{
	BASE_NODE
	SFInt32 Type;	/*exposedField*/
	SFFloat Height;	/*exposedField*/
	MFFloat SlopeAngle;	/*exposedField*/
	SFFloat EaveProjection;	/*exposedField*/
	SFInt32 EdgeSupportIndex;	/*exposedField*/
	SFURL RoofTextureURL;	/*exposedField*/
	SFBool IsGenericTexture;	/*exposedField*/
	SFFloat TextureXScale;	/*exposedField*/
	SFFloat TextureYScale;	/*exposedField*/
	SFFloat TextureXPosition;	/*exposedField*/
	SFFloat TextureYPosition;	/*exposedField*/
	SFFloat TextureRotation;	/*exposedField*/
} M_RoofNode;


typedef struct _tagFacadeNode
{
	BASE_NODE
	SFFloat WidthRatio;	/*exposedField*/
	SFFloat XScale;	/*exposedField*/
	SFFloat YScale;	/*exposedField*/
	SFFloat XPosition;	/*exposedField*/
	SFFloat YPosition;	/*exposedField*/
	SFFloat XRepeatInterval;	/*exposedField*/
	SFFloat YRepeatInterval;	/*exposedField*/
	SFBool Repeat;	/*exposedField*/
	SFURL FacadePrimitive;	/*exposedField*/
	SFInt32 NbStories;	/*exposedField*/
	MFInt32 NbFacadeCellsByStorey;	/*exposedField*/
	MFFloat StoreyHeight;	/*exposedField*/
	GF_ChildNodeItem *FacadeCellsArray;	/*exposedField*/
} M_FacadeNode;


typedef struct _tagShadow
{
	BASE_NODE
	VRML_CHILDREN
	SFBool enabled;	/*exposedField*/
	SFBool cast;	/*exposedField*/
	SFBool receive;	/*exposedField*/
	SFFloat penumbra;	/*exposedField*/
} M_Shadow;


typedef struct _tagCacheTexture
{
	BASE_NODE
	SFInt32 objectTypeIndication;	/*field*/
	SFString decoderSpecificInfo;	/*field*/
	SFString image;	/*field*/
	SFString cacheURL;	/*field*/
	MFURL cacheOD;	/*field*/
	SFInt32 expirationDate;	/*field*/
	SFBool repeatS;	/*field*/
	SFBool repeatT;	/*field*/
	/*GPAC private*/
	u8 *data;
	u32 data_len;
} M_CacheTexture;


typedef struct _tagEnvironmentTest
{
	BASE_NODE
	SFBool evaluate;	/*eventIn*/
	void (*on_evaluate)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool enabled;	/*exposedField*/
	SFInt32 parameter;	/*exposedField*/
	SFString compareValue;	/*exposedField*/
	SFBool evaluateOnChange;	/*exposedField*/
	SFBool valueLarger;	/*eventOut*/
	SFBool valueEqual;	/*eventOut*/
	SFBool valueSmaller;	/*eventOut*/
	SFString parameterValue;	/*eventOut*/
} M_EnvironmentTest;


typedef struct _tagKeyNavigator
{
	BASE_NODE
	SFBool setFocus;	/*eventIn*/
	void (*on_setFocus)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	GF_Node *sensor;	/*exposedField*/
	GF_Node *left;	/*exposedField*/
	GF_Node *right;	/*exposedField*/
	GF_Node *up;	/*exposedField*/
	GF_Node *down;	/*exposedField*/
	GF_Node *select;	/*exposedField*/
	GF_Node *quit;	/*exposedField*/
	SFFloat step;	/*exposedField*/
	SFBool focusSet;	/*eventOut*/
} M_KeyNavigator;


typedef struct _tagSpacePartition
{
	BASE_NODE
	VRML_CHILDREN
	SFURL SPStream;	/*exposedField*/
} M_SpacePartition;


typedef struct _tagStorage
{
	BASE_NODE
	SFBool forceSave;	/*eventIn*/
	void (*on_forceSave)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool forceRestore;	/*eventIn*/
	void (*on_forceRestore)(GF_Node *pThis, struct _route *route);	/*eventInHandler*/
	SFBool _auto;	/*exposedField*/
	SFInt32 expireAfter;	/*field*/
	SFString name;	/*field*/
	MFAttrRef storageList;	/*field*/
} M_Storage;


/*NodeDataType tags*/
enum {
	NDT_SFWorldNode = 1,
	NDT_SF3DNode,
	NDT_SF2DNode,
	NDT_SFStreamingNode,
	NDT_SFAppearanceNode,
	NDT_SFAudioNode,
	NDT_SFBackground3DNode,
	NDT_SFBackground2DNode,
	NDT_SFGeometryNode,
	NDT_SFColorNode,
	NDT_SFTextureNode,
	NDT_SFCoordinateNode,
	NDT_SFCoordinate2DNode,
	NDT_SFExpressionNode,
	NDT_SFFaceDefMeshNode,
	NDT_SFFaceDefTablesNode,
	NDT_SFFaceDefTransformNode,
	NDT_SFFAPNode,
	NDT_SFFDPNode,
	NDT_SFFITNode,
	NDT_SFFogNode,
	NDT_SFFontStyleNode,
	NDT_SFTopNode,
	NDT_SFLinePropertiesNode,
	NDT_SFMaterialNode,
	NDT_SFNavigationInfoNode,
	NDT_SFNormalNode,
	NDT_SFTextureCoordinateNode,
	NDT_SFTextureTransformNode,
	NDT_SFViewpointNode,
	NDT_SFVisemeNode,
	NDT_SFViewportNode,
	NDT_SFBAPNode,
	NDT_SFBDPNode,
	NDT_SFBodyDefTableNode,
	NDT_SFBodySegmentConnectionHintNode,
	NDT_SFPerceptualParameterNode,
	NDT_SFTemporalNode,
	NDT_SFDepthImageNode,
	NDT_SFBlendListNode,
	NDT_SFFrameListNode,
	NDT_SFLightMapNode,
	NDT_SFSurfaceMapNode,
	NDT_SFViewMapNode,
	NDT_SFParticleInitializerNode,
	NDT_SFInfluenceNode,
	NDT_SFDepthTextureNode,
	NDT_SFSBBoneNode,
	NDT_SFSBMuscleNode,
	NDT_SFSBSegmentNode,
	NDT_SFSBSiteNode,
	NDT_SFBaseMeshNode,
	NDT_SFSubdivSurfaceSectorNode,
	NDT_SFMusicScoreNode
};

/*All BIFS versions handled*/
#define GF_BIFS_NUM_VERSION		10

enum {
	GF_BIFS_V1 = 1,
	GF_BIFS_V2,
	GF_BIFS_V3,
	GF_BIFS_V4,
	GF_BIFS_V5,
	GF_BIFS_V6,
	GF_BIFS_V7,
	GF_BIFS_V8,
	GF_BIFS_V9,
	GF_BIFS_V10,
	GF_BIFS_LAST_VERSION = GF_BIFS_V10
};



#endif /*GPAC_DISABLE_VRML*/

#ifdef __cplusplus
}
#endif



#endif		/*_nodes_mpeg4_H*/