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 | // ********************************************************************
// Patrick Shriwise
// October, 2013
// functions needed to seal unwatertight models in make_watertight
// make CXXFLAGS=-g for debug
// make CXXFLAGS=-pg for profiling
#include <iostream>
#include <sstream>
#include <iomanip> // for setprecision
#include <limits> // for min/max values
#include <assert.h>
#include <math.h>
#include <time.h>
#include <vector>
#include "moab/Core.hpp"
#include "MBTagConventions.hpp"
#include "moab/Range.hpp"
#include "moab/Skinner.hpp"
#include "moab/GeomTopoTool.hpp"
#include "meshkit/mw_func.hpp"
#include "meshkit/gen.hpp"
#include "meshkit/arc.hpp"
#include "meshkit/zip.hpp"
#include "meshkit/cleanup.hpp"
using namespace moab;
namespace mw_func {
ErrorCode delete_all_edges() {
// delete all of the edges. Never keep edges. They are too hard to track and use
// due to orientation and multiple entities errors when merging.
ErrorCode result;
Range edges;
result = MBI()->get_entities_by_type( 0, MBEDGE, edges );
if(gen::error(MB_SUCCESS!=result,"could not get edges")) return result;
assert(MB_SUCCESS == result);
result = MBI()->delete_entities( edges );
if(gen::error(MB_SUCCESS!=result,"could not delete edges")) return result;
assert(MB_SUCCESS == result);
return MB_SUCCESS;
}
ErrorCode find_degenerate_tris() {
ErrorCode result;
Range tris;
result = MBI()->get_entities_by_type( 0, MBTRI, tris );
if(gen::error(MB_SUCCESS!=result,"could not get tris")) return result;
assert(MB_SUCCESS == result);
int counter = 0;
for(Range::const_iterator i=tris.begin(); i!=tris.end(); ++i) {
if( gen::triangle_degenerate(*i) ) {
result = MBI()->list_entity(*i);
if(gen::error(MB_SUCCESS!=result,"found degenerate tri")) return result;
assert(MB_SUCCESS == result);
++counter;
}
}
if(counter != 0)
{
std::cout << "Found " << counter << " degenerate triangles. " << std::endl;
}
return MB_SUCCESS;
}
// Input: Possibly unordered sets of curves that do track ownership. Curves contain
// edges and vertices. Parents sets are surfaces. Child sets are endpoint
// vertices.
// Output: Ordered sets of verts that do track ownership. All edges are deleted.
ErrorCode prepare_curves(Range &curve_sets,
Tag geom_tag, Tag id_tag, Tag merge_tag,
const double FACET_TOL, const bool debug, bool verbose ) {
ErrorCode result;
if (verbose) std::cout << "Modifying faceted curve representation and removing small curves..."
<< std::endl;
// process each curve
for(Range::iterator i=curve_sets.begin(); i!=curve_sets.end(); i++ ) {<--- Prefer prefix ++/-- operators for non-primitive types.
// get the curve id of the curve meshset
int id;
result = MBI()->tag_get_data( id_tag, &(*i), 1, &id );
if(gen::error(MB_SUCCESS!=result,"could not get id tag")) return result;
if(debug) std::cout << "curve " << id << std::endl;
// get the range of edges of the curve meshset
std::vector<EntityHandle> curve_edges;
result = MBI()->get_entities_by_type( *i, MBEDGE, curve_edges );
if(gen::error(MB_SUCCESS!=result,"could not get curve_edges")) return result;
/* Merge the endpoints of the curve and remove its edges if it is too small.
Use the MERGE_TOL because these edges will be merged with the MERGE_TOL
during zipping anyhow. Doing this now removes small curves from zipping and
reduces ambiguity. */
if(FACET_TOL > gen::length(curve_edges)) {
if (debug)
{
std::cout << " deleted curve " << id << ", length=" << gen::length(curve_edges)
<< " cm, n_verts=" << curve_edges.size()+1 << std::endl;
}
// get the endpoints of the curve
Range endpt_sets;
result = MBI()->get_child_meshsets( *i, endpt_sets );
if(gen::error(MB_SUCCESS!=result,"could not get curve child sets")) return result;
if(endpt_sets.empty()) {
if(gen::error(true,"curve has no child sets")) return result;
} else if(1 == endpt_sets.size()) {
// The edges are no longer needed. Remove them before altering the range
// by deleting degenerate edges below.
result = MBI()->delete_entities( &curve_edges[0], curve_edges.size() );
if(gen::error(MB_SUCCESS!=result,"could not delete edges")) return result;
} else if(2 == endpt_sets.size()) {
// The edges are no longer needed. Remove them before altering the range
// by deleting degenerate edges below.
result = MBI()->delete_entities( &curve_edges[0], curve_edges.size() );
if(gen::error(MB_SUCCESS!=result,"could not delete edges")) return result;
Range front_endpt, back_endpt;
result = MBI()->get_entities_by_type( endpt_sets.front(), MBVERTEX, front_endpt);
if(gen::error(MB_SUCCESS!=result,"could not get vert from front endpt set")) return result;
if(gen::error(1!=front_endpt.size(),"front endpt set does not have 1 vert")) return result;
result = MBI()->get_entities_by_type( endpt_sets.back(), MBVERTEX, back_endpt);
if(gen::error(MB_SUCCESS!=result,"could not get vert from back endpt set")) return result;
if(gen::error(1!=back_endpt.size(),"back endpt set does not have 1 vert")) return result;
// merge the endpoints-ALWAYS CHECK TO AVOID MERGING THE SAME ENTITY!!!
if(front_endpt[0] != back_endpt[0]) {
std::vector<EntityHandle> temp;
result = zip::merge_verts( front_endpt.front(), back_endpt.front(), temp, temp );
if(gen::error(MB_SUCCESS!=result,"could not merge verts")) return result;
// check for and remove degenerate edges caused by the merge
Range edges;
EntityHandle temp_pt = front_endpt[0];
result = MBI()->get_adjacencies( &temp_pt, 1, 1, false, edges);
if(gen::error(MB_SUCCESS!=result,"could not get adj edges")) return result;
for(Range::iterator j=edges.begin(); j!=edges.end(); j++) {<--- Prefer prefix ++/-- operators for non-primitive types.
const EntityHandle *conn;
int n_verts;
result = MBI()->get_connectivity( *j, conn, n_verts);
if(gen::error(MB_SUCCESS!=result,"could not get edge conn")) return result;
if(conn[0] == conn[1]) {
result = MBI()->delete_entities( &(*j), 1 );
if(gen::error(MB_SUCCESS!=result,"could not delete degenerate edge")) return result;
}
}
}
} else {
assert(false);
}
// It is possible that the endpoints themselves are orphaned. Should these
// be deleted?
// Remove the curve set. This also removes parent-child relationships.
result = MBI()->delete_entities( &(*i), 1);
if(gen::error(MB_SUCCESS!=result,"could not delete curve set")) return result;
i = curve_sets.erase(i) - 1;
} else {
// convert the curve of edges into a curve of verts
std::vector<EntityHandle> ordered_verts;
result = gen::ordered_verts_from_ordered_edges( curve_edges, ordered_verts);
if(gen::error(MB_SUCCESS!=result,"could not order_verts_by_edge")) return result;
// replace the unordered edges with the ordered verts
result = arc::set_meshset( *i, ordered_verts );
if(gen::error(MB_SUCCESS!=result,"could not set_meshset")) return result;
// The edges are no longer needed.
result = MBI()->delete_entities( &curve_edges[0], curve_edges.size() );
if(gen::error(MB_SUCCESS!=result,"could not delete edges")) return result;
}
}
// merge curves that are the same within facet_tol
if (verbose) std::cout << "Identifying coincident curves to be merged..." << std::endl;
result = arc::merge_curves(curve_sets, FACET_TOL, id_tag, merge_tag, debug );
if(gen::error(MB_SUCCESS!=result,"could not merge_curves")) return result;
return MB_SUCCESS;
}
/* The chosen curve may need to be reversed to be in the same direction as the skin.
The skin itself is not changed. */
/* PROBLEM: Some sliver surfaces are smaller in every dimension than the 5x
facet_tol that the skin was found to vary within.
This method finds the average distance between a curve and skin arc. The
smallest distance is the next curve. */
/// Cut an arc out of the skin. Return a corresponding curve, the curve's set, and
/// is the curve has ben reversed. The returned skin has the arc cut away. The
/// returned vector of curve sets has the curve removed.
ErrorCode create_arc_pair( const double FACET_TOL,
const EntityHandle surf_set,
std::vector<EntityHandle> &skin_loop,
std::vector<EntityHandle> &curve_sets,
const EntityHandle front_endpt,
const bool debug,
EntityHandle &curve_set,
bool &curve_is_reversed,
std::vector<EntityHandle> &curve,
std::vector<EntityHandle> &skin_arc ) {
/* Now we have a topological connection between the curve and skin. Find other
curves that share this vert. Be aware if the curve is reversed so the
original direction can be preserved when done zipping. */
ErrorCode rval;
if(debug) {
std::cout << curve_sets.size() << " curves remain to be zipped"
<< " skin_loop.size()=" << skin_loop.size() << " front_endpt="
<< front_endpt << " skin:" << std::endl;
}
// initialize stuff
double min_dist = std::numeric_limits<double>::max();
curve_set = 0;
double curve_set_idx = 0, skin_pos = 0;
curve.clear();
skin_arc.clear();
skin_arc.reserve( skin_loop.size() );
curve.reserve( skin_loop.size() );
// Compare all curves, keeping the best pair
for(unsigned i=0; i<curve_sets.size(); ++i) {
// get geometric vertex sets
Range endpt_sets;
rval = MBI()->get_child_meshsets(curve_sets[i], endpt_sets );
if(gen::error(MB_SUCCESS!=rval,"could not get endpt_sets")) return rval;
if(gen::error(endpt_sets.empty() || 2<endpt_sets.size(),
"too many endpt_sets")) return MB_FAILURE;
// get the vertex handles
std::vector<EntityHandle> endpts;
for(unsigned j=0; j<endpt_sets.size(); ++j) {
Range endpt;
rval = MBI()->get_entities_by_type( endpt_sets[j], MBVERTEX, endpt );
if(gen::error(MB_SUCCESS!=rval,"could not get endpt")) return rval;
if(gen::error(1!=endpt.size(),"not one endpt")) return MB_FAILURE;
endpts.push_back( endpt.front() );
if(debug) std::cout << "curve " << gen::geom_id_by_handle(curve_sets[i])
<< " endpt=" << endpt.front() << std::endl;
}
// if an endpt is not the front_endpt, then this curve isn't adjacent
if(front_endpt!=endpts.front() && front_endpt!=endpts.back()) continue;
// get the point representation
std::vector<EntityHandle> temp_curve;
rval = arc::get_meshset( curve_sets[i], temp_curve );
if(gen::error(MB_SUCCESS!=rval,"could not get curve set")) return rval;
//if(gen::error(2>temp_curve.size(),"curve is degenerate")) return MB_FAILURE;
if(2>temp_curve.size()) std::cout << "warning11: curve is degenerate" << std::endl;
if(debug) {
std::cout << " adj curve " << gen::geom_id_by_handle(curve_sets[i]) << ":" << std::endl;
//gen::print_loop( temp_curve );
}
// Get the curve-surface relative sense. From CGMA/builds/dbg/include/CubitDefines,
int sense;
if(debug)
{
std::cout << "surf_set = " << gen::geom_id_by_handle(surf_set) << std::endl;
std::cout << "curve_set = " << gen::geom_id_by_handle(curve_sets[i]) << std::endl;
}
rval = gen::get_curve_surf_sense( surf_set, curve_sets[i], sense );
if(gen::error(MB_SUCCESS!=rval,"could not get_curve_surf_sense")) return rval;
// get the curve length, for efficient find_closest_vert, plus a tolerance.
// This also helps to find the correct skin arc in special (~1D surfs) cases
// where the closest skin pt is not the correct skin.
const double temp_curve_len = gen::length(temp_curve);
const double extra = 1.0;
// is it forward oriented? To allow for ambiguous cases, instead of accepting
// only forward-oriented curves, only reject reverse-oriented curves.
if(front_endpt==temp_curve.front() && SENSE_REVERSE!=sense) {
// find the closest skin pt to the curve endpt
unsigned pos;
// if only one curve is left, take the entire skin. Otherwise, due to
// coordinate drift via merging the closest skin pt may not be the correct one.
if(1==curve_sets.size()) {
pos = skin_loop.size()-1;
} else {
rval = gen::find_closest_vert( temp_curve.back(), skin_loop, pos, temp_curve_len+extra );
if(gen::error(MB_SUCCESS!=rval,"could not find_closest_vert")) return rval;
}
if(debug) std::cout << " end of skin arc=" << skin_loop[pos] << std::endl;
// SPECIAL CASE: If the skin is a circle, create an arc out of the circle
if(skin_loop[pos] == skin_loop.front()) pos = skin_loop.size()-1;
// create a skin arc to test against the curve
std::vector<EntityHandle> temp_skin(skin_loop.begin(), skin_loop.begin()+pos+1);
double d;
rval = gen::dist_between_arcs( debug, temp_skin, temp_curve, d );
if(gen::error(MB_SUCCESS!=rval,"could not get dist_between_arcs")) return rval;
if(debug) std::cout << " curve-skin dist=" << d << std::endl;
// if less than the min_dist, this curve is the best (thus far)
if(d < min_dist) {
min_dist = d;
curve_set = curve_sets[i];
curve_set_idx = i;
curve_is_reversed = false;
curve = temp_curve;
skin_arc = temp_skin;
skin_pos = pos;
}
}
// is it reverse oriented?
if(front_endpt==temp_curve.back() && SENSE_FORWARD!=sense) {
reverse( temp_curve.begin(), temp_curve.end() );
// find the closest skin pt to the curve endpt
unsigned pos;
// if only one curve is left, take the entire skin. Otherwise, due to
// coordinate drift via merging the closest skin pt may not be the correct one.
if(1==curve_sets.size()) {
pos = skin_loop.size()-1;
} else {
rval = gen::find_closest_vert( temp_curve.back(), skin_loop, pos, temp_curve_len+extra );
if(gen::error(MB_SUCCESS!=rval,"could not find_closest_vert")) return rval;
}
if(debug) std::cout << " end of skin arc=" << skin_loop[pos] << std::endl;
// SPECIAL CASE: If the skin is a circle, create an arc out of the circle
if(skin_loop[pos] == skin_loop.front()) pos = skin_loop.size()-1;
// create a skin arc to test against the curve
std::vector<EntityHandle> temp_skin(skin_loop.begin(), skin_loop.begin()+pos+1);
double d;
rval = gen::dist_between_arcs( debug, temp_skin, temp_curve, d );
if(gen::error(MB_SUCCESS!=rval,"could not get dist_between_arcs")) return rval;
if(debug) std::cout << " curve-skin dist=" << d << std::endl;
// if less than the min_dist, this curve is the best (thus far)
if(d < min_dist) {
min_dist = d;
curve_set = curve_sets[i];
curve_set_idx = i;
curve_is_reversed = true;
curve = temp_curve;
skin_arc = temp_skin;
skin_pos = pos;
}
}
} // loop over all remaining curves of the surface
// If no adjacent curves were found, something is wrong
if(0==curve_set) {
std::cout << " no adjacent curve found" << std::endl;
for(unsigned i=0; i<curve_sets.size(); ++i) {
std::cout << " curve " << gen::geom_id_by_handle(curve_sets[i])
<< " is unsealed" << std::endl;
}
return MB_FAILURE;
}
// If the average distance between the closest skin and curve is too far...
if(100*FACET_TOL<=min_dist) {
std::cout << " warning8: curve too far from skin, average_dist="
<< min_dist << std::endl;
if(1.0<=min_dist) return MB_FAILURE;
}
// remove the chosen curve the set of unsealed curves
curve_sets.erase( curve_sets.begin()+curve_set_idx );
// remove the chosen skin arc from the rest of the skin
skin_loop.erase( skin_loop.begin(), skin_loop.begin()+skin_pos );
// If the entire skin loop has been sectioned into arcs, a single point remains.
// This is because the skin_arc needs to have the same back point as the front
// of the remaining skin_loop. If a single point remains, remove it.
if(1==skin_loop.size()) skin_loop.clear();
if(debug) std::cout << " curve " << gen::geom_id_by_handle(curve_set)
<< " paired with skin, min_dist =" << min_dist << std::endl;
return MB_SUCCESS;
}
///Runs the make_watertight algorithm on the edge (curve) and skin (arc).
/// See PHD Thesis of Brandon Smith University of Wisconsin - Madison 2011
/// for details
// -Instead of altering the skin and curve vectors, make them const. Put the
// sealed curve in a new vector, using only push_back. This
// would avoid all of the really slow inserts and erases in the curve and skin vectors.
ErrorCode seal_arc_pair( const bool debug,
const double FACET_TOL,
const Tag normal_tag,
std::vector<EntityHandle> &edge, /* in */
std::vector<EntityHandle> &skin /* in/out */,
const int surf_id ) {
if(debug) {
std::cout << "edge before sealing:" << std::endl;
gen::print_loop(edge);
std::cout << "skin before sealing:" << std::endl;
gen::print_loop(skin);
}
ErrorCode rval;
const double TOL_SQR = FACET_TOL*FACET_TOL;
if(gen::error(edge.empty() || skin.empty(),"edge or skin has no verts"))
return MB_FAILURE;
//**************************************************************************
// Merge the front of the skin to the front of the curve
//**************************************************************************
{
EntityHandle keep_vert = edge.front();
EntityHandle delete_vert = skin.front();
if(keep_vert != delete_vert) {
double merge_dist;
rval = gen::dist_between_verts( keep_vert, delete_vert, merge_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get merge_dist g")) return rval;
if(debug) {
std::cout << " merged skin_vert=" << delete_vert << " to edge_vert=" << keep_vert
<< " merge_dist=" << merge_dist << std::endl;
}
if(FACET_TOL < merge_dist) {
std::cout << " warning0: front pt merge_dist=" << merge_dist << std::endl;
}
rval = zip::merge_verts( keep_vert, delete_vert, skin, edge );
if(gen::error(MB_SUCCESS!=rval,"could not merge verts g")) return rval;
}
}
//**************************************************************************
// Merge the back of the skin to the back of the curve
//**************************************************************************
{
EntityHandle keep_vert = edge.back();
EntityHandle delete_vert = skin.back();
if(keep_vert != delete_vert) {
double merge_dist;
rval = gen::dist_between_verts( keep_vert, delete_vert, merge_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get merge_dist h")) return rval;
if(debug) {
std::cout << " merged skin_vert=" << delete_vert << " to edge_vert=" << keep_vert
<< " merge_dist=" << merge_dist << std::endl;
}
if(FACET_TOL < merge_dist) {
std::cout << " warning0: surf " << surf_id << " back pt merge_dist="
<< merge_dist << std::endl;
if(1000*FACET_TOL < merge_dist) return MB_FAILURE;
}
rval = zip::merge_verts( keep_vert, delete_vert, skin, edge );
if(gen::error(MB_SUCCESS!=rval,"could not merge verts g")) return rval;
}
}
// ************************************************************************
// zip the skin to the curve until the end of the curve is reached.
// ************************************************************************
// Zip the edge until we reach the end of the curve.
unsigned int e_pos = 1, s_pos = 1;
bool edge_is_next;
double dist, e_dist, s_dist, es_dist;
while(true) {
// Special Case: Through merging, a curve may have only a single vertex
if(e_pos==edge.size() || s_pos==skin.size()) break;
rval = gen::squared_dist_between_verts( edge[e_pos-1], edge[e_pos], e_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get e_dist")) return rval;
rval = gen::squared_dist_between_verts( edge[e_pos-1], skin[s_pos], s_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get s_dist")) return rval;
if(debug) {
std::cout << " e_pos=" << e_pos << " e_dist="
<< e_dist << " vert=" << edge[e_pos] << " size="
<< edge.size() << std::endl;
std::cout << " s_pos=" << s_pos << " s_dist="
<< s_dist << " vert=" << skin[s_pos] << " size="
<< skin.size() << std::endl;
}
// If skin is next, move the skin pt to the line extending from the next
// curve edge.
if(e_dist > s_dist) {
edge_is_next = false;
double move_dist;
rval = gen::line_point_dist( edge[e_pos-1], edge[e_pos], skin[s_pos], move_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get line_point_dist")) return rval;
if(10*FACET_TOL < move_dist) {
std::cout << " warning5: surf " << surf_id << " vertex move_dist="
<< move_dist << std::endl;
}
rval = gen::point_line_projection( edge[e_pos-1], edge[e_pos], skin[s_pos]);
if(gen::error(MB_SUCCESS!=rval,"could not get point_line_projection")) return rval;
rval = gen::squared_dist_between_verts( edge[e_pos-1], skin[s_pos], s_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get s_dist b")) return rval;
dist = s_dist;
if(debug) std::cout << "skin is next, projected dist=" << dist << std::endl;
} else {
edge_is_next = true;
dist = e_dist;
if(debug) std::cout << "edge is next" << std::endl;
}
// find the cs_dist after moving the skin to the curve (if skin_is_next)
rval = gen::squared_dist_between_verts( edge[e_pos], skin[s_pos], es_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get es_dist")) return rval;
// **************************************************************************
// Merge with previous vert if it is too close
// **************************************************************************
if(dist < TOL_SQR) {
EntityHandle keep_vert = edge[e_pos-1];
if(edge_is_next) {
EntityHandle delete_vert = edge[e_pos];
if(keep_vert != delete_vert) { // cannot merge the same vert
if(debug) {
double merge_dist;
rval = gen::dist_between_verts( keep_vert, delete_vert, merge_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get merge_dist")) return rval;
std::cout << " merged edge_vert=" << delete_vert << " to edge_vert="
<< keep_vert << " merge_dist=" << merge_dist <<std::endl;
}
rval = zip::merge_verts( keep_vert, delete_vert, skin, edge );
if(gen::error(MB_SUCCESS!=rval,"could not merge_verts a")) return rval;
}
if(edge.size() < e_pos+1) {
std::cout << "edge.size()=" << edge.size() << " e_pos=" << e_pos << std::endl;
}
edge.erase( edge.begin() + e_pos );
} else {
EntityHandle delete_vert = skin[s_pos];
if(keep_vert != delete_vert) {
if(debug) {
double merge_dist;
rval = gen::dist_between_verts( keep_vert, delete_vert, merge_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get merge_dist b")) return rval;
std::cout << " merged skin_vert=" << delete_vert << " to edge_vert="
<< keep_vert << " merge_dist=" << merge_dist << std::endl;
}
rval = zip::merge_verts( keep_vert, delete_vert, skin, edge );
if(gen::error(MB_SUCCESS!=rval,"could not merge_verts b")) return rval;
}
if(skin.size() < s_pos+1) {
std::cout << "skin.size()=" << skin.size() << " s_pos=" << s_pos << std::endl;
}
skin.erase( skin.begin() + s_pos );
}
// **************************************************************************
// merge with next vert if it is too close
// **************************************************************************
// If the next hits are at the same distance or within merge tol,
// advance the curve ahead. We need to merge all the verts between the
// current skin vert and the curve vert that we are merging to. This
// could be more than one!
//} else if(FACET_TOL > fabs(c_dist-s_dist)) {
} else if(TOL_SQR > es_dist) {
// merge the verts if they are not the same
EntityHandle keep_vert = edge[e_pos];
if(skin[s_pos] != keep_vert) {
EntityHandle delete_vert= skin[s_pos];
if(debug) {
double merge_dist;
rval = gen::dist_between_verts( keep_vert, delete_vert, merge_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get merge_dist c")) return rval;
std::cout << " merged skin_vert=" << delete_vert << " to edge_vert="
<< keep_vert << " merge_dist=" << merge_dist << std::endl;
}
rval = zip::merge_verts( keep_vert, delete_vert, skin, edge );
if(gen::error(MB_SUCCESS!=rval,"could not merge_verts b")) return rval;
}
s_pos++;
e_pos++;
// Are there more skin verts in proximity to the merged pt?
while(true) {
// check to see if skin still exists
if(s_pos == skin.size()) break;
// check if the distance is less than merge tol
EntityHandle delete_vert= skin[s_pos];
double merge_dist;
rval = gen::dist_between_verts( keep_vert, delete_vert, merge_dist);
if(gen::error(MB_SUCCESS!=rval,"could not get merge_dist d")) return rval;
if(FACET_TOL < merge_dist) break;
// merge the verts if they are not the same
if(keep_vert != delete_vert) {
if(debug) {
std::cout << " merged skin_vert=" << delete_vert << " to edge_vert="
<< keep_vert << " merge_dist=" << merge_dist << std::endl;
}
rval = zip::merge_verts( keep_vert, delete_vert, skin, edge );
if(gen::error(MB_SUCCESS!=rval,"could not merge_verts d")) return rval;
}
skin.erase( skin.begin() + s_pos );
}
// Are there more curve verst in proximity to the merged pt?
while(true) {
// check to see if curve still exists
if(e_pos == edge.size()) break;
// check if the distance is less than merge tol
EntityHandle delete_vert= edge[e_pos];
double merge_dist;
rval = gen::dist_between_verts( keep_vert, delete_vert, merge_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get merge_dist e")) return rval;
if(FACET_TOL < merge_dist) break;
// merge the verts if they are not the same
if(keep_vert != delete_vert) {
if(debug) {
std::cout << " merged edge_vert=" << delete_vert << " to edge_vert="
<< keep_vert << " merge_dist=" << merge_dist << std::endl;
}
rval = zip::merge_verts( keep_vert, delete_vert, skin, edge );
if(gen::error(MB_SUCCESS!=rval,"could not merge_verts e")) return rval;
}
edge.erase( edge.begin() + e_pos );
}
// **************************************************************************
// Otherwise do a t_joint
// **************************************************************************
} else {
if(edge_is_next) {
if(debug) {
std::cout << " zip phase: t_joint is inserting edge vert "
<< edge[e_pos] << " between edge vert " << edge[e_pos-1]
<< " and skin vert " << skin[s_pos] << std::endl;
}
double move_dist;
rval = gen::line_point_dist( edge[e_pos-1], skin[s_pos], edge[e_pos], move_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get line_point_dist")) return rval;
if(10*FACET_TOL < move_dist) {
std::cout << " warning6: surf " << surf_id << " vertex move_dist="
<< move_dist << std::endl;
}
rval = zip::t_joint( normal_tag, edge[e_pos-1], edge[e_pos], skin[s_pos], debug );
if(gen::error(MB_SUCCESS!=rval,"tjoint failed a")) return rval;
skin.insert( skin.begin()+s_pos, edge[e_pos] );
e_pos++;
s_pos++;
} else { // skin is next: move the t to the curve
if(debug) {
std::cout << " zip phase: inserting projected skin vert "
<< skin[s_pos] << " between edge verts "
<< edge[e_pos-1] << " and " << edge[e_pos] << std::endl;
}
double move_dist;
rval = gen::line_point_dist( edge[e_pos-1], edge[e_pos], skin[s_pos], move_dist );
if(gen::error(MB_SUCCESS!=rval,"could not get line_point_dist")) return rval;
if(10*FACET_TOL < move_dist) {
std::cout << " warning6: surf " << surf_id << " vertex move_dist="
<< move_dist << std::endl;
}
rval = zip::t_joint( normal_tag, edge[e_pos-1], skin[s_pos], edge[e_pos], debug );
if(gen::error(MB_SUCCESS!=rval,"tjoint failed b")) return rval;
edge.insert( edge.begin() + e_pos, skin[s_pos] );
e_pos++;
s_pos++;
}
}
// exit if at the end of the curve
if(e_pos==edge.size() || s_pos==skin.size()) break;
// The smallest edge length should be no less than MERGE_TOL.
if(2 <= e_pos) {
double d;
rval = gen::squared_dist_between_verts( edge[e_pos-1], edge[e_pos-2], d );
if(gen::error(MB_SUCCESS!=rval,"could not get dist")) return rval;
if(TOL_SQR > d) {
std::cout << "zip_loop: d=" << d << std::endl;
gen::print_vertex_coords(edge[e_pos-1]);
gen::print_vertex_coords(edge[e_pos-2]);
std::cout << "warning7: surf " << surf_id
<< " adjacent edge points are closer than FACET_TOL" << std::endl;
}
}
// The position should be the same. Do not exceed array bounds when checking.
if(gen::error(e_pos!=s_pos,"skin and edge positions do not match")) return rval;
if(edge[e_pos-1] != skin[s_pos-1]) {
std::cout << "edge[" << e_pos-1 << "]=" << edge[e_pos-1]
<< " skin[" << s_pos-1 << "]=" << skin[s_pos-1] << std::endl;
}
if(gen::error(edge[e_pos-1]!=skin[s_pos-1],"skin and edge vert does not match"))
return rval;
}
// The skin and curve should be the same size
if(edge.size()!=skin.size()) {
std::cout << " surf " << surf_id
<< " sealed skin and curve are not the same size" << std::endl;
if(debug) {
std::cout << "edge:" << std::endl;
gen::print_loop(edge);
std::cout << "skin:" << std::endl;
gen::print_loop(skin);
}
//return MB_FAILURE;
}
if(debug) {
std::vector< std::vector<EntityHandle> > temp;
temp.push_back(edge);
temp.push_back(skin);
rval = zip::test_zipping(FACET_TOL, temp);
if(gen::error(MB_SUCCESS!=rval,"sealing test failed")) return rval;
}
return MB_SUCCESS;
}
/// seals the skin_loop to the closest curves in curve sets in a watertight fashion
ErrorCode seal_loop( bool debug,
const double FACET_TOL,
const Tag normal_tag,
const Tag orig_curve_tag,
const EntityHandle surf_set,
std::vector<EntityHandle> &curve_sets,
std::vector<EntityHandle> &skin_loop,
bool verbose) {
ErrorCode rval;
debug = false;
// Find a curve that corresponds to the skin. Note that because there is more
// than one skin loop, not all curves of the surface correspond to each skin
// Loop.
// To establish an inital connection, find the curve with endpoint closest
// to a skin point.
if(debug) std::cout << "seal_loop: new loop contains " << skin_loop.size()
<< " skin pts" << std::endl;
// If skin remains but all the curves are zipped an error has occured.
if( curve_sets.empty() ) {
std::cout << "seal_loop: no curves are left, but skin remains" << std::endl;
gen::print_loop(skin_loop);
skin_loop.clear();
return MB_FAILURE;
}
//**************************************************************************
// choose the closest curve endpoint and align the loop with it
//**************************************************************************
/* Find the closest skin pt to the first curve's front endpt.
MAJOR DESIGN PUSHER: The curves cannot be assembled into loops without
knowing orientation (which we don't know). Instead this information is
pulled from the skin loops. This is why we do not first create loops from
curves.
If zipping fails, the failed loop and curve are deleted from the candidate
set of things to be zipped. It is likely that curves of the failed zip
still exist even though their corresponding loop has been removed. Not all
curves in this list will ever be zipped. Select a curve that can be zipped. */
unsigned pos = 0, curve_idx = 0;
EntityHandle closest_skin_pt = 0, closest_front_curve_endpt = 0;
double min_dist = std::numeric_limits<double>::max();
for(unsigned i=0; i<curve_sets.size(); ++i) {
// get geometric vertices
Range endpt_sets;
rval = MBI()->get_child_meshsets(curve_sets[i], endpt_sets );
if(gen::error(MB_SUCCESS!=rval,"could not get endpt_sets")) return rval;
if(gen::error(endpt_sets.empty() || 2<endpt_sets.size(),
"too many endpt_sets")) return MB_FAILURE;
std::vector<EntityHandle> endpts;
for(unsigned j=0; j<endpt_sets.size(); ++j) {
Range endpt;
rval = MBI()->get_entities_by_type( endpt_sets[j], MBVERTEX, endpt );
if(gen::error(MB_SUCCESS!=rval,"could not get endpt")) return rval;
if(gen::error(1!=endpt.size(),"not one endpt")) return MB_FAILURE;
endpts.push_back( endpt.front() );
}
// check to ensure that the endpt sets aren't degenerate
if(2==endpt_sets.size() && endpts.front()==endpts.back() && debug ) {
std::cout << " warning9: curve " << gen::geom_id_by_handle(curve_sets[i])
<< " geometric endpoints degenerate" << std::endl;
}
// check to ensure that geometric verts are the curve endpts
std::vector<EntityHandle> curve;
rval = arc::get_meshset( curve_sets[i], curve );
if(gen::error(MB_SUCCESS!=rval,"could not get_meshset")) return rval;
if(1==endpt_sets.size()) {
if(gen::error(curve.front()!=curve.back(),"endpt discrepancy")) return MB_FAILURE;
if(gen::error(curve.front()!=endpts.front(),
"geometric verts inconsistent with curve")) return MB_FAILURE;
} else {
if(curve.front()==curve.back())
if(debug) std::cout << " warning10: degenerate curve endpts" << std::endl;
if(gen::error(curve.front()!=endpts.front() && curve.front()!=endpts.back(),
"endpts not consistent")) return MB_FAILURE;
if(gen::error(curve.back()!=endpts.front() && curve.back()!=endpts.back(),
"endpts not consistent")) return MB_FAILURE;
}
// determine the orientation of the curve wrt the surf.
int sense;
if(debug)
{
std::cout << "surf_set = " << gen::geom_id_by_handle(surf_set) << std::endl;
std::cout << "curve_set = " << gen::geom_id_by_handle(curve_sets[i]) << std::endl;
}
rval = gen::get_curve_surf_sense( surf_set, curve_sets[i], sense );
if(gen::error(MB_SUCCESS!=rval,"could not get_curve_surf_sense")) return rval;
// select the front wrt the skin.
EntityHandle curve_endpt = (SENSE_FORWARD==sense) ? curve.front() : curve.back();
// find closest skin vert to front of curve
std::vector<double> d;
std::vector<unsigned> p;
rval = gen::find_closest_vert( 0, curve_endpt, skin_loop, p, d);
if(gen::error(MB_SUCCESS!=rval,"could not find_closest_vert")) return rval;
if(debug) std::cout << "zip_loop: loop-curve endpt dist=" << d.front() << " skin_vert="
<< skin_loop[p.front()] << " curve="
<< gen::geom_id_by_handle(curve_sets[i]) << " front_endpt="
<< curve_endpt << std::endl;
if(d.front() < min_dist) {
min_dist = d.front();
curve_idx = i;
pos = p.front();
closest_front_curve_endpt = curve_endpt;
closest_skin_pt = skin_loop[p.front()];
}
}
EntityHandle front_endpt = closest_front_curve_endpt;
// The closest points should be within facet tolerance
if(100*FACET_TOL<min_dist && verbose) {
std::cout << "closest skin pt farther than 100*FACET_TOL from curve vert ("
<< min_dist << ")" << std::endl;
if(true) {
std::cout << " skin pt:" << std::endl;
rval = MBI()->list_entity(closest_skin_pt);
if(gen::error(MB_SUCCESS!=rval,"error listing skin pt")) return rval;
std::cout << " curve vert:" << std::endl;
rval = MBI()->list_entity(front_endpt);
if(gen::error(MB_SUCCESS!=rval,"error listing curve_vert")) return rval;
}
return rval;
}
if(debug) {
std::cout << "closest skin vert=" << skin_loop[pos] << " pos=" << pos
<< " min_dist=" << min_dist << " curve="
<< gen::geom_id_by_handle(curve_sets[curve_idx])
<< " front_endpt=" << closest_front_curve_endpt << std::endl;
}
/* Take the skin loops and advance it such that our common point is at
location 0. Ensure that that both endpoints are the same. */
std::vector<EntityHandle> temp_loop;
temp_loop.reserve(skin_loop.size());
std::vector<EntityHandle>::iterator j = temp_loop.begin();
std::vector<EntityHandle>::iterator k = skin_loop.begin();
// Do not insert the back endpoint (avoid duplicate).
temp_loop.insert( j, k+pos, k+skin_loop.size()-1 );
j = temp_loop.begin(); // j became invalid because temp_loop resized
j += skin_loop.size() - pos - 1;
temp_loop.insert( j, k, k+pos+1 );
if(gen::error(temp_loop.size()!=skin_loop.size(),"loop size not conserved")) return MB_FAILURE;
assert(temp_loop.size() == skin_loop.size()); // same size
if(gen::error(temp_loop[0]!=temp_loop[temp_loop.size()-1],
"loop endpts not continuous")) return MB_FAILURE;
assert(temp_loop[0] == temp_loop[temp_loop.size()-1]); // same endpoint
skin_loop = temp_loop;
if(debug) {
std::cout << " skin:" << std::endl;
}
// Create a set to store skin_loop so that handles are updated during merging.
// This prevents stale handles, and avoids O(n) search through every handle in
// the skin loop if manually updating the skin_loop vector.
EntityHandle skin_loop_set;
rval = MBI()->create_meshset( MESHSET_TRACK_OWNER|MESHSET_ORDERED, skin_loop_set );
if(gen::error(MB_SUCCESS!=rval,"creating skin_loop_set failed")) return rval;
while(!skin_loop.empty()) {
//**************************************************************************
// Select the curve adjacent to the common point that best matches the skin
// using average distance. Chop the corresponding arc of skin, to form a
// curve-skin_arc pair.
//**************************************************************************
bool curve_is_reversed;
EntityHandle curve_set;
std::vector<EntityHandle> curve, skin_arc;
rval = create_arc_pair( FACET_TOL, surf_set, skin_loop, curve_sets, front_endpt,
debug, curve_set, curve_is_reversed, curve, skin_arc );
if(gen::error(MB_SUCCESS!=rval," pair creation failed")) return rval;
// Let moab store skin loop to avoid stale vert handles from merging.
rval = arc::set_meshset( skin_loop_set, skin_loop );
if(gen::error(MB_SUCCESS!=rval,"setting skin_loop_set failed")) return rval;
// The original faceted curves are never used. Instead they are replaced by
// skin. This reduces the number of new triangles created.
int orig_curve;
rval = MBI()->tag_get_data( orig_curve_tag, &curve_set, 1, &orig_curve );
if(gen::error(MB_SUCCESS!=rval,"can't get tag")) return rval;
// If the tag is non-zero, the facet edge has already been replaced.
if(orig_curve) {
// this tag is used to mark the edge as updated
int false_int = 0;
rval = MBI()->tag_set_data( orig_curve_tag, &curve_set, 1, &false_int );
if(gen::error(MB_SUCCESS!=rval,"can't set tag")) return rval;
// merge new endpoints to old endpoints
if(curve.front()!=skin_arc.front()) {
rval = zip::merge_verts( curve.front(), skin_arc.front(), curve, skin_arc );
if(gen::error(MB_SUCCESS!=rval,"merge verts failed")) return rval;
}
if(curve.back()!=skin_arc.back()) {
rval = zip::merge_verts( curve.back(), skin_arc.back(), curve, skin_arc );
if(gen::error(MB_SUCCESS!=rval,"merge verts failed")) return rval;
}
// replace the faceted edge with a skin arc
curve = skin_arc;
if(debug) std::cout << " curve " << gen::geom_id_by_handle(curve_set)
<< " has been replaced by skin:" << std::endl;
} else {
// seal the pair together
std::vector<EntityHandle> sealed_curve;<--- Unused variable: sealed_curve
rval = seal_arc_pair( debug, FACET_TOL, normal_tag, curve, skin_arc,
gen::geom_id_by_handle(surf_set) );
if(gen::error(MB_SUCCESS!=rval, " can't seal pair")) return rval;
}
// get new front_endpt to guide selection of next curve
front_endpt = curve.back();
// To preserve the original rotation, reverse the curve if it has been reversed
if(curve_is_reversed) reverse( curve.begin(), curve.end() );
// set the sealed edge
rval = arc::set_meshset( curve_set, curve );
if(gen::error(MB_SUCCESS!=rval,"setting curve set failed")) return rval;
// Get skin_loop to cut an arc from it
rval = arc::get_meshset( skin_loop_set, skin_loop );
if(gen::error(MB_SUCCESS!=rval,"getting skin_loop set failed")) return rval;
}
// The skin_loop_set is no longer needed.
rval = MBI()->delete_entities( &skin_loop_set, 1 );
if(gen::error(MB_SUCCESS!=rval,"deleting skin_loop_set failed")) return rval;
return MB_SUCCESS;
}
// input: surface sets, ordered curve sets,
// output: skin arcs corresponding to curves are added to parent surface sets
ErrorCode prepare_surfaces(Range &surface_sets,
Tag geom_tag, Tag id_tag, Tag normal_tag, Tag merge_tag,
Tag orig_curve_tag,
const double SME_RESABS_TOL, const double FACET_TOL,
const bool debug, bool verbose)
{
ErrorCode result;
// loop over each surface meshset
for(Range::iterator i=surface_sets.begin(); i!=surface_sets.end(); i++ )<--- Prefer prefix ++/-- operators for non-primitive types.
{
// get the surf id of the surface meshset
int surf_id;
result = MBI()->tag_get_data( id_tag, &(*i), 1, &surf_id );
if(gen::error(MB_SUCCESS!=result,"could not get id tag")) return result;
assert(MB_SUCCESS == result);
if(debug) std::cout << " surf id= " << surf_id << std::endl;
// get the 2D entities in the surface set
Range dim2_ents;
result = MBI()->get_entities_by_dimension( *i, 2, dim2_ents );
if(gen::error(MB_SUCCESS!=result,"could not get 3D entities")) return result;
assert(MB_SUCCESS == result);
// get facets of the surface meshset
Range tris;
result = MBI()->get_entities_by_type( *i, MBTRI, tris );
if(gen::error(MB_SUCCESS!=result,"could not get tris")) return result;
assert(MB_SUCCESS == result);
// Remove any 2D entities that are not triangles. This is needed because
// ReadCGM will add quads and polygons to the surface set. This code only
// works with triangles.
Range not_tris = subtract( dim2_ents, tris );
if(!not_tris.empty()) {
result = MBI()->delete_entities( not_tris );
if(gen::error(MB_SUCCESS!=result,"could not delete not_tris")) return result;
assert(MB_SUCCESS == result);
std::cout << " removed " << not_tris.size()
<< " 2D elements that were not triangles from surface "
<< surf_id << std::endl;
}
// Get the curves and determine the number of unmerged curves
std::vector<EntityHandle> curve_sets, unmerged_curve_sets;
result = get_unmerged_curves( *i , curve_sets, unmerged_curve_sets, merge_tag, verbose, debug);
if(gen::error(MB_SUCCESS!=result, " could not get the curves and unmerged curves" )) return result;
// If all of the curves are merged, remove the surfaces facets.
if(unmerged_curve_sets.empty()) {
result = gen::delete_surface( *i , geom_tag, tris, surf_id, debug, verbose);
if( gen::error(MB_SUCCESS!=result, "could not delete surface" )) return result;
// adjust iterator so *i is still the same surface
i = surface_sets.erase(i) - 1;
continue;
}
// combine merged curve's surface senses
result = gen::combine_merged_curve_senses( curve_sets, merge_tag, debug );
if(gen::error(MB_SUCCESS!=result,"could not combine the merged curve sets")) return result;
// Save the normals of the facets. These will later be used to determine if
// the tri became inverted.
result = gen::save_normals( tris, normal_tag );
if(gen::error(MB_SUCCESS!=result,"could not save_normals")) return result;
assert(MB_SUCCESS == result);
// Check if edges exist
int n_edges;
result = MBI()->get_number_entities_by_type(0, MBEDGE, n_edges );
if(gen::error(MB_SUCCESS!=result,"could not get number of edges")) return result;
assert(MB_SUCCESS == result);
if(gen::error(0!=n_edges,"edges exist")) return result;
assert(0 == n_edges); //*** Why can't we have edges? (Also, this assertion is never used)
// get the range of skin edges from the range of facets
Skinner tool(MBI());
Range skin_edges, skin_edges2;
if(tris.empty()) continue; // nothing to zip
// The MOAB skinner is not used here currently as it doesn't allow
// make_watertight to close loops. The local version of find_skin is used instead.
// This should be ok as the local find_skin fundtion should only be avoided when checking meshes for watertightness
// to keep from altering the data set when checking.
result = tool.find_skin( 0, tris, 1, skin_edges, false);
if(gen::error(MB_SUCCESS!=result,"could not find_skin")) return result;
assert(MB_SUCCESS == result);
// merge the vertices of the skin
// BRANDON: For some reason cgm2moab does not do this? This was the
// problem with mod13 surf 881. Two skin verts were coincident. A tol=1e-10
// found the verts, but tol=0 did not.
Range skin_verts;
bool cont = false;
result = merge_skin_verts( skin_verts, skin_edges, SME_RESABS_TOL, surf_id, cont, debug);
if(gen::error(MB_SUCCESS!=result,"could not merge the skin verts")) return result;
if(cont) continue;
// take skin edges and create loops of vertices
std::vector < std::vector <EntityHandle> > skin;
cont = false;
result = create_skin_vert_loops ( skin_edges, tris, skin , surf_id, cont, debug);
if(gen::error(MB_SUCCESS!=result, " could not create skin loops of vertices")) return result;
if(cont) continue;
// separate the remainder into a new function seal surface??
// separate this part from prepare surfaces into make_mesh_watertight??
EntityHandle skin_loop_sets[skin.size()];
result = seal_surface_loops ( *i , skin_loop_sets , skin, curve_sets, normal_tag, orig_curve_tag, FACET_TOL, surf_id, debug);
if(gen::error(MB_SUCCESS!=result,"could not seal the surface loops")) return result;
// Remove the sets of skin loops
result = MBI()->delete_entities( &skin_loop_sets[0], skin.size() );
if(gen::error(MB_SUCCESS!=result,"failed to zip: deleting skin_loop_sets failed"))
return result;
} // loop over each surface
return MB_SUCCESS;
}
ErrorCode fix_normals(Range surface_sets, Tag id_tag, Tag normal_tag, const bool debug, const bool verbose) {
ErrorCode result;
if(debug) std::cout<< "number of surfaces=" << surface_sets.size() << std::endl;
int inverted_tri_counter = 0;
// loop over each surface meshset
for(Range::iterator i=surface_sets.begin(); i!=surface_sets.end(); i++ ) {<--- Prefer prefix ++/-- operators for non-primitive types.
// get the surf id of the surface meshset
int surf_id;
result = MBI()->tag_get_data( id_tag, &(*i), 1, &surf_id );
assert(MB_SUCCESS == result);
if(debug) std::cout << "fix_normals surf id=" << surf_id << std::endl;
// get facets from the surface meshset
Range tris;
result = MBI()->get_entities_by_type( *i, MBTRI, tris );
assert(MB_SUCCESS == result);
// get the normals, pre zipping
std::vector<CartVect> old_normals(tris.size()), new_normals(tris.size());
result = MBI()->tag_get_data( normal_tag, tris, &old_normals[0]);
assert(MB_SUCCESS == result);
// get the normals, post zipping
result = gen::triangle_normals( tris, new_normals );
assert(MB_SUCCESS == result);
// test the normals, finding the inverted tris
std::vector<int> inverted_tri_indices;
result = zip::test_normals( old_normals, new_normals, inverted_tri_indices);
assert(MB_SUCCESS == result);
// insert the inverted tris into a range
Range inverted_tris;
for(unsigned int j=0; j<inverted_tri_indices.size(); j++) {
inverted_tris.insert( tris[inverted_tri_indices[j]] );
if(debug) gen::print_triangle( tris[inverted_tri_indices[j]], false );
}
// do edges exist?
int n_edges;
result = MBI()->get_number_entities_by_type( 0, MBEDGE, n_edges );
assert(MB_SUCCESS == result);
assert(0 == n_edges); // *** Why can't we have edges?
// fix the inverted tris
inverted_tri_counter += inverted_tris.size();
result = zip::remove_inverted_tris(normal_tag, inverted_tris, debug );
if(MB_SUCCESS != result)
std::cout << " failed to fix inverted triangles in surface " << surf_id << std::endl;
// if fix_normals exits on an error, we still need to remove its edges
result = delete_all_edges();
assert(MB_SUCCESS == result);
}
if(verbose)
{
std::cout << " Before fixing, " << inverted_tri_counter
<< " inverted triangles were found." << std::endl;
}
return MB_SUCCESS;
}
ErrorCode restore_moab_curve_representation( const Range curve_sets ) {
ErrorCode result;
for(Range::const_iterator i=curve_sets.begin(); i!=curve_sets.end(); ++i) {
// get the ordered verts
std::vector<EntityHandle> ordered_verts;
result = arc::get_meshset( *i, ordered_verts );
assert(MB_SUCCESS==result);
if(MB_SUCCESS != result) return result;
// Check for duplicate verts. This should not happen, but could if line
// surfaces exist. This happens when feature size is violated and skin
// from curves on the other side of the 1D line surf gets sealed.
if( 1<ordered_verts.size() ) {
for(std::vector<EntityHandle>::iterator j=ordered_verts.begin()+1;
j!=ordered_verts.end(); ++j) {
if( *j == *(j-1) ) {
std::cout << "duplicate vertex found in curve "
<< gen::geom_id_by_handle(*i) << std::endl;
j = ordered_verts.erase(j) - 1;
}
}
}
// Check for a point curve (should never happen),
// a single degenerate edge (should never happen), or
// a degenerate loop of two edges (should never happen)
if( 4>ordered_verts.size() &&
ordered_verts.front()==ordered_verts.back() ) {
std::cout << "warning: curve " << gen::geom_id_by_handle(*i)
<< " is one degenerate edge" << std::endl;
//return MB_FAILURE; **** when this is uncommented, problems occur
}
// Determine if the curve is a loop or point curve. At least 4 verts are
// needed to form a loop.
bool is_loop = ( ordered_verts.front()==ordered_verts.back() &&
3<ordered_verts.size() );
// get geometric endpoint sets of the curve (may be stale)
Range endpt_sets;
result = MBI()->get_child_meshsets( *i, endpt_sets );
assert(MB_SUCCESS==result);
if(MB_SUCCESS != result) return result;
// do the correct number of endpt sets exist?
const unsigned int n_endpts = (is_loop) ? 1 : 2;
if(n_endpts != endpt_sets.size()) {
std::cout << "curve " << gen::geom_id_by_handle(*i) << " has " << n_endpts
<< " endpoints, but " << endpt_sets.size()
<< " endpoint sets exist" << std::endl;
}
// do they match the current endpoints?
for(Range::iterator j=endpt_sets.begin(); j!=endpt_sets.end(); ++j) {
Range endpt_vert;
result = MBI()->get_entities_by_handle( *j, endpt_vert );
if(MB_SUCCESS != result) return result;
assert(MB_SUCCESS==result);
if(1 != endpt_vert.size()) {
std::cout << "curve " << gen::geom_id_by_handle(*i)
<< " has" << endpt_vert.size()
<< " endpoint vertices in the geometric vertex set" << std::endl;
return MB_INVALID_SIZE;
}
if(endpt_vert.front()!=ordered_verts.front() &&
endpt_vert.front()!=ordered_verts.back() ) {
std::cout << "curve " << gen::geom_id_by_handle(*i)
<< " endpt sets do not match" << std::endl;
}
}
// create the edges of the curve
std::vector<EntityHandle> ordered_edges(ordered_verts.size()-1);
for(unsigned int j=0; j<ordered_verts.size()-1; ++j) {
EntityHandle edge;
result = MBI()->create_element( MBEDGE, &ordered_verts[j], 2, edge );
assert(MB_SUCCESS==result);
if(MB_SUCCESS != result) return result;
ordered_edges[j] = edge;
}
// If the curve is a loop, remove the duplicate endpoint.
if(is_loop) ordered_verts.pop_back();
// clear the set
result = MBI()->clear_meshset( &(*i), 1 );
assert(MB_SUCCESS==result);
if(MB_SUCCESS != result) return result;
// add the verts then edges to the curve set
result = MBI()->add_entities( *i, &ordered_verts[0], ordered_verts.size() );
assert(MB_SUCCESS==result);
if(MB_SUCCESS != result) return result;
result = MBI()->add_entities( *i, &ordered_edges[0], ordered_edges.size() );
assert(MB_SUCCESS==result);
if(MB_SUCCESS != result) return result;
}
return MB_SUCCESS;
}
ErrorCode get_geom_size_before_sealing( const Range geom_sets[],
const Tag geom_tag,
const Tag size_tag,
bool debug,
bool verbose )
{
ErrorCode rval;
for( int dim = 1 ; dim < 4 ; ++dim )
{
for(Range::iterator i=geom_sets[dim].begin() ; i != geom_sets[dim].end() ; i++)<--- Prefer prefix ++/-- operators for non-primitive types.
{
double size;
//std::cout << "dim = " << dim << " *i =" << *i << std::endl;
rval = gen::measure( *i, geom_tag, size, debug, verbose );
//std::cout << " here in gen mesaure" << std::endl;
if(gen::error(MB_SUCCESS!=rval,"could not measure"))
{
return rval;
}
rval = MBI()->tag_set_data( size_tag, &(*i), 1, &size );
//std::cout << " here in set tag data" << std::endl;
if(gen::error(MB_SUCCESS!=rval,"could not set size tag"))
{
return rval;
}
}
}
if (verbose)
{
std::cout << "finished in get_geom_size_before_sealing" << std::endl;
}
return MB_SUCCESS;
}
ErrorCode get_geom_size_after_sealing( const Range geom_sets[],
const Tag geom_tag,
const Tag size_tag,
const double FACET_TOL,
bool debug,
bool verbose ) {
// save the largest difference for each dimension
struct size_data {
double orig_size, new_size, diff, percent;
int id;
};
size_data largest_diff[3];
size_data largest_percent[3];
size_data smallest_size[3];
ErrorCode rval;
for(unsigned dim=1; dim<4; dim++) {
largest_diff[dim-1].diff = 0;
largest_percent[dim-1].percent = 0;
smallest_size[dim-1].orig_size = std::numeric_limits<int>::max();
for(Range::iterator i=geom_sets[dim].begin(); i!=geom_sets[dim].end(); i++) {<--- Prefer prefix ++/-- operators for non-primitive types.
double orig_size = 0, new_size = 0;
rval = MBI()->tag_get_data( size_tag, &(*i), 1, &orig_size );
if(MB_SUCCESS != rval) {
std::cout << "rval=" << rval << " id=" << gen::geom_id_by_handle(*i) << std::endl;
}
assert(MB_SUCCESS == rval);
rval = gen::measure( *i, geom_tag, new_size, debug, verbose );
assert(MB_SUCCESS == rval);
// Remember the largest difference and associated percent difference
double diff = fabs(new_size - orig_size);
double percent_diff = 100.0*diff/orig_size;
if(diff > largest_diff[dim-1].diff) {
largest_diff[dim-1].orig_size = orig_size;
largest_diff[dim-1].new_size = new_size;
largest_diff[dim-1].diff = diff;
largest_diff[dim-1].percent = percent_diff;
largest_diff[dim-1].id = gen::geom_id_by_handle(*i);
}
if(orig_size < smallest_size[dim-1].orig_size) {
smallest_size[dim-1].orig_size = orig_size;
smallest_size[dim-1].new_size = new_size;
smallest_size[dim-1].diff = diff;
smallest_size[dim-1].percent = percent_diff;
smallest_size[dim-1].id = gen::geom_id_by_handle(*i);
}
if(percent_diff > largest_percent[dim-1].percent) {
largest_percent[dim-1].orig_size = orig_size;
largest_percent[dim-1].new_size = new_size;
largest_percent[dim-1].diff = diff;
largest_percent[dim-1].percent = percent_diff;
largest_percent[dim-1].id = gen::geom_id_by_handle(*i);
}
bool print_warning = false;
// PROBLEM: There is no analytical "maximum" change for this. There are special
// cases in each that could be infinitely large. For example, a curve can oscillate
// up and down infinitely and still be within FACET_TOL of the geometric curve.
// The curve is changed only by merging vertices within FACET_TOL.
if(1 == dim) {
if(FACET_TOL < diff) print_warning = true;
// The surface cannot change more than its zipped curves.
} else if(2 == dim) {
Range curve_sets;
rval = MBI()->get_child_meshsets( *i, curve_sets );
double total_length = 0;
for(Range::iterator j=curve_sets.begin(); j!=curve_sets.end(); ++j) {
double length;
rval = MBI()->tag_get_data( size_tag, &(*j), 1, &length );
total_length += length;
}
if(total_length*FACET_TOL < fabs(new_size - orig_size)) print_warning = true;
// The volume cannot change more than the "cylinder" of error around each curve.
} else if(3 == dim) {
Range surf_sets;
rval = MBI()->get_child_meshsets( *i, surf_sets );
double total_length = 0;
for(Range::iterator j=surf_sets.begin(); j!=surf_sets.end(); ++j) {
Range curve_sets;
rval = MBI()->get_child_meshsets( *j, curve_sets );
for(Range::iterator k=curve_sets.begin(); k!=curve_sets.end(); ++k) {
double length;
rval = MBI()->tag_get_data( size_tag, &(*j), 1, &length );
total_length += length;
}
}
if(total_length*FACET_TOL*FACET_TOL*3.14 < fabs(new_size - orig_size)) {
print_warning = true;
}
} else {
return MB_FAILURE;
}
if(print_warning && debug) {
std::cout << " dim=" << dim << " id=" << gen::geom_id_by_handle(*i)
<< " orig_size=" << orig_size << " new_size=" << new_size << std::endl;
}
}
}
// print largest size change among each dimension
std::cout << "Summary of deformation due to sealing: largest absolute change" << std::endl;
std::cout.width(6);
for(unsigned dim=1; dim<4; dim++) {
std::cout << " dim=" << dim
<< ", id=" << largest_diff[dim-1].id
<< ", orig_size=" << largest_diff[dim-1].orig_size
<< ", new_size=" << largest_diff[dim-1].new_size
<< ", abs_change=" << largest_diff[dim-1].diff
<< ", percent_change=" << largest_diff[dim-1].percent << std::endl;
}
std::cout << "Summary of deformation due to sealing: largest percent change" << std::endl;
for(unsigned dim=1; dim<4; dim++) {
std::cout << " dim=" << dim
<< ", id=" << largest_percent[dim-1].id
<< ", orig_size=" << largest_percent[dim-1].orig_size
<< ", new_size=" << largest_percent[dim-1].new_size
<< ", abs_change=" << largest_percent[dim-1].diff
<< ", percent_change=" << largest_percent[dim-1].percent << std::endl;
}
std::cout << "Summary of deformation due to sealing: smallest size" << std::endl;
for(unsigned dim=1; dim<4; dim++) {
std::cout << " dim=" << dim
<< ", id=" << smallest_size[dim-1].id
<< ", orig_size=" << smallest_size[dim-1].orig_size
<< ", new_size=" << smallest_size[dim-1].new_size
<< ", abs_change=" << smallest_size[dim-1].diff
<< ", percent_change=" << smallest_size[dim-1].percent << std::endl;
}
std::cout.unsetf(std::ios::scientific|std::ios::showpos);
return MB_SUCCESS;
}
ErrorCode delete_merged_curves( Range &existing_curve_sets, Tag merge_tag, bool debug){
ErrorCode result;
Range curves_to_delete;
result = MBI()->get_entities_by_type_and_tag(0, MBENTITYSET, &merge_tag, NULL,
1, curves_to_delete);
assert(MB_SUCCESS == result);
// loop over the curves to delete
for(Range::const_iterator i=curves_to_delete.begin(); i!=curves_to_delete.end(); ++i) {
// get the curve_to_keep
EntityHandle curve_to_keep;
result = MBI()->tag_get_data( merge_tag, &(*i), 1, &curve_to_keep );
if(MB_SUCCESS != result) return result;
// get parent surface of the curve_to_delete
Range parent_surfs;
result = MBI()->get_parent_meshsets( *i, parent_surfs );
if(MB_SUCCESS != result) return result;
// remove the curve_to_delete and replace with curve_to_keep
for(Range::iterator j=parent_surfs.begin(); j!=parent_surfs.end(); ++j) {
result = MBI()->remove_parent_child( *j, *i );
if(MB_SUCCESS != result) return result;
result = MBI()->add_parent_child( *j, curve_to_keep );
if(MB_SUCCESS != result) return result;
}
}
result = MBI()->delete_entities( curves_to_delete );
assert(MB_SUCCESS == result);
if ( result != MB_SUCCESS )
{
std::cout << "Houston, we have a problem" << std::endl;
}
existing_curve_sets = subtract(existing_curve_sets, curves_to_delete );
if(debug) std::cout << "deleted " << curves_to_delete.size() << " curves." << std::endl;
return result;
}
ErrorCode delete_sealing_tags( Tag normal_tag, Tag merge_tag, Tag size_tag, Tag orig_curve_tag){
ErrorCode result;
result = MBI()->tag_delete( normal_tag );
if(MB_SUCCESS != result) return result;
result = MBI()->tag_delete( merge_tag );
if(MB_SUCCESS != result) return result;
result = MBI()->tag_delete( size_tag );
if(MB_SUCCESS != result) return result;
result = MBI()->tag_delete( orig_curve_tag );
if(MB_SUCCESS != result) return result;
return result;
}
ErrorCode get_unmerged_curves( EntityHandle surface, std::vector<EntityHandle> &curves,
std::vector<EntityHandle> &unmerged_curves,
Tag merge_tag,
bool verbose,
bool debug) {
ErrorCode result;
result = MBI()->get_child_meshsets( surface, curves );
if(gen::error(MB_SUCCESS!=result,"could not get child sets")) return result;
assert(MB_SUCCESS==result);
// Update the curve_sets with that contain entity_to_delete curves with their
// entity_to_keep curves. Unmerged_curve_sets will end up holding the curves
// of this surface that are not merged with another curve in this surface.
for(std::vector<EntityHandle>::iterator j=curves.begin();
j!=curves.end(); j++) {<--- Prefer prefix ++/-- operators for non-primitive types.
EntityHandle merged_curve, curve;
result = MBI()->tag_get_data( merge_tag, &(*j), 1, &merged_curve );
assert(MB_TAG_NOT_FOUND==result || MB_SUCCESS==result);
if(MB_TAG_NOT_FOUND == result) {
curve = *j;
} else if(MB_SUCCESS == result) {
if(debug) {
std::cout << " curve_id=" << gen::geom_id_by_handle(*j)
<< " is entity_to_delete" << std::endl;
}
curve = merged_curve;
// should parent-childs be updated for the entity_to_keep?
} else {
std::cout << "prepare_surfaces: result=" << result << std::endl;
return result;
}
// Add a curve (whether it is merged or not) if it is not in unmerged_merged_curve_sets.
// If it is merged, then the curve handle will appear later and we will remove it.
std::vector<EntityHandle>::iterator k=find(unmerged_curves.begin(),
unmerged_curves.end(), curve);
if(unmerged_curves.end() == k) {
unmerged_curves.push_back(curve);
} else {
unmerged_curves.erase(k);
}
// If all curves have a partner to be merged to, then unmerged_curve_sets will be empty.
}
return MB_SUCCESS;
}
ErrorCode create_skin_vert_loops( Range &skin_edges, Range tris, std::vector < std::vector <EntityHandle> > &skin , int surf_id, bool &cont, bool debug) {
ErrorCode result;
/* Remove pairs of edges that are geometrically the same but in opposite
order due to a faceting error ACIS. In other words, merge (a,b) and (b,a).
Examples are mod13surf280 and tbm_surf1605. */
result = arc::remove_opposite_pairs_of_edges_fast( skin_edges, debug );
if (MB_SUCCESS != result) {
std::cout << " surface " << surf_id << " failed to zip: could not remove opposite edges"
<< surf_id << std::endl;
result = MBI()->delete_entities(skin_edges);
if(gen::error(MB_SUCCESS!=result,"could not delete skin edges")) return result;
assert(MB_SUCCESS == result);
cont = true;
return result;
}
/* Order the edges so that the triangle is on their left side. Skin
edges are adjacent to only one triangle. */
bool catch_error = false;
for(Range::iterator j=skin_edges.begin(); j!=skin_edges.end(); j++) {<--- Prefer prefix ++/-- operators for non-primitive types.
Range adj_tris;
result = MBI()->get_adjacencies( &(*j), 1, 2, false, adj_tris );
if(gen::error(MB_SUCCESS!=result,"could not get adj tris")) return result;
assert(MB_SUCCESS == result);
Range skin_tri = intersect( adj_tris, tris );
if(1 != skin_tri.size()) {
std::cout << "skin_tri.size()=" << skin_tri.size() << std::endl;
catch_error = true;
break;
}
result = arc::orient_edge_with_tri( *j, skin_tri.front() );
if(gen::error(MB_SUCCESS!=result,"could not orient_edge_with_tri")) return result;
assert(MB_SUCCESS == result);
}
// I NEED TO ADD BETTER CLEANUP AFTER THESE FAILURE CONDITIONS
if(catch_error) {
std::cout << " surface " << surf_id << " failed to zip: could not orient edge"
<< std::endl;
result = MBI()->delete_entities(skin_edges);
if(gen::error(MB_SUCCESS!=result,"could not delete skin edges")) return result;
assert(MB_SUCCESS == result);
cont = true;
return result;
}
// Create loops with the skin edges.
std::vector< std::vector<EntityHandle> > skin_loops_of_edges;
result = arc::create_loops_from_oriented_edges( skin_edges, skin_loops_of_edges, debug );
if(MB_SUCCESS != result) {
std::cout << " surface " << surf_id << " failed to zip: could not create loops"
<< std::endl;
result = MBI()->delete_entities(skin_edges);
assert(MB_SUCCESS == result);
cont = true;
return result;
}
if(debug) std::cout << skin_loops_of_edges.size() << " skin loop(s)" << std::endl;
// Convert the loops of skin edges to loops of skin verts.
std::vector< std::vector<EntityHandle> > skin_temp(skin_loops_of_edges.size());
for(unsigned int j=0; j<skin_loops_of_edges.size(); j++) {
result = gen::ordered_verts_from_ordered_edges( skin_loops_of_edges[j], skin_temp[j] );
assert(MB_SUCCESS == result);
// check to make sure that the loop is closed
assert(skin_temp[j].front() == skin_temp[j].back());
}
skin=skin_temp;
// edges are no longer needed
result = MBI()->delete_entities(skin_edges);
if(gen::error(MB_SUCCESS!=result,"could not delete skin_edges")) return result;
assert(MB_SUCCESS == result);
return MB_SUCCESS;
}
ErrorCode merge_skin_verts ( Range &skin_verts, Range &skin_edges, double SME_RESABS_TOL, int surf_id, bool cont, bool debug) {
ErrorCode result;
result = MBI()->get_adjacencies( skin_edges, 0, false, skin_verts,
Interface::UNION );
if(gen::error(MB_SUCCESS!=result,"could not get adj verts")) return result;
assert(MB_SUCCESS == result);
result = gen::merge_vertices( skin_verts, SME_RESABS_TOL );
if (MB_SUCCESS != result) {
if(debug) std::cout << "result= " << result << std::endl;
std::cout << " surface " << surf_id << " failed to zip: could not merge vertices"
<< surf_id << std::endl;
result = MBI()->delete_entities(skin_edges);
assert(MB_SUCCESS == result);
cont = true;
return result;
}
// Merging vertices create degenerate edges.
result = arc::remove_degenerate_edges( skin_edges, debug );
if(MB_SUCCESS!=result) {
std::cout << " surface " << surf_id
<< " failed to zip: could not remove degenerate edges" << std::endl;
result = MBI()->delete_entities(skin_edges);
if(gen::error(MB_SUCCESS!=result,"could not delete skin edges")) return result;
assert(MB_SUCCESS == result);
cont = true;<--- Assignment of function parameter has no effect outside the function.
return result;
}
return MB_SUCCESS;
}
ErrorCode seal_surface_loops ( EntityHandle surf, EntityHandle skin_loops[] , std::vector < std::vector<EntityHandle> > skin, std::vector<EntityHandle> curves, Tag normal_tag, Tag orig_curve_tag, double FACET_TOL, int surf_id, bool debug) {
/* Get the curves that are part of the surface. Use vectors to store all curve
stuff so that we can remove curves from the set as they are zipped. */
// Place skin loops in meshsets to allow moab to update merged entities.
// This prevents stale handles. I suspect moab can use upward adjacencies
// to do this more efficiently than a manual O(n) search through an
// unsorted vector.
ErrorCode rval;
for(unsigned j=0; j<skin.size(); ++j) {
rval = MBI()->create_meshset( MESHSET_TRACK_OWNER|MESHSET_ORDERED, skin_loops[j] );
if(gen::error(MB_SUCCESS!=rval,"failed to zip: creating skin_loop_set failed"))
return rval;
rval = arc::set_meshset( skin_loops[j], skin[j] );
if(gen::error(MB_SUCCESS!=rval,"failed ot zip: setting skin_loop_set failed"))
return rval;
}
// Keep zipping loops until each is either zipped or failed. This function
// returns only after all loops are zipped or a failure occurs.
for(unsigned j=0; j<skin.size(); ++j) {
std::vector<EntityHandle> skin_loop;
rval = arc::get_meshset( skin_loops[j], skin_loop );
if(gen::error(MB_SUCCESS!=rval,"failed to zip: setting skin_loop_set failed"))
return rval;
rval = seal_loop( debug, FACET_TOL, normal_tag, orig_curve_tag, surf,
curves, skin_loop );
if(MB_SUCCESS != rval) {
std::cout << "failed to zip: surface " << surf_id << ": failed to seal a loop"
<< std::endl;
}
}
return MB_SUCCESS;
}
ErrorCode make_mesh_watertight(EntityHandle input_set, double &facet_tol, bool verbose)
{
ErrorCode result;
//added to this function because they are called in make_watertight but aren't used until here
const bool debug = false;
const bool check_geom_size = true;
// duplicated here from make_watertight, seemed to always be set to false
//bool is_acis=false;
// initialize mesh tags
Tag geom_tag, id_tag, normal_tag, merge_tag, faceting_tol_tag,
geometry_resabs_tag, size_tag, orig_curve_tag;
double sme_resabs_tol=1e-6;
// retrieve mesh tags necessary for sealing the mesh
result = gen::get_sealing_mesh_tags( facet_tol, sme_resabs_tol, geom_tag, id_tag, normal_tag, merge_tag, faceting_tol_tag,
geometry_resabs_tag, size_tag, orig_curve_tag);
if(gen::error(MB_SUCCESS!=result, "could not get the mesh tags")) return result;
// In practice, use 2*facet_tol because we are always comparing 2 faceted
// entities. If instead we were comparing a faceted entity and a geometric
// entitiy, then 1*facet_tol is correct.
const double SME_RESABS_TOL = sme_resabs_tol; // from ACIS through CGM
const double FACET_TOL = facet_tol; // specified by user when faceting cad
if(verbose)
{
std::cout << " faceting tolerance=" << facet_tol << " cm" << std::endl;
std::cout << " absolute tolerance=" << sme_resabs_tol << " cm" << std::endl;
}
// get all geometry sets and set tracking ordering options appropriately
Range geom_sets[4];
result=gen::get_geometry_meshsets( geom_sets, geom_tag, verbose);
if(gen::error(MB_SUCCESS!=result, "could not get the geometry meshsets")) return result;
// If desired, find each entity's size before sealing.
if(check_geom_size)
{
result = get_geom_size_before_sealing( geom_sets, geom_tag, size_tag, debug, verbose );
if(gen::error(MB_SUCCESS!=result,"measuring geom size failed")) return result;
}
if (verbose) std::cout << "Getting entity count before sealing..." << std::endl;
// Get entity count before sealing.
int orig_n_tris;
result = MBI()->get_number_entities_by_type( 0, MBTRI, orig_n_tris );
assert(MB_SUCCESS == result);
if(verbose)
{
std::cout << " input faceted geometry contains " << geom_sets[3].size() << " volumes, "
<< geom_sets[2].size() << " surfaces, " << geom_sets[1].size()
<< " curves, and " << orig_n_tris << " triangles" << std::endl;
}
if(verbose) std::cout << "Finding degenerate triangles... " << std::endl;
result = find_degenerate_tris();
if(gen::error(result!=MB_SUCCESS,"could not determine if triangles were degenerate or not")) return result;
result = prepare_curves(geom_sets[1], geom_tag, id_tag, merge_tag, FACET_TOL, debug, verbose);
if(gen::error(result!=MB_SUCCESS,"could not prepare the curves")) return(result);
result = gen::check_for_geometry_sets(geom_tag, verbose);
if(gen::error(MB_SUCCESS!=result,"no geometry sets exist in the model. Please check curve faceting.")) return result;
if (verbose)
{
std::cout << "Zipping loops and removing small surfaces whose curves were all merged as pairs..." << std::endl;
std::cout << "SME_RESABS_TOL = " << SME_RESABS_TOL << " FACET_TOL = " << FACET_TOL << std::endl;
}
result = prepare_surfaces(geom_sets[2], geom_tag, id_tag, normal_tag, merge_tag,
orig_curve_tag,SME_RESABS_TOL, FACET_TOL, debug);
if ( gen::error(result != MB_SUCCESS, "I have failed to zip")) return result;
// After zipping surfaces, merged curve entity_to_deletes are no longer needed.
// Swap surface parent-childs for curves to delete with curve to keep.
// ARE THEIR ORPHANED CHILD VERTEX SETS STILL AROUND?
if(verbose) std::cout << "Adjusting parent-child links then removing merged curves..." << std::endl;
result = delete_merged_curves( geom_sets[1], merge_tag, debug);
if(gen::error(MB_SUCCESS!=result, "could not delete the merged curves")) return result;
// SHOULD COINCIDENT SURFACES ALSO BE MERGED?
// 20100205 Jason: If child curves are the same, check to make sure each
// facet pt is within 2x tol of the opposing surface.
// This function is still screwed up, but 99% right.
if (verbose) std::cout << "Fixing inverted triangles..." << std::endl;
result = fix_normals(geom_sets[2], id_tag, normal_tag, debug, verbose);
assert(MB_SUCCESS == result);
// As sanity check, did zipping drastically change the entity's size?
if(check_geom_size && verbose) {
std::cout << "Checking size change of zipped entities..." << std::endl;
result = get_geom_size_after_sealing( geom_sets, geom_tag, size_tag, FACET_TOL, debug, verbose );
if(gen::error(MB_SUCCESS!=result,"measuring geom size failed")) return result;
}
// This tool stores curves as a set of ordered edges. MOAB stores curves as
// ordered vertices and edges. MOAB represents curve endpoints as geometry
// sets containing a singe vertex. This function restores MOAB's curve
// representation.
if (verbose) std::cout << "Restoring faceted curve representation..." << std::endl;
result = restore_moab_curve_representation( geom_sets[1] );
if(gen::error(MB_SUCCESS!=result,"restore_moab_curve_representation failed")) return result;
// If all of a volume's surfaces have been deleted, delete the volume.
if (verbose) std::cout << "Removing small volumes if all surfaces have been removed..." << std::endl;
for(Range::iterator i=geom_sets[3].begin(); i!=geom_sets[3].end(); ++i) {
int n_surfs;
result = MBI()->num_child_meshsets( *i, &n_surfs );
assert(MB_SUCCESS == result);
if(0 == n_surfs) {
// Remove the volume set. This also removes parent-child relationships.
std::cout << " deleted volume " << gen::geom_id_by_handle(*i) << std::endl;
result = MBI()->delete_entities( &(*i), 1);
assert(MB_SUCCESS == result);
i = geom_sets[3].erase(i) - 1;
}
}
// The obbtrees are no longer valid because the triangles have been altered.
// Surface and volume sets are tagged with tags holding the obb tree
// root handles. Somehow, delete the old tree without deleting the
// surface and volume sets, then build a new tree.
// removing this for now, has something to do with an interaction with DAGMC
// which doesn't actually occur any more
//if (verbose) std::cout << "Removing stale OBB trees..." << std::endl;
//result = cleanup::remove_obb_tree();
//assert(MB_SUCCESS == result);
//std::cout << "INSERT FUNCTION HERE TO REMOVE STALE VERTS, EDGES, TRIS, VERT SETS, ETC"
// << std::endl;
// Resetting meshsets so that they no longer track.
if (verbose) std::cout << "Restoring original meshset options and tags..." << std::endl;
for(unsigned dim=0; dim<4; dim++) {
for(Range::iterator i=geom_sets[dim].begin(); i!=geom_sets[dim].end(); i++) {<--- Prefer prefix ++/-- operators for non-primitive types.
result = MBI()->set_meshset_options(*i, 1==dim ? MESHSET_ORDERED : MESHSET_SET);
if(MB_SUCCESS != result) return result;
}
}
// Tags for merging curves and checking the change in geometry size were added.
// Delete these because they are no longer needed.
result = delete_sealing_tags( normal_tag, merge_tag, size_tag, orig_curve_tag);
if(gen::error(MB_SUCCESS!=result, "could not delete sealing tags")) return result;
// Print new size of the file to the user
int sealed_n_tris;
result = MBI()->get_number_entities_by_type( 0, MBTRI, sealed_n_tris );
assert(MB_SUCCESS == result);
if (verbose)
{
std::cout << " output file contains " << geom_sets[3].size() << " volumes, "
<< geom_sets[2].size() << " surfaces, " << geom_sets[1].size()
<< " curves, and " << sealed_n_tris << " triangles" << std::endl;
std::cout << " triangle count changed " << (double)sealed_n_tris/orig_n_tris
<< "x (sealed/unsealed)" << std::endl;
}
return MB_SUCCESS;
}
}
|