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 | #include <iostream>
#include <map>
#include "FBiGeom_MOAB.hpp"
#include "moab/GeomTopoTool.hpp"
#include "moab/OrientedBoxTreeTool.hpp"
#include "moab/CartVect.hpp"
#include "moab/FileOptions.hpp"
#include "MBTagConventions.hpp"
#include <cstdlib>
#include <cstring>
#include <map>
#include <cassert>
using namespace moab;
static int compare_no_case1( const char* str1, const char* str2, size_t n )
{
for( size_t i = 1; i != n && *str1 && toupper( *str1 ) == toupper( *str2 ); ++i, ++str1, ++str2 )
;
return toupper( *str2 ) - toupper( *str1 );
}
// Filter out non-MOAB options and remove the "moab:" prefix
static std::string filter_options1( const char* begin, const char* end )
{
const char* opt_begin = begin;
const char* opt_end = begin;
std::string filtered;
bool first = true;
while( opt_end != end )
{
opt_end = std::find( opt_begin, end, ' ' );
if( opt_end - opt_begin >= 5 && compare_no_case1( opt_begin, "moab:", 5 ) == 0 )
{
if( !first ) filtered.push_back( ';' );
first = false;
filtered.append( opt_begin + 5, opt_end );
}
opt_begin = opt_end + 1;
}
return filtered;
}
bool debug_igeom = false;
bool Debug_surf_eval = false;
#define COPY_RANGE( r, vec ) \
{ \
EntityHandle* tmp_ptr = reinterpret_cast< EntityHandle* >( vec ); \
std::copy( ( r ).begin(), ( r ).end(), tmp_ptr ); \
}
#define TAG_HANDLE( tagh ) reinterpret_cast< Tag >( tagh )
#define COPY_DOUBLEVEC( r, vec ) \
{ \
double* tmp_ptr = reinterpret_cast< double* >( vec ); \
std::copy( ( r ).begin(), ( r ).end(), tmp_ptr ); \
}
void FBiGeom_getDescription( FBiGeom_Instance instance, char* descr, int descr_len )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
iMesh_getDescription( IMESH_INSTANCE( instance ), descr, descr_len );
}
void FBiGeom_getErrorType( FBiGeom_Instance instance, /*out*/ int* error_type )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_geterrortype' is never used.
{
iMesh_getErrorType( IMESH_INSTANCE( instance ), /*out*/ error_type );
}
void FBiGeom_newGeom( char const* options, FBiGeom_Instance* instance_out, int* err, int options_len )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
std::string tmp_options = filter_options1( options, options + options_len );
FileOptions opts( tmp_options.c_str() );
// process some options?
MBiGeom** mbigeom = reinterpret_cast< MBiGeom** >( instance_out );
*mbigeom = NULL;
*mbigeom = new MBiGeom();
*err = iBase_SUCCESS;
}
void FBiGeom_dtor( FBiGeom_Instance instance, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
MBiGeom** mbigeom = reinterpret_cast< MBiGeom** >( &instance );
if( *mbigeom ) delete *mbigeom;
*err = iBase_SUCCESS;
}
void FBiGeom_newGeomFromMesh( iMesh_Instance mesh,
iBase_EntitySetHandle set,
const char* options,
FBiGeom_Instance* geom,
int* err,
int )
{
MBiMesh* mbimesh = reinterpret_cast< MBiMesh* >( mesh );
moab::Interface* mbi = mbimesh->mbImpl;
moab::EntityHandle rootSet = reinterpret_cast< moab::EntityHandle >( set );
moab::GeomTopoTool* gtt = new moab::GeomTopoTool( mbi, true, rootSet );
bool smooth = false; // decide from options
char smth[] = "SMOOTH;";
const char* res = strstr( options, smth );
if( res != NULL ) smooth = true;
moab::FBEngine* fbe = new moab::FBEngine( mbi, gtt, smooth );
MBiGeom** mbigeom = reinterpret_cast< MBiGeom** >( geom );
*mbigeom = NULL;
*mbigeom = new MBiGeom( mbimesh, fbe );
// will do now the initialization of the engine;
// heavy duty computation
fbe->Init();
*err = iBase_SUCCESS;
}
// corresponding to constructor 2, from iMesh instance
void FBiGeom_dtor2( FBiGeom_Instance instance, int* err )
{
moab::FBEngine* fbe = FBE_cast( instance );
if( fbe )
{
moab::GeomTopoTool* gtt = fbe->get_gtt();
if( gtt ) delete gtt;
delete fbe;
}
MBiGeom** mbigeom = reinterpret_cast< MBiGeom** >( &instance );
if( *mbigeom ) delete *mbigeom;
*err = iBase_SUCCESS;
}
void FBiGeom_load( FBiGeom_Instance instance, char const* name, char const* options, int* err, int, int options_len )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
// first remove option for smooth facetting
const char smth[] = "SMOOTH;";
bool smooth = false;
const char* res = NULL;
char* reducedOptions = NULL;
bool localReduce = false;
if( options ) res = strstr( options, smth );
if( res )
{
// extract that option, will not be recognized by our moab/imesh
reducedOptions = new char[options_len - 6];
localReduce = true;
int preLen = (int)( res - options );
strncpy( reducedOptions, options, preLen );
int postLen = options_len - 7 - preLen;
char* tmp = reducedOptions + preLen;
strncpy( tmp, res + 7, postLen );
reducedOptions[options_len - 7] = 0;
std::cout << reducedOptions << std::endl;
smooth = true;
}
else
{
reducedOptions = const_cast< char* >( options );
}
// load mesh-based geometry
const EntityHandle* file_set = 0;
ErrorCode rval = MBI->load_file( name, file_set, reducedOptions );CHKERR( rval, "can't load mesh file" );
if( localReduce ) delete[] reducedOptions;
FBEngine* fbe = FBE_cast( instance );
if( fbe == NULL )
{
*err = iBase_FAILURE;
return;
}
GeomTopoTool* gtt = GETGTT( instance );
if( gtt == NULL )
{
*err = iBase_FAILURE;
return;
}
// keep mesh-based geometries in Range
rval = gtt->find_geomsets();CHKERR( rval, "Failure to find geometry lists." );
if( smooth ) fbe->set_smooth(); // assumes that initialization did not happen yet
fbe->Init(); // major computation
RETURN( iBase_SUCCESS );
}
void FBiGeom_save( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
char const* name,
char const* options,
int* err,
int name_len,
int options_len )
{
iMesh_save( IMESH_INSTANCE( instance ), NULL, name, options, err, name_len, options_len );
}
void FBiGeom_getRootSet( FBiGeom_Instance instance, iBase_EntitySetHandle* root_set, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
EntityHandle modelSet;
ErrorCode rval = FBE_cast( instance )->getRootSet( &modelSet );CHKERR( rval, "can't get root set " );
*root_set = (iBase_EntitySetHandle)modelSet;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getBoundBox( FBiGeom_Instance instance, double*, double*, double*, double*, double*, double*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getboundbox' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntities( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle set_handle,
int entity_type,
iBase_EntityHandle** entity_handles,
int* entity_handles_allocated,
int* entity_handles_size,
int* err )
{
if( 0 > entity_type || 4 < entity_type )
{
ERROR( iBase_INVALID_ENTITY_TYPE, "Bad entity type." );
}
else /* 0<= entity_type <= 4) */
{
Range gentities;
ErrorCode rval = FBE_cast( instance )->getEntities( (EntityHandle)set_handle, entity_type, gentities );CHKERR( rval, "can't get entities " );
*entity_handles_size = gentities.size();
CHECK_SIZE( *entity_handles, *entity_handles_allocated, *entity_handles_size, iBase_EntityHandle, NULL );
COPY_RANGE( gentities, *entity_handles );
}
RETURN( iBase_SUCCESS );
}
void FBiGeom_getNumOfType( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle set_handle,
int entity_type,
int* num_out,
int* err )
{
if( 0 > entity_type || 4 < entity_type )
{
ERROR( iBase_INVALID_ENTITY_TYPE, "Bad entity type." );
}
ErrorCode rval = FBE_cast( instance )->getNumOfType( (EntityHandle)set_handle, entity_type, num_out );CHKERR( rval, "can't get number of type " );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEntType( FBiGeom_Instance instance, iBase_EntityHandle entity_handle, int* type, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
ErrorCode rval = FBE_cast( instance )->getEntType( (EntityHandle)entity_handle, type );CHKERR( rval, "can't get entity type " );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrType( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrtype' is never used.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
int** type,
int* type_allocated,
int* type_size,
int* err )
{
CHECK_SIZE( *type, *type_allocated, entity_handles_size, int, NULL );
*type_size = entity_handles_size;
int tmp_err;
for( int i = 0; i < entity_handles_size; i++ )
{
FBiGeom_getEntType( instance, entity_handles[i], *type + i, &tmp_err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
if( iBase_SUCCESS != tmp_err )
{
ERROR( tmp_err, "Failed to get entity type in FBiGeom_getArrType." );
}
}
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEntAdj( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
int to_dimension,
iBase_EntityHandle** adj_entities,
int* adj_entities_allocated,
int* adj_entities_size,
int* err )
{
Range adjs;
EntityHandle this_ent = MBH_cast( entity_handle );
ErrorCode rval = FBE_cast( instance )->getEntAdj( this_ent, to_dimension, adjs );
CHKERR( rval, "Failed to get adjacent entities in FBiGeom_getEntAdj." );
// copy adjacent entities
*adj_entities_size = adjs.size();
CHECK_SIZE( *adj_entities, *adj_entities_allocated, *adj_entities_size, iBase_EntityHandle, NULL );
COPY_RANGE( adjs, *adj_entities );
RETURN( iBase_SUCCESS );
}
// I suspect this is wrong
void FBiGeom_getArrAdj( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarradj' is never used.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
int requested_entity_type,
iBase_EntityHandle** adj_entity_handles,
int* adj_entity_handles_allocated,
int* adj_entity_handles_size,
int** offset,
int* offset_allocated,
int* offset_size,
int* err )
{
// check offset array size
Range temp_range, total_range;
CHECK_SIZE( *offset, *offset_allocated, entity_handles_size + 1, int, NULL );
*offset_size = entity_handles_size + 1;
// get adjacent entities
for( int i = 0; i < entity_handles_size; ++i )
{
( *offset )[i] = total_range.size();
temp_range.clear();
ErrorCode rval =
FBE_cast( instance )->getEntAdj( MBH_cast( entity_handles[i] ), requested_entity_type, temp_range );CHKERR( rval, "Failed to get adjacent entities in FBiGeom_getArrAdj." );
total_range.merge( temp_range );
}
int nTot = total_range.size();
( *offset )[entity_handles_size] = nTot;
// copy adjacent entities
CHECK_SIZE( *adj_entity_handles, *adj_entity_handles_allocated, nTot, iBase_EntityHandle, NULL );
COPY_RANGE( total_range, *adj_entity_handles );
*adj_entity_handles_size = nTot;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEnt2ndAdj( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getent2ndadj' is never used.
iBase_EntityHandle entity_handle,
int bridge_dimension,
int to_dimension,
iBase_EntityHandle** adjacent_entities,
int* adjacent_entities_allocated,
int* adjacent_entities_size,
int* err )
{
Range to_ents, bridge_ents, tmp_ents;
ErrorCode rval = FBE_cast( instance )->getEntAdj( MBH_cast( entity_handle ), bridge_dimension, bridge_ents );
CHKERR( rval, "Failed to get adjacent entities in FBiGeom_getEnt2ndAdj." );
Range::iterator iter, jter, kter, end_jter;
Range::iterator end_iter = bridge_ents.end();
for( iter = bridge_ents.begin(); iter != end_iter; ++iter )
{
rval = FBE_cast( instance )->getEntAdj( *iter, to_dimension, tmp_ents );
CHKERR( rval, "Failed to get adjacent entities in FBiGeom_getEnt2ndAdj." );
for( jter = tmp_ents.begin(); jter != end_jter; ++jter )
{
if( to_ents.find( *jter ) == to_ents.end() )
{
to_ents.insert( *jter );
}
}
tmp_ents.clear();
}
*adjacent_entities_size = to_ents.size();
CHECK_SIZE( *adjacent_entities, *adjacent_entities_allocated, *adjacent_entities_size, iBase_EntityHandle, NULL );
COPY_RANGE( to_ents, *adjacent_entities );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArr2ndAdj( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarr2ndadj' is never used.
iBase_EntityHandle const*,
int,
int,
int,
iBase_EntityHandle**,
int*,
int*,
int**,
int*,
int*,
int* err )
{
// not implemented
// who would need this monster, anyway?
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_isEntAdj( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle1,
iBase_EntityHandle entity_handle2,
int* are_adjacent,
int* err )
{
bool adjacent_out;
ErrorCode rval =
FBE_cast( instance )->isEntAdj( MBH_cast( entity_handle1 ), MBH_cast( entity_handle2 ), adjacent_out );CHKERR( rval, "Failed to get adjacent info" );
*are_adjacent = (int)adjacent_out; // 0 or 1, really
RETURN( iBase_SUCCESS );
}
void FBiGeom_isArrAdj( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isarradj' is never used.
iBase_EntityHandle const* entity_handles_1,
int entity_handles_1_size,
iBase_EntityHandle const* entity_handles_2,
int entity_handles_2_size,
int** is_adjacent_info,
int* is_adjacent_info_allocated,
int* is_adjacent_info_size,
int* err )
{
int index1 = 0;
int index2 = 0;
size_t index1_step, index2_step;
int count;
// If either list contains only 1 entry, compare that entry with
// every entry in the other list.
if( entity_handles_1_size == entity_handles_2_size )
{
index1_step = index2_step = 1;
count = entity_handles_1_size;
}
else if( entity_handles_1_size == 1 )
{
index1_step = 0;
index2_step = 1;
count = entity_handles_2_size;
}
else if( entity_handles_2_size == 1 )
{
index1_step = 1;
index2_step = 0;
count = entity_handles_1_size;
}
else
{
RETURN( iBase_INVALID_ENTITY_COUNT );
}
CHECK_SIZE( *is_adjacent_info, *is_adjacent_info_allocated, count, int, NULL );
for( int i = 0; i < count; ++i )
{
FBiGeom_isEntAdj( instance, entity_handles_1[index1], entity_handles_2[index2], &( ( *is_adjacent_info )[i] ),<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
err );
FWDERR();
index1 += index1_step;
index2 += index2_step;
}
// it is now safe to set the size
*is_adjacent_info_size = count;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEntClosestPt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
double near_x,
double near_y,
double near_z,
double* on_x,
double* on_y,
double* on_z,
int* err )
{
ErrorCode rval =
FBE_cast( instance )->getEntClosestPt( MBH_cast( entity_handle ), near_x, near_y, near_z, on_x, on_y, on_z );CHKERR( rval, "Failed to get closest point" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrClosestPt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrclosestpt' is never used.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
int storage_order,
double const* near_coordinates,
int near_coordinates_size,
double** on_coordinates,
int* on_coordinates_allocated,
int* on_coordinates_size,
int* err )
{
CHECK_SIZE( *on_coordinates, *on_coordinates_allocated, near_coordinates_size, double, NULL );
for( int i = 0; i < entity_handles_size; i++ )
{
if( storage_order == iBase_INTERLEAVED )
{
FBiGeom_getEntClosestPt( instance, entity_handles[i], near_coordinates[3 * i], near_coordinates[3 * i + 1],<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
near_coordinates[3 * i + 2], on_coordinates[3 * i], on_coordinates[3 * i + 1],
on_coordinates[3 * i + 2], err );
}
else if( storage_order == iBase_BLOCKED )
{
FBiGeom_getEntClosestPt( instance, entity_handles[i], near_coordinates[i],<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
near_coordinates[i + entity_handles_size],
near_coordinates[i + 2 * entity_handles_size], on_coordinates[i],
on_coordinates[i + entity_handles_size],
on_coordinates[i + 2 * entity_handles_size], err );
}
FWDERR();
}
*on_coordinates_size = near_coordinates_size;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEntNrmlXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
double x,
double y,
double z,
double* nrml_i,
double* nrml_j,
double* nrml_k,
int* err )
{
ErrorCode rval = FBE_cast( instance )->getEntNrmlXYZ( MBH_cast( entity_handle ), x, y, z, nrml_i, nrml_j, nrml_k );CHKERR( rval, "Failed to get normal" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrNrmlXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrnrmlxyz' is never used.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
int storage_order,
double const* coordinates,
int coordinates_size,
double** normals,
int* normals_allocated,
int* normals_size,
int* err )
{
// set up iteration according to storage order.
// allow either gentity_handles or near_coordinates to contain
// only one value, where that single value is applied for every
// entry in the other list.
size_t index = 0;
size_t coord_step, norm_step = 1, ent_step;
int count;
if( 3 * entity_handles_size == coordinates_size )
{
coord_step = ent_step = 1;
count = entity_handles_size;
}
else if( coordinates_size == 3 )
{
coord_step = 0;
ent_step = 1;
count = entity_handles_size;
}
else if( entity_handles_size == 1 )
{
coord_step = 1;
ent_step = 0;
count = coordinates_size / 3;
}
else
{
ERROR( iBase_INVALID_ENTITY_COUNT, "Mismatched array sizes" );
}
// check or pre-allocate the coordinate arrays
CHECK_SIZE( *normals, *normals_allocated, 3 * count, double, NULL );
const double *coord_x, *coord_y, *coord_z;
double *norm_x, *norm_y, *norm_z;
if( storage_order == iBase_BLOCKED )
{
coord_x = coordinates;
coord_y = coord_x + coordinates_size / 3;
coord_z = coord_y + coordinates_size / 3;
norm_x = *normals;
norm_y = norm_x + count;
norm_z = norm_y + count;
norm_step = 1;
}
else
{
storage_order = iBase_INTERLEAVED; /* set if unspecified */<--- Variable 'storage_order' is assigned a value that is never used.
coord_x = coordinates;
coord_y = coord_x + 1;
coord_z = coord_x + 2;
norm_x = *normals;
norm_y = norm_x + 1;
norm_z = norm_x + 2;
coord_step *= 3;
norm_step = 3;
}
for( int i = 0; i < count; ++i )
{
FBiGeom_getEntNrmlXYZ( instance, entity_handles[index], *coord_x, *coord_y, *coord_z, norm_x, norm_y, norm_z,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
err );
FWDERR();
index += ent_step;
coord_x += coord_step;
coord_y += coord_step;
coord_z += coord_step;
norm_x += norm_step;
norm_y += norm_step;
norm_z += norm_step;
}
*normals_size = count;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEntNrmlPlXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
double x,
double y,
double z,
double* pt_x,
double* pt_y,
double* pt_z,
double* nrml_i,
double* nrml_j,
double* nrml_k,
int* err )
{
// just do for surface and volume
int type;
FBiGeom_getEntType( instance, entity_handle, &type, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
FWDERR();
if( type != 2 && type != 3 )
{
ERROR( iBase_INVALID_ENTITY_TYPE, "Entities passed into gentityNormal must be face or volume." );
}
// do 2 searches, so it is not fast enough
FBiGeom_getEntClosestPt( instance, entity_handle, x, y, z, pt_x, pt_y, pt_z, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
FWDERR();
FBiGeom_getEntNrmlXYZ( instance, entity_handle, *pt_x, *pt_y, *pt_z, nrml_i, nrml_j, nrml_k, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
FWDERR();
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrNrmlPlXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrnrmlplxyz' is never used.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
int storage_order,
double const* near_coordinates,
int near_coordinates_size,
double** on_coordinates,
int* on_coordinates_allocated,
int* on_coordinates_size,
double** normals,
int* normals_allocated,
int* normals_size,
int* err )
{
// set up iteration according to storage order.
// allow either gentity_handles or near_coordinates to contain
// only one value, where that single value is applied for every
// entry in the other list.
size_t index = 0;
size_t near_step, on_step = 1, ent_step;
int count;
if( 3 * entity_handles_size == near_coordinates_size )
{
near_step = ent_step = 1;
count = entity_handles_size;
}
else if( near_coordinates_size == 3 )
{
near_step = 0;
ent_step = 1;
count = entity_handles_size;
}
else if( entity_handles_size == 1 )
{
near_step = 1;
ent_step = 0;
count = near_coordinates_size / 3;
}
else
{
ERROR( iBase_INVALID_ENTITY_COUNT, "Mismatched array sizes" );
}
// check or pre-allocate the coordinate arrays
CHECK_SIZE( *on_coordinates, *on_coordinates_allocated, 3 * count, double, NULL );
CHECK_SIZE( *normals, *normals_allocated, 3 * count, double, NULL );
const double *near_x, *near_y, *near_z;
double *on_x, *on_y, *on_z;
double *norm_x, *norm_y, *norm_z;
if( storage_order == iBase_BLOCKED )
{
near_x = near_coordinates;
near_y = near_x + near_coordinates_size / 3;
near_z = near_y + near_coordinates_size / 3;
on_x = *on_coordinates;
on_y = on_x + count;
on_z = on_y + count;
norm_x = *normals;
norm_y = norm_x + count;
norm_z = norm_y + count;
on_step = 1;
}
else
{
storage_order = iBase_INTERLEAVED; /* set if unspecified */<--- Variable 'storage_order' is assigned a value that is never used.
near_x = near_coordinates;
near_y = near_x + 1;
near_z = near_x + 2;
on_x = *on_coordinates;
on_y = on_x + 1;
on_z = on_x + 2;
norm_x = *normals;
norm_y = norm_x + 1;
norm_z = norm_x + 2;
near_step *= 3;
on_step = 3;
}
for( int i = 0; i < count; ++i )
{
FBiGeom_getEntNrmlPlXYZ( instance, entity_handles[index], *near_x, *near_y, *near_z, on_x, on_y, on_z, norm_x,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
norm_y, norm_z, err );
FWDERR();
// entities += ent_step;
index += ent_step;
near_x += near_step;
near_y += near_step;
near_z += near_step;
on_x += on_step;
on_y += on_step;
on_z += on_step;
norm_x += on_step;
norm_y += on_step;
norm_z += on_step;
}
*on_coordinates_size = count * 3;
*normals_size = count;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEntTgntXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getenttgntxyz' is never used.
iBase_EntityHandle,
double,
double,
double,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrTgntXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrtgntxyz' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntBoundBox( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
double* min_x,
double* min_y,
double* min_z,
double* max_x,
double* max_y,
double* max_z,
int* err )
{
ErrorCode rval;
int type;
FBiGeom_getEntType( instance, entity_handle, &type, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
FWDERR();
if( type == 0 )
{
FBiGeom_getVtxCoord( instance, entity_handle, min_x, min_y, min_z, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
FWDERR();
max_x = min_x;<--- Variable 'max_x' is assigned a value that is never used.
max_y = min_y;<--- Variable 'max_y' is assigned a value that is never used.
max_z = min_z;<--- Variable 'max_z' is assigned a value that is never used.
}
else if( type == 1 )
{
// it could be relatively easy to support
*err = iBase_NOT_SUPPORTED;
FWDERR();
}
else if( type == 2 || type == 3 )
{
EntityHandle root;
CartVect center, axis[3];
GeomTopoTool* gtt = GETGTT( instance );
if( !gtt ) ERROR( iBase_FAILURE, "Can't get geom topo tool." );
rval = gtt->get_root( MBH_cast( entity_handle ), root );CHKERR( rval, "Failed to get tree root in FBiGeom_getEntBoundBox." );
rval = gtt->obb_tree()->box( root, center.array(), axis[0].array(), axis[1].array(), axis[2].array() );CHKERR( rval, "Failed to get box from obb tree." );
CartVect absv[3];
for( int i = 0; i < 3; i++ )
{
absv[i] = CartVect( fabs( axis[i][0] ), fabs( axis[i][1] ), fabs( axis[i][2] ) );
}
CartVect min, max;
min = center - absv[0] - absv[1] - absv[2];
max = center + absv[0] + absv[1] + absv[2];
*min_x = min[0];
*min_y = min[1];
*min_z = min[2];
*max_x = max[0];
*max_y = max[1];
*max_z = max[2];
}
else
RETURN( iBase_INVALID_ENTITY_TYPE );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrBoundBox( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
int storage_order,
double** min_corner,
int* min_corner_allocated,
int* min_corner_size,
double** max_corner,
int* max_corner_allocated,
int* max_corner_size,
int* err )
{
// check or pre-allocate the coordinate arrays
CHECK_SIZE( *min_corner, *min_corner_allocated, 3 * entity_handles_size, double, NULL );
CHECK_SIZE( *max_corner, *max_corner_allocated, 3 * entity_handles_size, double, NULL );
size_t step, init;
if( storage_order == iBase_BLOCKED )
{
step = 1;
init = entity_handles_size;
}
else
{
step = 3;
init = 1;
}
double *min_x, *min_y, *min_z, *max_x, *max_y, *max_z;
min_x = *min_corner;
max_x = *max_corner;
min_y = min_x + init;
max_y = max_x + init;
min_z = min_y + init;
max_z = max_y + init;
for( int i = 0; i < entity_handles_size; ++i )
{
FBiGeom_getEntBoundBox( instance, entity_handles[i], min_x, min_y, min_z, max_x, max_y, max_z, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
FWDERR();
min_x += step;
max_x += step;
min_y += step;
max_y += step;
min_z += step;
max_z += step;
}
*min_corner_size = 3 * entity_handles_size;
*max_corner_size = 3 * entity_handles_size;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getVtxCoord( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle vertex_handle,
double* x,
double* y,
double* z,
int* err )
{
ErrorCode rval = FBE_cast( instance )->getVtxCoord( MBH_cast( vertex_handle ), x, y, z );CHKERR( rval, "Failed to vertex position" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getVtxArrCoords( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getvtxarrcoords' is never used.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
int storage_order,
double** coordinates,
int* coordinates_allocated,
int* coordinates_size,
int* err )
{
// check or pre-allocate the coordinate arrays
CHECK_SIZE( *coordinates, *coordinates_allocated, 3 * entity_handles_size, double, NULL );
double *x, *y, *z;
size_t step;
if( storage_order == iBase_BLOCKED )
{
x = *coordinates;
y = x + entity_handles_size;
z = y + entity_handles_size;
step = 1;
}
else
{
x = *coordinates;
y = x + 1;
z = x + 2;
step = 3;
}
for( int i = 0; i < entity_handles_size; i++ )
{
FBiGeom_getVtxCoord( instance, entity_handles[i], x, y, z, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
x += step;
y += step;
z += step;
}
*coordinates_size = 3 * entity_handles_size;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getPntRayIntsct( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
double x,
double y,
double z,
double dir_x,
double dir_y,
double dir_z,
iBase_EntityHandle** intersect_entity_handles,
int* intersect_entity_handles_allocated,
int* intersect_entity_handles_size,
int storage_order,
double** intersect_coords,
int* intersect_coords_allocated,
int* intersect_coords_size,
double** param_coords,
int* param_coords_allocated,
int* param_coords_size,
int* err )
{
// this is pretty cool
// we will return only surfaces
//
// storage order is ignored
std::vector< EntityHandle > intersect_handles;
std::vector< double > coords;
std::vector< double > params;
ErrorCode rval =
FBE_cast( instance )->getPntRayIntsct( x, y, z, dir_x, dir_y, dir_z, intersect_handles, coords, params );CHKERR( rval, "can't get ray intersections " );
*intersect_entity_handles_size = (int)intersect_handles.size();
CHECK_SIZE( *intersect_entity_handles, *intersect_entity_handles_allocated, *intersect_entity_handles_size,
iBase_EntityHandle, NULL );
*intersect_coords_size = 3 * (int)intersect_handles.size();
CHECK_SIZE( *intersect_coords, *intersect_coords_allocated, *intersect_coords_size, double, NULL );
*param_coords_size = (int)intersect_handles.size();
CHECK_SIZE( *param_coords, *param_coords_allocated, *param_coords_size, double, NULL );
COPY_RANGE( intersect_handles, *intersect_entity_handles );
COPY_DOUBLEVEC( params, *param_coords );
if( storage_order == iBase_BLOCKED )
{
int sz = (int)intersect_handles.size();
for( int i = 0; i < sz; i++ )
{
*intersect_coords[i] = coords[3 * i];
*intersect_coords[sz + i] = coords[3 * i + 1];
*intersect_coords[2 * sz + i] = coords[3 * i + 2];
}
}
else
{
COPY_DOUBLEVEC( coords, *intersect_coords );
}
RETURN( iBase_SUCCESS );
}
void FBiGeom_getPntArrRayIntsct( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getpntarrrayintsct' is never used.
int,
const double*,
int,
const double*,
int,
iBase_EntityHandle**,
int*,
int*,
int**,
int*,
int*,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
// not implemented
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntNrmlSense( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentnrmlsense' is never used.
iBase_EntityHandle face,
iBase_EntityHandle region,
int* sense_out,
int* err )
{
moab::EntityHandle mbregion = (moab::EntityHandle)region;
moab::EntityHandle mbface = (moab::EntityHandle)face;
moab::ErrorCode rval = FBE_cast( instance )->getEgFcSense( mbface, mbregion, *sense_out );CHKERR( rval, "can't get normal sense " );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrNrmlSense( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrnrmlsense' is never used.
iBase_EntityHandle const*,
int,
iBase_EntityHandle const*,
int,
int**,
int*,
int*,
int* err )
{
// not implemented
RETURN( iBase_NOT_SUPPORTED );
}
/**\brief Get the sense of an edge with respect to a face
* Get the sense of an edge with respect to a face. Sense returned is -1, 0, or 1,
* representing "reversed", "both", or "forward". "both" sense indicates that edge bounds
* the face once with each sense.
* \param edge Edge being queried
* \param face Face being queried
* \param sense_out Sense of edge with respect to face
*/
void FBiGeom_getEgFcSense( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getegfcsense' is never used.
iBase_EntityHandle edge,
iBase_EntityHandle face,
int* sense_out,
int* err )
{
// this one is important, for establishing the orientation of the edges in faces
// bummer, I "thought" it is already implemented
// use senses
ErrorCode rval = FBE_cast( instance )->getEgFcSense( MBH_cast( edge ), MBH_cast( face ), *sense_out );
CHKERR( rval, "Failed to get edge senses in FBiGeom_getEgFcSense." );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEgFcArrSense( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getegfcarrsense' is never used.
iBase_EntityHandle const*,
int,
iBase_EntityHandle const*,
int,
int**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEgVtxSense( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getegvtxsense' is never used.
iBase_EntityHandle edge,
iBase_EntityHandle vertex1,
iBase_EntityHandle vertex2,
int* sense_out,
int* err )
{
ErrorCode rval =
FBE_cast( instance )->getEgVtxSense( MBH_cast( edge ), MBH_cast( vertex1 ), MBH_cast( vertex2 ), *sense_out );CHKERR( rval, "Failed to get vertex sense wrt edge in FBiGeom_getEgVtxSense" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEgVtxArrSense( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getegvtxarrsense' is never used.
iBase_EntityHandle const*,
int,
iBase_EntityHandle const*,
int,
iBase_EntityHandle const*,
int,
int**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_measure( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_measure' is never used.
iBase_EntityHandle const* entity_handles,
int entity_handles_size,
double** measures,
int* measures_allocated,
int* measures_size,
int* err )
{
CHECK_SIZE( *measures, *measures_allocated, entity_handles_size, double, NULL );
ErrorCode rval = FBE_cast( instance )->measure( (EntityHandle*)( entity_handles ), entity_handles_size, *measures );CHKERR( rval, "Failed to get measures" );
*measures_size = entity_handles_size;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getFaceType( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getfacetype' is never used.
iBase_EntityHandle,
char* face_type,
int* err,
int* face_type_length )
{
std::string type = "nonplanar"; // for swept faces created with rays between surfaces,
// we could actually create planar surfaces; maybe we should
// recognize them as such
face_type = new char[type.length() + 1];
strcpy( face_type, type.c_str() );
*face_type_length = type.length() + 1;
RETURN( iBase_SUCCESS );
}
void FBiGeom_getParametric( FBiGeom_Instance instance, int* is_parametric, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getparametric' is never used.
{
*is_parametric = 0; //(false)
RETURN( iBase_SUCCESS );
}
void FBiGeom_isEntParametric( FBiGeom_Instance instance, iBase_EntityHandle entity_handle, int* parametric, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isentparametric' is never used.
{
int type = -1;
FBiGeom_getEntType( instance, entity_handle, &type, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
if( type == 1 )
*parametric = 1; // true
else
*parametric = 0; // false
RETURN( iBase_SUCCESS );
}
void FBiGeom_isArrParametric( FBiGeom_Instance instance, iBase_EntityHandle const*, int, int**, int*, int*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isarrparametric' is never used.
{
// not implemented
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntUVtoXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentuvtoxyz' is never used.
iBase_EntityHandle,
double,
double,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrUVtoXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarruvtoxyz' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntUtoXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentutoxyz' is never used.
iBase_EntityHandle entity_handle,
double u,
double* x,
double* y,
double* z,
int* err )
{
int type;
FBiGeom_getEntType( instance, entity_handle, &type, err );<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
FWDERR();
if( type != 1 ) // not edge
RETURN( iBase_NOT_SUPPORTED );
ErrorCode rval = FBE_cast( instance )->getEntUtoXYZ( (EntityHandle)entity_handle, u, *x, *y, *z );CHKERR( rval, "Failed to get position from parameter" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrUtoXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrutoxyz' is never used.
iBase_EntityHandle const*,
int,
double const*,
int,
int,
double**,
int*,
int*,
int* err )
{
// not implemented
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntXYZtoUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentxyztouv' is never used.
iBase_EntityHandle,
double,
double,
double,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntXYZtoU( FBiGeom_Instance instance, iBase_EntityHandle, double, double, double, double*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentxyztou' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrXYZtoUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrxyztouv' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrXYZtoU( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrxyztou' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntXYZtoUVHint( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentxyztouvhint' is never used.
iBase_EntityHandle,
double,
double,
double,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrXYZtoUVHint( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrxyztouvhint' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntUVRange( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentuvrange' is never used.
iBase_EntityHandle,
double*,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntURange( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getenturange' is never used.
iBase_EntityHandle entity_handle,
double* u_min,
double* u_max,
int* err )
{
ErrorCode rval = FBE_cast( instance )->getEntURange( (EntityHandle)entity_handle, *u_min, *u_max );CHKERR( rval, "Failed to get range" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrUVRange( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarruvrange' is never used.
iBase_EntityHandle const*,
int,
int,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrURange( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrurange' is never used.
iBase_EntityHandle const*,
int,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntUtoUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentutouv' is never used.
iBase_EntityHandle,
iBase_EntityHandle,
double,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getVtxToUV( FBiGeom_Instance instance, iBase_EntityHandle, iBase_EntityHandle, double*, double*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getvtxtouv' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getVtxToU( FBiGeom_Instance instance, iBase_EntityHandle, iBase_EntityHandle, double*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getvtxtou' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrUtoUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrutouv' is never used.
iBase_EntityHandle const*,
int,
iBase_EntityHandle const*,
int,
double const*,
int,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getVtxArrToUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getvtxarrtouv' is never used.
iBase_EntityHandle const*,
int,
iBase_EntityHandle const*,
int,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getVtxArrToU( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getvtxarrtou' is never used.
iBase_EntityHandle const*,
int,
iBase_EntityHandle const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntNrmlUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentnrmluv' is never used.
iBase_EntityHandle,
double,
double,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrNrmlUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrnrmluv' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntTgntU( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getenttgntu' is never used.
iBase_EntityHandle entity_handle,
double u,
double* tgnt_i,
double* tgnt_j,
double* tgnt_k,
int* err )
{
ErrorCode rval =
FBE_cast( instance )->getEntTgntU( (moab::EntityHandle)entity_handle, u, *tgnt_i, *tgnt_j, *tgnt_k );CHKERR( rval, "Failed to get tangent from u" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrTgntU( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrtgntu' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEnt1stDrvt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getent1stdrvt' is never used.
iBase_EntityHandle,
double,
double,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArr1stDrvt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarr1stdrvt' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int**,
int*,
int*,
double**,
int*,
int*,
int**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEnt2ndDrvt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getent2nddrvt' is never used.
iBase_EntityHandle,
double,
double,
double**,
int*,
int*,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArr2ndDrvt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarr2nddrvt' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
int**,
int*,
int*,
double**,
int*,
int*,
int**,
int*,
int*,
double**,
int*,
int*,
int**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getFcCvtrUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getfccvtruv' is never used.
iBase_EntityHandle,
double,
double,
double*,
double*,
double*,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getFcArrCvtrUV( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getfcarrcvtruv' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_isEntPeriodic( FBiGeom_Instance /*instance*/,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isentperiodic' is never used.
iBase_EntityHandle /*entity_handle*/,
int* in_u,
int* in_v,
int* err )
{
*in_u = 0;
*in_v = 0;
*err = 0;
return;
}
void FBiGeom_isArrPeriodic( FBiGeom_Instance instance, iBase_EntityHandle const*, int, int**, int*, int*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isarrperiodic' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_isFcDegenerate( FBiGeom_Instance instance, iBase_EntityHandle, int*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isfcdegenerate' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_isFcArrDegenerate( FBiGeom_Instance instance, iBase_EntityHandle const*, int, int**, int*, int*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isfcarrdegenerate' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_initEntIter( FBiGeom_Instance instance, iBase_EntitySetHandle, int, iBase_EntityIterator*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_initentiter' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_initEntArrIter( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_initentarriter' is never used.
iBase_EntitySetHandle,
int,
int,
iBase_EntityArrIterator*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getNextEntIter( FBiGeom_Instance instance, iBase_EntityIterator, iBase_EntityHandle*, int*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getnextentiter' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getNextEntArrIter( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getnextentarriter' is never used.
iBase_EntityArrIterator,
iBase_EntityHandle**,
int*,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_resetEntIter( FBiGeom_Instance instance, iBase_EntityIterator, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_resetentiter' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_resetEntArrIter( FBiGeom_Instance instance, iBase_EntityArrIterator, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_resetentarriter' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_endEntIter( FBiGeom_Instance instance, iBase_EntityIterator, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_endentiter' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_endEntArrIter( FBiGeom_Instance instance, iBase_EntityArrIterator, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_endentarriter' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_copyEnt( FBiGeom_Instance instance, iBase_EntityHandle, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_copyent' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_sweepEntAboutAxis( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle,
double,
double,
double,
double,
iBase_EntityHandle*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_deleteAll( FBiGeom_Instance instance, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
// it means deleting some sets from moab db ; is this what we want?
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_deleteEnt( FBiGeom_Instance instance, iBase_EntityHandle /*entity_handle*/, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_createSphere( FBiGeom_Instance instance, double, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_createsphere' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_createPrism( FBiGeom_Instance instance, double, int, double, double, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_createprism' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_createBrick( FBiGeom_Instance instance, double, double, double, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_createCylinder( FBiGeom_Instance instance, double, double, double, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_createCone( FBiGeom_Instance instance, double, double, double, double, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_createcone' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_createTorus( FBiGeom_Instance instance, double, double, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_moveEnt( FBiGeom_Instance instance, iBase_EntityHandle, double, double, double, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_rotateEnt( FBiGeom_Instance instance, iBase_EntityHandle, double, double, double, double, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_reflectEnt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle,
double,
double,
double,
double,
double,
double,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_scaleEnt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_scaleent' is never used.
iBase_EntityHandle,
double,
double,
double,
double,
double,
double,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_uniteEnts( FBiGeom_Instance instance, iBase_EntityHandle const*, int, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_subtractEnts( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle,
iBase_EntityHandle,
iBase_EntityHandle*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_intersectEnts( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_intersectents' is never used.
iBase_EntityHandle,
iBase_EntityHandle,
iBase_EntityHandle*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_sectionEnt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle,
double,
double,
double,
double,
int,
iBase_EntityHandle*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_imprintEnts( FBiGeom_Instance instance, iBase_EntityHandle const*, int, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_imprintents' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_mergeEnts( FBiGeom_Instance instance, iBase_EntityHandle const*, int, double, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_mergeents' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
// start copy old
void FBiGeom_createEntSet( FBiGeom_Instance instance, int isList, iBase_EntitySetHandle* entity_set_created, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
iMesh_createEntSet( IMESH_INSTANCE( instance ), isList, entity_set_created, err );
FWDERR();
}
void FBiGeom_destroyEntSet( FBiGeom_Instance instance, iBase_EntitySetHandle, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_isList( FBiGeom_Instance instance, iBase_EntitySetHandle, int*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_islist' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getNumEntSets( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle entity_set_handle,
int /*num_hops*/,
int* num_sets,
int* err )
{
// here, we get only the entity sets that have gents as members
// we have the convention that entity sets of geom dimension 4 are
// sets of geo entities; they should contain only gentities as elements (or other sets of gents)
// we should also consider the number of hops
// first, get all sets of geo dim 4 from the entity_set_handle; then intersect with
// the range from geom topo tool
Tag geomTag;
ErrorCode rval = MBI->tag_get_handle( GEOM_DIMENSION_TAG_NAME, 1, MB_TYPE_INTEGER, geomTag );
if( MB_SUCCESS != rval ) RETURN( iBase_FAILURE );
GeomTopoTool* gtt = GETGTT( instance );
const Range* gRange = gtt->geoRanges();
// get all sets of geom dimension 4 from the entity set
EntityHandle moabSet = (EntityHandle)entity_set_handle;
const int four = 4;
const void* const four_val[] = { &four };
Range tmp;
rval = MBI->get_entities_by_type_and_tag( moabSet, MBENTITYSET, &geomTag, four_val, 1, tmp );CHKERR( rval, "can't get sets of geo dim 4 " );
tmp = intersect( tmp, gRange[4] );
*num_sets = tmp.size(); // ignore, for the time being, number of hops
RETURN( iBase_SUCCESS );
}
void FBiGeom_getEntSets( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle entity_set_handle,
int,
iBase_EntitySetHandle** contained_set_handles,
int* contained_set_handles_allocated,
int* contained_set_handles_size,
int* err )
{
// we get only the entity sets that have gents as members
// we keep the convention that entity sets of geom dimension 4 are
// sets of geo entities; they should contain only gentities as elements (or other sets of gents)
Tag geomTag;
ErrorCode rval = MBI->tag_get_handle( GEOM_DIMENSION_TAG_NAME, 1, MB_TYPE_INTEGER, geomTag );
if( MB_SUCCESS != rval ) RETURN( iBase_FAILURE );
GeomTopoTool* gtt = GETGTT( instance );
const Range* gRange = gtt->geoRanges();
// get all sets of geom dimension 4 from the entity set
EntityHandle moabSet = (EntityHandle)entity_set_handle;
const int four = 4;
const void* const four_val[] = { &four };
Range tmp;
rval = MBI->get_entities_by_type_and_tag( moabSet, MBENTITYSET, &geomTag, four_val, 1, tmp );CHKERR( rval, "can't get sets of geo dim 4 " );
tmp = intersect( tmp, gRange[4] );
*contained_set_handles_size = tmp.size();
CHECK_SIZE( *contained_set_handles, *contained_set_handles_allocated, *contained_set_handles_size,
iBase_EntitySetHandle, NULL );
COPY_RANGE( tmp, *contained_set_handles );
RETURN( iBase_SUCCESS );
}
void FBiGeom_addEntToSet( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
iBase_EntitySetHandle entity_set,
int* err )
{
iMesh_addEntToSet( IMESH_INSTANCE( instance ), entity_handle, entity_set, err );
}
void FBiGeom_rmvEntFromSet( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_rmventfromset' is never used.
iBase_EntityHandle entity_handle,
iBase_EntitySetHandle entity_set,
int* err )
{
iMesh_rmvEntFromSet( IMESH_INSTANCE( instance ), entity_handle, entity_set, err );
}
void FBiGeom_addEntArrToSet( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_EntitySetHandle entity_set,
int* err )
{
iMesh_addEntArrToSet( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, entity_set, err );
}
void FBiGeom_rmvEntArrFromSet( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_EntitySetHandle entity_set,
int* err )
{
iMesh_rmvEntArrFromSet( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, entity_set, err );
}
void FBiGeom_addEntSet( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle entity_set_to_add,
iBase_EntitySetHandle entity_set_handle,
int* err )
{
iMesh_addEntSet( IMESH_INSTANCE( instance ), entity_set_to_add, entity_set_handle, err );
}
void FBiGeom_rmvEntSet( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_rmventset' is never used.
iBase_EntitySetHandle entity_set_to_remove,
iBase_EntitySetHandle entity_set_handle,
int* err )
{
iMesh_rmvEntSet( IMESH_INSTANCE( instance ), entity_set_to_remove, entity_set_handle, err );
}
void FBiGeom_isEntContained( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isentcontained' is never used.
iBase_EntitySetHandle containing_entity_set,
iBase_EntityHandle contained_entity,
int* is_contained,
int* err )
{
iMesh_isEntContained( IMESH_INSTANCE( instance ), containing_entity_set, contained_entity, is_contained, err );
}
void FBiGeom_isEntArrContained( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isentarrcontained' is never used.
iBase_EntitySetHandle containing_set,
const iBase_EntityHandle* entity_handles,
int num_entity_handles,
int** is_contained,
int* is_contained_allocated,
int* is_contained_size,
int* err )
{
iMesh_isEntArrContained( IMESH_INSTANCE( instance ), containing_set, entity_handles, num_entity_handles,
is_contained, is_contained_allocated, is_contained_size, err );
}
void FBiGeom_isEntSetContained( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_isentsetcontained' is never used.
iBase_EntitySetHandle containing_entity_set,
iBase_EntitySetHandle contained_entity_set,
int* is_contained,
int* err )
{
iMesh_isEntSetContained( IMESH_INSTANCE( instance ), containing_entity_set, contained_entity_set, is_contained,
err );
}
void FBiGeom_addPrntChld( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle parent_entity_set,
iBase_EntitySetHandle child_entity_set,
int* err )
{
iMesh_addPrntChld( IMESH_INSTANCE( instance ), parent_entity_set, child_entity_set, err );
}
void FBiGeom_rmvPrntChld( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle parent_entity_set,
iBase_EntitySetHandle child_entity_set,
int* err )
{
iMesh_rmvPrntChld( IMESH_INSTANCE( instance ), parent_entity_set, child_entity_set, err );
}
void FBiGeom_isChildOf( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle parent_entity_set,
iBase_EntitySetHandle child_entity_set,
int* is_child,
int* err )
{
iMesh_isChildOf( IMESH_INSTANCE( instance ), parent_entity_set, child_entity_set, is_child, err );
}
void FBiGeom_getNumChld( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle entity_set,
int num_hops,
int* num_child,
int* err )
{
iMesh_getNumChld( IMESH_INSTANCE( instance ), entity_set, num_hops, num_child, err );
}
void FBiGeom_getNumPrnt( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle entity_set,
int num_hops,
int* num_parent,
int* err )
{
iMesh_getNumPrnt( IMESH_INSTANCE( instance ), entity_set, num_hops, num_parent, err );
}
void FBiGeom_getChldn( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle from_entity_set,
int num_hops,
iBase_EntitySetHandle** entity_set_handles,
int* entity_set_handles_allocated,
int* entity_set_handles_size,
int* err )
{
iMesh_getChldn( IMESH_INSTANCE( instance ), from_entity_set, num_hops, entity_set_handles,
entity_set_handles_allocated, entity_set_handles_size, err );
}
void FBiGeom_getPrnts( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle from_entity_set,
int num_hops,
iBase_EntitySetHandle** entity_set_handles,
int* entity_set_handles_allocated,
int* entity_set_handles_size,
int* err )
{
iMesh_getPrnts( IMESH_INSTANCE( instance ), from_entity_set, num_hops, entity_set_handles,
entity_set_handles_allocated, entity_set_handles_size, err );
}
void FBiGeom_createTag( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const char* tag_name,
int tag_size,
int tag_type,
iBase_TagHandle* tag_handle,
int* err,
int tag_name_len )
{
iMesh_createTag( IMESH_INSTANCE( instance ), tag_name, tag_size, tag_type, tag_handle, err, tag_name_len );
}
void FBiGeom_destroyTag( FBiGeom_Instance instance, iBase_TagHandle tag_handle, int, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
ErrorCode rval = MBI->tag_delete( TAG_HANDLE( tag_handle ) );CHKERR( rval, "Failed to delete tag" );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getTagName( FBiGeom_Instance instance, iBase_TagHandle tag_handle, char* name, int* err, int name_len )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
iMesh_getTagName( IMESH_INSTANCE( instance ), tag_handle, name, err, name_len );
}
void FBiGeom_getTagSizeValues( FBiGeom_Instance instance, iBase_TagHandle tag_handle, int* tag_size, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
iMesh_getTagSizeValues( IMESH_INSTANCE( instance ), tag_handle, tag_size, err );
}
void FBiGeom_getTagSizeBytes( FBiGeom_Instance instance, iBase_TagHandle tag_handle, int* tag_size, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
iMesh_getTagSizeBytes( IMESH_INSTANCE( instance ), tag_handle, tag_size, err );
}
void FBiGeom_getTagHandle( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const char* tag_name,
iBase_TagHandle* tag_handle,
int* err,
int tag_name_len )
{
iMesh_getTagHandle( IMESH_INSTANCE( instance ), tag_name, tag_handle, err, tag_name_len );
}
void FBiGeom_getTagType( FBiGeom_Instance instance, iBase_TagHandle tag_handle, int* tag_type, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
{
iMesh_getTagType( IMESH_INSTANCE( instance ), tag_handle, tag_type, err );
}
void FBiGeom_setEntSetData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setentsetdata' is never used.
iBase_EntitySetHandle entity_set_handle,
iBase_TagHandle tag_handle,
const void* tag_value,
int tag_value_size,
int* err )
{
iMesh_setEntSetData( IMESH_INSTANCE( instance ), entity_set_handle, tag_handle, tag_value, tag_value_size, err );
}
void FBiGeom_setEntSetIntData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setentsetintdata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
int tag_value,
int* err )
{
iMesh_setEntSetIntData( IMESH_INSTANCE( instance ), entity_set, tag_handle, tag_value, err );
}
void FBiGeom_setEntSetDblData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setentsetdbldata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
double tag_value,
int* err )
{
iMesh_setEntSetDblData( IMESH_INSTANCE( instance ), entity_set, tag_handle, tag_value, err );
}
void FBiGeom_setEntSetEHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setentsetehdata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
iBase_EntityHandle tag_value,
int* err )
{
iMesh_setEntSetEHData( IMESH_INSTANCE( instance ), entity_set, tag_handle, tag_value, err );
}
void FBiGeom_setEntSetESHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setentseteshdata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
iBase_EntitySetHandle tag_value,
int* err )
{
iMesh_setEntSetESHData( IMESH_INSTANCE( instance ), entity_set, tag_handle, tag_value, err );
}
void FBiGeom_getEntSetData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentsetdata' is never used.
iBase_EntitySetHandle entity_set_handle,
iBase_TagHandle tag_handle,
void** tag_value,
int* tag_value_allocated,
int* tag_value_size,
int* err )
{
iMesh_getEntSetData( IMESH_INSTANCE( instance ), entity_set_handle, tag_handle, tag_value, tag_value_allocated,
tag_value_size, err );
}
void FBiGeom_getEntSetIntData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentsetintdata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
int* out_data,
int* err )
{
iMesh_getEntSetIntData( IMESH_INSTANCE( instance ), entity_set, tag_handle, out_data, err );
}
void FBiGeom_getEntSetDblData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentsetdbldata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
double* out_data,
int* err )
{
iMesh_getEntSetDblData( IMESH_INSTANCE( instance ), entity_set, tag_handle, out_data, err );
}
void FBiGeom_getEntSetEHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentsetehdata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
iBase_EntityHandle* out_data,
int* err )
{
iMesh_getEntSetEHData( IMESH_INSTANCE( instance ), entity_set, tag_handle, out_data, err );
}
void FBiGeom_getEntSetESHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentseteshdata' is never used.
iBase_EntitySetHandle entity_set,
iBase_TagHandle tag_handle,
iBase_EntitySetHandle* out_data,
int* err )
{
iMesh_getEntSetESHData( IMESH_INSTANCE( instance ), entity_set, tag_handle, out_data, err );
}
void FBiGeom_getAllEntSetTags( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getallentsettags' is never used.
iBase_EntitySetHandle entity_set_handle,
iBase_TagHandle** tag_handles,
int* tag_handles_allocated,
int* tag_handles_size,
int* err )
{
iMesh_getAllEntSetTags( IMESH_INSTANCE( instance ), entity_set_handle, tag_handles, tag_handles_allocated,
tag_handles_size, err );
}
void FBiGeom_rmvEntSetTag( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_rmventsettag' is never used.
iBase_EntitySetHandle entity_set_handle,
iBase_TagHandle tag_handle,
int* err )
{
iMesh_rmvEntSetTag( IMESH_INSTANCE( instance ), entity_set_handle, tag_handle, err );
}
void FBiGeom_getArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
void** tag_values,
int* tag_values_allocated,
int* tag_values_size,
int* err )
{
iMesh_getArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_allocated, tag_values_size, err );
}
void FBiGeom_getIntArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
int** tag_values,
int* tag_values_allocated,
int* tag_values_size,
int* err )
{
iMesh_getIntArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_allocated, tag_values_size, err );
}
void FBiGeom_getDblArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
double** tag_values,
int* tag_values_allocated,
int* tag_values_size,
int* err )
{
iMesh_getDblArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_allocated, tag_values_size, err );
}
void FBiGeom_getEHArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_geteharrdata' is never used.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
iBase_EntityHandle** tag_value,
int* tag_value_allocated,
int* tag_value_size,
int* err )
{
iMesh_getEHArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_value,
tag_value_allocated, tag_value_size, err );
}
void FBiGeom_getESHArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getesharrdata' is never used.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
iBase_EntitySetHandle** tag_value,
int* tag_value_allocated,
int* tag_value_size,
int* err )
{
iMesh_getESHArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_value,
tag_value_allocated, tag_value_size, err );
}
void FBiGeom_setArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
const void* tag_values,
int tag_values_size,
int* err )
{
iMesh_setArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_size, err );
}
void FBiGeom_setIntArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setintarrdata' is never used.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
const int* tag_values,
int tag_values_size,
int* err )
{
iMesh_setIntArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_size, err );
}
void FBiGeom_setDblArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setdblarrdata' is never used.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
const double* tag_values,
const int tag_values_size,
int* err )
{
iMesh_setDblArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_size, err );
}
void FBiGeom_setEHArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_seteharrdata' is never used.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
const iBase_EntityHandle* tag_values,
int tag_values_size,
int* err )
{
iMesh_setEHArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_size, err );
}
void FBiGeom_setESHArrData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setesharrdata' is never used.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
const iBase_EntitySetHandle* tag_values,
int tag_values_size,
int* err )
{
iMesh_setESHArrData( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, tag_values,
tag_values_size, err );
}
void FBiGeom_rmvArrTag( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_rmvarrtag' is never used.
const iBase_EntityHandle* entity_handles,
int entity_handles_size,
iBase_TagHandle tag_handle,
int* err )
{
iMesh_rmvArrTag( IMESH_INSTANCE( instance ), entity_handles, entity_handles_size, tag_handle, err );
}
void FBiGeom_getData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
void** tag_value,
int* tag_value_allocated,
int* tag_value_size,
int* err )
{
iMesh_getData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, tag_value, tag_value_allocated,
tag_value_size, err );
}
void FBiGeom_getIntData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getintdata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
int* out_data,
int* err )
{
iMesh_getIntData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, out_data, err );
}
void FBiGeom_getDblData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getdbldata' is never used.
const iBase_EntityHandle entity_handle,
const iBase_TagHandle tag_handle,
double* out_data,
int* err )
{
iMesh_getDblData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, out_data, err );
}
void FBiGeom_getEHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getehdata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
iBase_EntityHandle* out_data,
int* err )
{
iMesh_getEHData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, out_data, err );
}
void FBiGeom_getESHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_geteshdata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
iBase_EntitySetHandle* out_data,
int* err )
{
iMesh_getESHData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, out_data, err );
}
void FBiGeom_setData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setdata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
const void* tag_value,
int tag_value_size,
int* err )
{
iMesh_setData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, tag_value, tag_value_size, err );
}
void FBiGeom_setIntData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setintdata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
int tag_value,
int* err )
{
iMesh_setIntData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, tag_value, err );
}
void FBiGeom_setDblData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setdbldata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
double tag_value,
int* err )
{
iMesh_setDblData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, tag_value, err );
}
void FBiGeom_setEHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_setehdata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
iBase_EntityHandle tag_value,
int* err )
{
iMesh_setEHData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, tag_value, err );
}
void FBiGeom_setESHData( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_seteshdata' is never used.
iBase_EntityHandle entity_handle,
iBase_TagHandle tag_handle,
iBase_EntitySetHandle tag_value,
int* err )
{
iMesh_setESHData( IMESH_INSTANCE( instance ), entity_handle, tag_handle, tag_value, err );
}
void FBiGeom_getAllTags( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntityHandle entity_handle,
iBase_TagHandle** tag_handles,
int* tag_handles_allocated,
int* tag_handles_size,
int* err )
{
iMesh_getAllTags( IMESH_INSTANCE( instance ), entity_handle, tag_handles, tag_handles_allocated, tag_handles_size,
err );
}
void FBiGeom_rmvTag( FBiGeom_Instance instance, iBase_EntityHandle entity_handle, iBase_TagHandle tag_handle, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_rmvtag' is never used.
{
iMesh_rmvTag( IMESH_INSTANCE( instance ), entity_handle, tag_handle, err );
}
void FBiGeom_subtract( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle,
iBase_EntitySetHandle,
iBase_EntitySetHandle*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_intersect( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle,
iBase_EntitySetHandle,
iBase_EntitySetHandle*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_unite( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
iBase_EntitySetHandle,
iBase_EntitySetHandle,
iBase_EntitySetHandle*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
// TODO methods not yet implemented
void FBiGeom_getEntClosestPtTrimmed( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentclosestpttrimmed' is never used.
iBase_EntityHandle,
double,
double,
double,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getFcCvtrXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getfccvtrxyz' is never used.
iBase_EntityHandle,
double,
double,
double,
double*,
double*,
double*,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEgCvtrXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getegcvtrxyz' is never used.
iBase_EntityHandle,
double,
double,
double,
double*,
double*,
double*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntArrCvtrXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getentarrcvtrxyz' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEgEvalXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getegevalxyz' is never used.
iBase_EntityHandle edge,
double x,
double y,
double z,
double* on_x,
double* on_y,
double* on_z,
double* tngt_i,
double* tngt_j,
double* tngt_k,
double* cvtr_i,
double* cvtr_j,
double* cvtr_k,
int* err )
{
ErrorCode rval = FBE_cast( instance )
->getEgEvalXYZ( (moab::EntityHandle)edge, x, y, z, *on_x, *on_y, *on_z, *tngt_i, *tngt_j,
*tngt_k, *cvtr_i, *cvtr_j, *cvtr_k );CHKERR( rval, "can't get point on edge " );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getFcEvalXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getfcevalxyz' is never used.
iBase_EntityHandle face_handle,
double x,
double y,
double z,
double* on_x,
double* on_y,
double* on_z,
double* nrml_i,
double* nrml_j,
double* nrml_k,
double* cvtr1_i,
double* cvtr1_j,
double* cvtr1_k,
double* cvtr2_i,
double* cvtr2_j,
double* cvtr2_k,
int* err )
{
/*
moab::ErrorCode rval = _fbEngine->getFcEvalXYZ( (moab::EntityHandle) face,
x, y, z,
on_x, on_y, on_z,
nrml_i, nrml_j, nrml_k,
cvtr1_i, cvtr1_j, cvtr1_k,
cvtr2_i, cvtr2_j, cvtr2_k );*/
// camal really does not use curvatures
// the most it is calling for normals and for closest point
// return all curvatures = 0 for the time being, because we
// know camal is not requesting them
*cvtr1_i = *cvtr1_j = *cvtr1_k = *cvtr2_i = *cvtr2_j = *cvtr2_k = 0.;
// first get closest point, then normal, separately
ErrorCode rval =
FBE_cast( instance )->getEntClosestPt( (moab::EntityHandle)face_handle, x, y, z, on_x, on_y, on_z );CHKERR( rval, "can't get closest point on surface " );
rval = FBE_cast( instance )
->getEntNrmlXYZ( (moab::EntityHandle)face_handle, x, y, z, nrml_i, nrml_j,
nrml_k ); // some inconsistency here, we use pointers, not refs
CHKERR( rval, "can't get normal on closest point on surface " );
RETURN( iBase_SUCCESS );
}
void FBiGeom_getArrEgEvalXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarregevalxyz' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrFcEvalXYZ( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrfcevalxyz' is never used.
iBase_EntityHandle const*,
int,
int,
double const*,
int,
double**,
int*,
int*,
double**,
int*,
int*,
double**,
int*,
int*,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getPntClsf( FBiGeom_Instance instance, double, double, double, iBase_EntityHandle*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getpntclsf' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getPntArrClsf( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getpntarrclsf' is never used.
int,
double const*,
int,
iBase_EntityHandle**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getFacets( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getfacets' is never used.
iBase_EntityHandle,
double,
double,
int,
int,
int,
int,
int,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getEntTolerance( FBiGeom_Instance instance, iBase_EntityHandle, double*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getenttolerance' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getArrTolerance( FBiGeom_Instance instance,<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_getarrtolerance' is never used.
iBase_EntityHandle const*,
int,
double**,
int*,
int*,
int* err )
{
RETURN( iBase_NOT_SUPPORTED );
}
void FBiGeom_getTolerance( FBiGeom_Instance instance, int*, double*, int* err )<--- Skipping configuration 'MOAB_FC_FUNC' since the value of 'MOAB_FC_FUNC' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- Skipping configuration 'MOAB_FC_FUNC_' since the value of 'MOAB_FC_FUNC_' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.<--- The function 'fbigeom_gettolerance' is never used.
{
RETURN( iBase_NOT_SUPPORTED );
}
|