File: BRepMesh.cpp

package info (click to toggle)
python-ocp 7.8.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 64,720 kB
  • sloc: cpp: 362,337; pascal: 33; python: 23; makefile: 4
file content (2158 lines) | stat: -rw-r--r-- 131,759 bytes parent folder | download | duplicates (2)
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

// std lib related includes
#include <tuple>

// pybind 11 related includes
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>

namespace py = pybind11;

// Standard Handle
#include <Standard_Handle.hxx>


// includes to resolve forward declarations
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Circ2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <CSLib_Class2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Surface.hxx>
#include <Geom2d_Curve.hxx>
#include <IMeshTools_Parameters.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IMeshTools_Parameters.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IMeshTools_CurveTessellator.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BRepAdaptor_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Shape.hxx>
#include <BRepMesh_DiscretRoot.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Curve.hxx>
#include <Geom2d_Curve.hxx>
#include <Poly_Polygon3D.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Edge.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Wire.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>

// module includes
#include <BRepMesh_Circle.hxx>
#include <BRepMesh_CircleInspector.hxx>
#include <BRepMesh_CircleTool.hxx>
#include <BRepMesh_Classifier.hxx>
#include <BRepMesh_Context.hxx>
#include <BRepMesh_CurveTessellator.hxx>
#include <BRepMesh_DataStructureOfDelaun.hxx>
#include <BRepMesh_Deflection.hxx>
#include <BRepMesh_DegreeOfFreedom.hxx>
#include <BRepMesh_DelabellaBaseMeshAlgo.hxx>
#include <BRepMesh_DelabellaMeshAlgoFactory.hxx>
#include <BRepMesh_Delaun.hxx>
#include <BRepMesh_DiscretFactory.hxx>
#include <BRepMesh_DiscretRoot.hxx>
#include <BRepMesh_Edge.hxx>
#include <BRepMesh_EdgeDiscret.hxx>
#include <BRepMesh_EdgeParameterProvider.hxx>
#include <BRepMesh_EdgeTessellationExtractor.hxx>
#include <BRepMesh_ExtrusionRangeSplitter.hxx>
#include <BRepMesh_FaceChecker.hxx>
#include <BRepMesh_FaceDiscret.hxx>
#include <BRepMesh_FactoryError.hxx>
#include <BRepMesh_FastDiscret.hxx>
#include <BRepMesh_GeomTool.hxx>
#include <BRepMesh_IncrementalMesh.hxx>
#include <BRepMesh_MeshAlgoFactory.hxx>
#include <BRepMesh_MeshTool.hxx>
#include <BRepMesh_ModelBuilder.hxx>
#include <BRepMesh_ModelHealer.hxx>
#include <BRepMesh_ModelPostProcessor.hxx>
#include <BRepMesh_ModelPreProcessor.hxx>
#include <BRepMesh_OrientedEdge.hxx>
#include <BRepMesh_PairOfIndex.hxx>
#include <BRepMesh_PluginEntryType.hxx>
#include <BRepMesh_PluginMacro.hxx>
#include <BRepMesh_SelectorOfDataStructureOfDelaun.hxx>
#include <BRepMesh_ShapeTool.hxx>
#include <BRepMesh_ShapeVisitor.hxx>
#include <BRepMesh_Triangle.hxx>
#include <BRepMesh_Triangulator.hxx>
#include <BRepMesh_UndefinedRangeSplitter.hxx>
#include <BRepMesh_Vertex.hxx>
#include <BRepMesh_VertexInspector.hxx>
#include <BRepMesh_VertexTool.hxx>

// template related includes


// user-defined pre
#include "OCP_specific.inc"

// user-defined inclusion per module
#include <IMeshData_Wire.hxx>

// Module definiiton
void register_BRepMesh(py::module &main_module) {


py::module m = static_cast<py::module>(main_module.attr("BRepMesh"));
py::object klass;

//Python trampoline classes
    class Py_BRepMesh_DiscretRoot : public BRepMesh_DiscretRoot{
    public:
        using BRepMesh_DiscretRoot::BRepMesh_DiscretRoot;


        // public pure virtual
        void Perform(const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,BRepMesh_DiscretRoot,Perform,theRange) };


        // protected pure virtual


        // private pure virtual

    };

// classes

    // Class BRepMesh_Circle from ./opencascade/BRepMesh_Circle.hxx
    klass = m.attr("BRepMesh_Circle");


    // nested enums

    static_cast<py::class_<BRepMesh_Circle , shared_ptr<BRepMesh_Circle>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const gp_XY &,const Standard_Real >()  , py::arg("theLocation"),  py::arg("theRadius") )
    // custom constructors
    // methods
        .def("SetLocation",
             (void (BRepMesh_Circle::*)( const gp_XY &  ) ) static_cast<void (BRepMesh_Circle::*)( const gp_XY &  ) >(&BRepMesh_Circle::SetLocation),
             R"#(Sets location of a circle.)#"  , py::arg("theLocation")
          )
        .def("SetRadius",
             (void (BRepMesh_Circle::*)( const Standard_Real  ) ) static_cast<void (BRepMesh_Circle::*)( const Standard_Real  ) >(&BRepMesh_Circle::SetRadius),
             R"#(Sets radius of a circle.)#"  , py::arg("theRadius")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Location",
             (const gp_XY & (BRepMesh_Circle::*)() const) static_cast<const gp_XY & (BRepMesh_Circle::*)() const>(&BRepMesh_Circle::Location),
             R"#(Returns location of a circle.)#"
             
         )
       .def("Radius",
             (const Standard_Real & (BRepMesh_Circle::*)() const) static_cast<const Standard_Real & (BRepMesh_Circle::*)() const>(&BRepMesh_Circle::Radius),
             R"#(Returns radius of a circle.)#"
             
         )
;

    // Class BRepMesh_CircleInspector from ./opencascade/BRepMesh_CircleInspector.hxx
    klass = m.attr("BRepMesh_CircleInspector");


    // nested enums

    static_cast<py::class_<BRepMesh_CircleInspector , shared_ptr<BRepMesh_CircleInspector>  , NCollection_CellFilter_InspectorXY >>(klass)
    // constructors
        .def(py::init< const Standard_Real,const Standard_Integer,const opencascade::handle<NCollection_IncAllocator> & >()  , py::arg("theTolerance"),  py::arg("theReservedSize"),  py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Bind",
             (void (BRepMesh_CircleInspector::*)( const Standard_Integer ,  const BRepMesh_Circle &  ) ) static_cast<void (BRepMesh_CircleInspector::*)( const Standard_Integer ,  const BRepMesh_Circle &  ) >(&BRepMesh_CircleInspector::Bind),
             R"#(Adds the circle to vector of circles at the given position.)#"  , py::arg("theIndex"),  py::arg("theCircle")
          )
        .def("Circle",
             (BRepMesh_Circle & (BRepMesh_CircleInspector::*)( const Standard_Integer  ) ) static_cast<BRepMesh_Circle & (BRepMesh_CircleInspector::*)( const Standard_Integer  ) >(&BRepMesh_CircleInspector::Circle),
             R"#(Returns circle with the given index.)#"  , py::arg("theIndex")
          )
        .def("SetPoint",
             (void (BRepMesh_CircleInspector::*)( const gp_XY &  ) ) static_cast<void (BRepMesh_CircleInspector::*)( const gp_XY &  ) >(&BRepMesh_CircleInspector::SetPoint),
             R"#(Set reference point to be checked.)#"  , py::arg("thePoint")
          )
        .def("Inspect",
             (NCollection_CellFilter_Action (BRepMesh_CircleInspector::*)( const Standard_Integer  ) ) static_cast<NCollection_CellFilter_Action (BRepMesh_CircleInspector::*)( const Standard_Integer  ) >(&BRepMesh_CircleInspector::Inspect),
             R"#(Performs inspection of a circle with the given index.)#"  , py::arg("theTargetIndex")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("IsEqual_s",
                    (Standard_Boolean (*)( const Standard_Integer ,  const Standard_Integer  ) ) static_cast<Standard_Boolean (*)( const Standard_Integer ,  const Standard_Integer  ) >(&BRepMesh_CircleInspector::IsEqual),
                    R"#(Checks indices for equlity.)#"  , py::arg("theIndex"),  py::arg("theTargetIndex")
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Circles",
             (const IMeshData::VectorOfCircle & (BRepMesh_CircleInspector::*)() const) static_cast<const IMeshData::VectorOfCircle & (BRepMesh_CircleInspector::*)() const>(&BRepMesh_CircleInspector::Circles),
             R"#(Resutns vector of registered circles.)#"
             
         )
       .def("GetShotCircles",
             (IMeshData::ListOfInteger & (BRepMesh_CircleInspector::*)() ) static_cast<IMeshData::ListOfInteger & (BRepMesh_CircleInspector::*)() >(&BRepMesh_CircleInspector::GetShotCircles),
             R"#(Returns list of circles shot by the reference point.)#"
             
             , py::return_value_policy::reference_internal
         )
;

    // Class BRepMesh_CircleTool from ./opencascade/BRepMesh_CircleTool.hxx
    klass = m.attr("BRepMesh_CircleTool");


    // nested enums

    static_cast<py::class_<BRepMesh_CircleTool , shared_ptr<BRepMesh_CircleTool>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<NCollection_IncAllocator> & >()  , py::arg("theAllocator") )
        .def(py::init< const Standard_Integer,const opencascade::handle<NCollection_IncAllocator> & >()  , py::arg("theReservedSize"),  py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Init",
             (void (BRepMesh_CircleTool::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_CircleTool::*)( const Standard_Integer  ) >(&BRepMesh_CircleTool::Init),
             R"#(Initializes the tool.)#"  , py::arg("arg")
          )
        .def("SetCellSize",
             (void (BRepMesh_CircleTool::*)( const Standard_Real  ) ) static_cast<void (BRepMesh_CircleTool::*)( const Standard_Real  ) >(&BRepMesh_CircleTool::SetCellSize),
             R"#(Sets new size for cell filter.)#"  , py::arg("theSize")
          )
        .def("SetCellSize",
             (void (BRepMesh_CircleTool::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepMesh_CircleTool::*)( const Standard_Real ,  const Standard_Real  ) >(&BRepMesh_CircleTool::SetCellSize),
             R"#(Sets new size for cell filter.)#"  , py::arg("theSizeX"),  py::arg("theSizeY")
          )
        .def("SetMinMaxSize",
             (void (BRepMesh_CircleTool::*)( const gp_XY & ,  const gp_XY &  ) ) static_cast<void (BRepMesh_CircleTool::*)( const gp_XY & ,  const gp_XY &  ) >(&BRepMesh_CircleTool::SetMinMaxSize),
             R"#(Sets limits of inspection area.)#"  , py::arg("theMin"),  py::arg("theMax")
          )
        .def("IsEmpty",
             (Standard_Boolean (BRepMesh_CircleTool::*)() const) static_cast<Standard_Boolean (BRepMesh_CircleTool::*)() const>(&BRepMesh_CircleTool::IsEmpty),
             R"#(Returns true if cell filter contains no circle.)#" 
          )
        .def("Bind",
             (void (BRepMesh_CircleTool::*)( const Standard_Integer ,  const gp_Circ2d &  ) ) static_cast<void (BRepMesh_CircleTool::*)( const Standard_Integer ,  const gp_Circ2d &  ) >(&BRepMesh_CircleTool::Bind),
             R"#(Binds the circle to the tool.)#"  , py::arg("theIndex"),  py::arg("theCircle")
          )
        .def("Bind",
             (Standard_Boolean (BRepMesh_CircleTool::*)( const Standard_Integer ,  const gp_XY & ,  const gp_XY & ,  const gp_XY &  ) ) static_cast<Standard_Boolean (BRepMesh_CircleTool::*)( const Standard_Integer ,  const gp_XY & ,  const gp_XY & ,  const gp_XY &  ) >(&BRepMesh_CircleTool::Bind),
             R"#(Computes circle on three points and bind it to the tool.)#"  , py::arg("theIndex"),  py::arg("thePoint1"),  py::arg("thePoint2"),  py::arg("thePoint3")
          )
        .def("MocBind",
             (void (BRepMesh_CircleTool::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_CircleTool::*)( const Standard_Integer  ) >(&BRepMesh_CircleTool::MocBind),
             R"#(Binds implicit zero circle.)#"  , py::arg("theIndex")
          )
        .def("Delete",
             (void (BRepMesh_CircleTool::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_CircleTool::*)( const Standard_Integer  ) >(&BRepMesh_CircleTool::Delete),
             R"#(Deletes a circle from the tool.)#"  , py::arg("theIndex")
          )
        .def("Select",
             (IMeshData::ListOfInteger & (BRepMesh_CircleTool::*)( const gp_XY &  ) ) static_cast<IMeshData::ListOfInteger & (BRepMesh_CircleTool::*)( const gp_XY &  ) >(&BRepMesh_CircleTool::Select),
             R"#(Select the circles shot by the given point.)#"  , py::arg("thePoint")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("MakeCircle_s",
                    (Standard_Boolean (*)( const gp_XY & ,  const gp_XY & ,  const gp_XY & ,  gp_XY & ,  Standard_Real &  ) ) static_cast<Standard_Boolean (*)( const gp_XY & ,  const gp_XY & ,  const gp_XY & ,  gp_XY & ,  Standard_Real &  ) >(&BRepMesh_CircleTool::MakeCircle),
                    R"#(Computes circle on three points.)#"  , py::arg("thePoint1"),  py::arg("thePoint2"),  py::arg("thePoint3"),  py::arg("theLocation"),  py::arg("theRadius")
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_Classifier from ./opencascade/BRepMesh_Classifier.hxx
    klass = m.attr("BRepMesh_Classifier");


    // nested enums

    static_cast<py::class_<BRepMesh_Classifier ,opencascade::handle<BRepMesh_Classifier>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (TopAbs_State (BRepMesh_Classifier::*)( const gp_Pnt2d &  ) const) static_cast<TopAbs_State (BRepMesh_Classifier::*)( const gp_Pnt2d &  ) const>(&BRepMesh_Classifier::Perform),
             R"#(Performs classification of the given point regarding to face internals.)#"  , py::arg("thePoint")
          )
        .def("RegisterWire",
             (void (BRepMesh_Classifier::*)( const NCollection_Sequence<const gp_Pnt2d *> & ,  const std::pair<Standard_Real, Standard_Real> & ,  const std::pair<Standard_Real, Standard_Real> & ,  const std::pair<Standard_Real, Standard_Real> &  ) ) static_cast<void (BRepMesh_Classifier::*)( const NCollection_Sequence<const gp_Pnt2d *> & ,  const std::pair<Standard_Real, Standard_Real> & ,  const std::pair<Standard_Real, Standard_Real> & ,  const std::pair<Standard_Real, Standard_Real> &  ) >(&BRepMesh_Classifier::RegisterWire),
             R"#(Registers wire specified by sequence of points for further classification of points.)#"  , py::arg("theWire"),  py::arg("theTolUV"),  py::arg("theRangeU"),  py::arg("theRangeV")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_Classifier::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_Classifier::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_Classifier::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_Classifier::*)() const>(&BRepMesh_Classifier::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_CurveTessellator from ./opencascade/BRepMesh_CurveTessellator.hxx
    klass = m.attr("BRepMesh_CurveTessellator");


    // nested enums

    static_cast<py::class_<BRepMesh_CurveTessellator ,opencascade::handle<BRepMesh_CurveTessellator>  , IMeshTools_CurveTessellator >>(klass)
    // constructors
        .def(py::init<  const opencascade::handle<IMeshData_Edge> &,const IMeshTools_Parameters &,const Standard_Integer >()  , py::arg("theEdge"),  py::arg("theParameters"),  py::arg("theMinPointsNb")=static_cast<const Standard_Integer>(2) )
        .def(py::init<  const opencascade::handle<IMeshData_Edge> &,const TopAbs_Orientation, const opencascade::handle<IMeshData_Face> &,const IMeshTools_Parameters &,const Standard_Integer >()  , py::arg("theEdge"),  py::arg("theOrientation"),  py::arg("theFace"),  py::arg("theParameters"),  py::arg("theMinPointsNb")=static_cast<const Standard_Integer>(2) )
    // custom constructors
    // methods
        .def("PointsNb",
             (Standard_Integer (BRepMesh_CurveTessellator::*)() const) static_cast<Standard_Integer (BRepMesh_CurveTessellator::*)() const>(&BRepMesh_CurveTessellator::PointsNb),
             R"#(Returns number of tessellation points.)#" 
          )
        .def("Value",
             (Standard_Boolean (BRepMesh_CurveTessellator::*)( const Standard_Integer ,  gp_Pnt & ,  Standard_Real &  ) const) static_cast<Standard_Boolean (BRepMesh_CurveTessellator::*)( const Standard_Integer ,  gp_Pnt & ,  Standard_Real &  ) const>(&BRepMesh_CurveTessellator::Value),
             R"#(Returns parameters of solution with the given index.)#"  , py::arg("theIndex"),  py::arg("thePoint"),  py::arg("theParameter")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_CurveTessellator::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_CurveTessellator::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_CurveTessellator::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_CurveTessellator::*)() const>(&BRepMesh_CurveTessellator::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_DataStructureOfDelaun from ./opencascade/BRepMesh_DataStructureOfDelaun.hxx
    klass = m.attr("BRepMesh_DataStructureOfDelaun");


    // nested enums

    static_cast<py::class_<BRepMesh_DataStructureOfDelaun ,opencascade::handle<BRepMesh_DataStructureOfDelaun>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<NCollection_IncAllocator> &,const Standard_Integer >()  , py::arg("theAllocator"),  py::arg("theReservedNodeSize")=static_cast<const Standard_Integer>(100) )
    // custom constructors
    // methods
        .def("NbNodes",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)() const) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)() const>(&BRepMesh_DataStructureOfDelaun::NbNodes),
             R"#(Returns number of nodes.)#" 
          )
        .def("AddNode",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Vertex & ,  const Standard_Boolean  ) ) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Vertex & ,  const Standard_Boolean  ) >(&BRepMesh_DataStructureOfDelaun::AddNode),
             R"#(Adds node to the mesh if it is not already in the mesh.)#"  , py::arg("theNode"),  py::arg("isForceAdd")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("IndexOf",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Vertex &  ) ) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Vertex &  ) >(&BRepMesh_DataStructureOfDelaun::IndexOf),
             R"#(Finds the index of the given node.)#"  , py::arg("theNode")
          )
        .def("GetNode",
             (const BRepMesh_Vertex & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<const BRepMesh_Vertex & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_DataStructureOfDelaun::GetNode),
             R"#(Get node by the index.)#"  , py::arg("theIndex")
          )
        .def("SubstituteNode",
             (Standard_Boolean (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const BRepMesh_Vertex &  ) ) static_cast<Standard_Boolean (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const BRepMesh_Vertex &  ) >(&BRepMesh_DataStructureOfDelaun::SubstituteNode),
             R"#(Substitutes the node with the given index by new one.)#"  , py::arg("theIndex"),  py::arg("theNewNode")
          )
        .def("RemoveNode",
             (void (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const Standard_Boolean  ) ) static_cast<void (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const Standard_Boolean  ) >(&BRepMesh_DataStructureOfDelaun::RemoveNode),
             R"#(Removes node from the mesh in case if it has no connected links and its type is Free.)#"  , py::arg("theIndex"),  py::arg("isForce")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("LinksConnectedTo",
             (const IMeshData::ListOfInteger & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) const) static_cast<const IMeshData::ListOfInteger & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) const>(&BRepMesh_DataStructureOfDelaun::LinksConnectedTo),
             R"#(Get list of links attached to the node with the given index.)#"  , py::arg("theIndex")
          )
        .def("NbLinks",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)() const) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)() const>(&BRepMesh_DataStructureOfDelaun::NbLinks),
             R"#(Returns number of links.)#" 
          )
        .def("AddLink",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Edge &  ) ) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Edge &  ) >(&BRepMesh_DataStructureOfDelaun::AddLink),
             R"#(Adds link to the mesh if it is not already in the mesh.)#"  , py::arg("theLink")
          )
        .def("IndexOf",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Edge &  ) const) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Edge &  ) const>(&BRepMesh_DataStructureOfDelaun::IndexOf),
             R"#(Finds the index of the given link.)#"  , py::arg("theLink")
          )
        .def("GetLink",
             (const BRepMesh_Edge & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<const BRepMesh_Edge & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_DataStructureOfDelaun::GetLink),
             R"#(Get link by the index.)#"  , py::arg("theIndex")
          )
        .def("SubstituteLink",
             (Standard_Boolean (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const BRepMesh_Edge &  ) ) static_cast<Standard_Boolean (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const BRepMesh_Edge &  ) >(&BRepMesh_DataStructureOfDelaun::SubstituteLink),
             R"#(Substitutes the link with the given index by new one.)#"  , py::arg("theIndex"),  py::arg("theNewLink")
          )
        .def("RemoveLink",
             (void (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const Standard_Boolean  ) ) static_cast<void (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const Standard_Boolean  ) >(&BRepMesh_DataStructureOfDelaun::RemoveLink),
             R"#(Removes link from the mesh in case if it has no connected elements and its type is Free.)#"  , py::arg("theIndex"),  py::arg("isForce")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("ElementsConnectedTo",
             (const BRepMesh_PairOfIndex & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) const) static_cast<const BRepMesh_PairOfIndex & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) const>(&BRepMesh_DataStructureOfDelaun::ElementsConnectedTo),
             R"#(Returns indices of elements connected to the link with the given index.)#"  , py::arg("theLinkIndex")
          )
        .def("NbElements",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)() const) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)() const>(&BRepMesh_DataStructureOfDelaun::NbElements),
             R"#(Returns number of links.)#" 
          )
        .def("AddElement",
             (Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Triangle &  ) ) static_cast<Standard_Integer (BRepMesh_DataStructureOfDelaun::*)( const BRepMesh_Triangle &  ) >(&BRepMesh_DataStructureOfDelaun::AddElement),
             R"#(Adds element to the mesh if it is not already in the mesh.)#"  , py::arg("theElement")
          )
        .def("GetElement",
             (const BRepMesh_Triangle & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<const BRepMesh_Triangle & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_DataStructureOfDelaun::GetElement),
             R"#(Get element by the index.)#"  , py::arg("theIndex")
          )
        .def("SubstituteElement",
             (Standard_Boolean (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const BRepMesh_Triangle &  ) ) static_cast<Standard_Boolean (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer ,  const BRepMesh_Triangle &  ) >(&BRepMesh_DataStructureOfDelaun::SubstituteElement),
             R"#(Substitutes the element with the given index by new one.)#"  , py::arg("theIndex"),  py::arg("theNewElement")
          )
        .def("RemoveElement",
             (void (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_DataStructureOfDelaun::RemoveElement),
             R"#(Removes element from the mesh.)#"  , py::arg("theIndex")
          )
        .def("Dump",
             (void (BRepMesh_DataStructureOfDelaun::*)( Standard_CString  ) ) static_cast<void (BRepMesh_DataStructureOfDelaun::*)( Standard_CString  ) >(&BRepMesh_DataStructureOfDelaun::Dump),
             R"#(None)#"  , py::arg("theFileNameStr")
          )
        .def("Statistics",
             (void (BRepMesh_DataStructureOfDelaun::*)( std::ostream &  ) const) static_cast<void (BRepMesh_DataStructureOfDelaun::*)( std::ostream &  ) const>(&BRepMesh_DataStructureOfDelaun::Statistics),
             R"#(Dumps information about this structure.)#"  , py::arg("theStream")
          )
        .def("ClearDomain",
             (void (BRepMesh_DataStructureOfDelaun::*)() ) static_cast<void (BRepMesh_DataStructureOfDelaun::*)() >(&BRepMesh_DataStructureOfDelaun::ClearDomain),
             R"#(Removes all elements.)#" 
          )
        .def("ClearDeleted",
             (void (BRepMesh_DataStructureOfDelaun::*)() ) static_cast<void (BRepMesh_DataStructureOfDelaun::*)() >(&BRepMesh_DataStructureOfDelaun::ClearDeleted),
             R"#(Substitutes deleted items by the last one from corresponding map to have only non-deleted elements, links or nodes in the structure.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_DataStructureOfDelaun::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_DataStructureOfDelaun::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
        .def("__call__",
             (const BRepMesh_Vertex & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<const BRepMesh_Vertex & (BRepMesh_DataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_DataStructureOfDelaun::operator()),
             py::is_operator(),
             R"#(Alias for GetNode.)#"  , py::arg("theIndex")
          )
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("LinksOfDomain",
             (const IMeshData::MapOfInteger & (BRepMesh_DataStructureOfDelaun::*)() const) static_cast<const IMeshData::MapOfInteger & (BRepMesh_DataStructureOfDelaun::*)() const>(&BRepMesh_DataStructureOfDelaun::LinksOfDomain),
             R"#(Returns map of indices of links registered in mesh.)#"
             
         )
       .def("ElementsOfDomain",
             (const IMeshData::MapOfInteger & (BRepMesh_DataStructureOfDelaun::*)() const) static_cast<const IMeshData::MapOfInteger & (BRepMesh_DataStructureOfDelaun::*)() const>(&BRepMesh_DataStructureOfDelaun::ElementsOfDomain),
             R"#(Returns map of indices of elements registered in mesh.)#"
             
         )
       .def("Allocator",
             (const opencascade::handle<NCollection_IncAllocator> & (BRepMesh_DataStructureOfDelaun::*)() const) static_cast<const opencascade::handle<NCollection_IncAllocator> & (BRepMesh_DataStructureOfDelaun::*)() const>(&BRepMesh_DataStructureOfDelaun::Allocator),
             R"#(Returns memory allocator used by the structure.)#"
             
         )
       .def("Data",
             (const opencascade::handle<BRepMesh_VertexTool> & (BRepMesh_DataStructureOfDelaun::*)() ) static_cast<const opencascade::handle<BRepMesh_VertexTool> & (BRepMesh_DataStructureOfDelaun::*)() >(&BRepMesh_DataStructureOfDelaun::Data),
             R"#(Gives the data structure for initialization of cell size and tolerance.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_DataStructureOfDelaun::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_DataStructureOfDelaun::*)() const>(&BRepMesh_DataStructureOfDelaun::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_Deflection from ./opencascade/BRepMesh_Deflection.hxx
    klass = m.attr("BRepMesh_Deflection");

    // default constructor
    register_default_constructor<BRepMesh_Deflection ,opencascade::handle<BRepMesh_Deflection>>(m,"BRepMesh_Deflection");

    // nested enums

    static_cast<py::class_<BRepMesh_Deflection ,opencascade::handle<BRepMesh_Deflection>  , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("ComputeAbsoluteDeflection_s",
                    (Standard_Real (*)( const TopoDS_Shape & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<Standard_Real (*)( const TopoDS_Shape & ,  const Standard_Real ,  const Standard_Real  ) >(&BRepMesh_Deflection::ComputeAbsoluteDeflection),
                    R"#(Returns absolute deflection for theShape with respect to the relative deflection and theMaxShapeSize.)#"  , py::arg("theShape"),  py::arg("theRelativeDeflection"),  py::arg("theMaxShapeSize")
          )
        .def_static("ComputeDeflection_s",
                    (void (*)(  const opencascade::handle<IMeshData_Edge> & ,  const Standard_Real ,  const IMeshTools_Parameters &  ) ) static_cast<void (*)(  const opencascade::handle<IMeshData_Edge> & ,  const Standard_Real ,  const IMeshTools_Parameters &  ) >(&BRepMesh_Deflection::ComputeDeflection),
                    R"#(Computes and updates deflection of the given discrete edge.)#"  , py::arg("theDEdge"),  py::arg("theMaxShapeSize"),  py::arg("theParameters")
          )
        .def_static("ComputeDeflection_s",
                    (void (*)(  const opencascade::handle<IMeshData_Wire> & ,  const IMeshTools_Parameters &  ) ) static_cast<void (*)(  const opencascade::handle<IMeshData_Wire> & ,  const IMeshTools_Parameters &  ) >(&BRepMesh_Deflection::ComputeDeflection),
                    R"#(Computes and updates deflection of the given discrete wire.)#"  , py::arg("theDWire"),  py::arg("theParameters")
          )
        .def_static("ComputeDeflection_s",
                    (void (*)(  const opencascade::handle<IMeshData_Face> & ,  const IMeshTools_Parameters &  ) ) static_cast<void (*)(  const opencascade::handle<IMeshData_Face> & ,  const IMeshTools_Parameters &  ) >(&BRepMesh_Deflection::ComputeDeflection),
                    R"#(Computes and updates deflection of the given discrete face.)#"  , py::arg("theDFace"),  py::arg("theParameters")
          )
        .def_static("IsConsistent_s",
                    (Standard_Boolean (*)( const Standard_Real ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Real  ) ) static_cast<Standard_Boolean (*)( const Standard_Real ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Real  ) >(&BRepMesh_Deflection::IsConsistent),
                    R"#(Checks if the deflection of current polygonal representation is consistent with the required deflection.)#"  , py::arg("theCurrent"),  py::arg("theRequired"),  py::arg("theAllowDecrease"),  py::arg("theRatio")=static_cast<const Standard_Real>(0.1)
          )
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_Deflection::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_Deflection::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_Deflection::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_Deflection::*)() const>(&BRepMesh_Deflection::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_DelabellaBaseMeshAlgo from ./opencascade/BRepMesh_DelabellaBaseMeshAlgo.hxx
    klass = m.attr("BRepMesh_DelabellaBaseMeshAlgo");


    // nested enums

    static_cast<py::class_<BRepMesh_DelabellaBaseMeshAlgo ,opencascade::handle<BRepMesh_DelabellaBaseMeshAlgo>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_DelabellaBaseMeshAlgo::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_DelabellaBaseMeshAlgo::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_DelabellaBaseMeshAlgo::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_DelabellaBaseMeshAlgo::*)() const>(&BRepMesh_DelabellaBaseMeshAlgo::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_DelabellaMeshAlgoFactory from ./opencascade/BRepMesh_DelabellaMeshAlgoFactory.hxx
    klass = m.attr("BRepMesh_DelabellaMeshAlgoFactory");


    // nested enums

    static_cast<py::class_<BRepMesh_DelabellaMeshAlgoFactory ,opencascade::handle<BRepMesh_DelabellaMeshAlgoFactory>  , IMeshTools_MeshAlgoFactory >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("GetAlgo",
             (opencascade::handle<IMeshTools_MeshAlgo> (BRepMesh_DelabellaMeshAlgoFactory::*)( const GeomAbs_SurfaceType ,  const IMeshTools_Parameters &  ) const) static_cast<opencascade::handle<IMeshTools_MeshAlgo> (BRepMesh_DelabellaMeshAlgoFactory::*)( const GeomAbs_SurfaceType ,  const IMeshTools_Parameters &  ) const>(&BRepMesh_DelabellaMeshAlgoFactory::GetAlgo),
             R"#(Creates instance of meshing algorithm for the given type of surface.)#"  , py::arg("theSurfaceType"),  py::arg("theParameters")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_DelabellaMeshAlgoFactory::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_DelabellaMeshAlgoFactory::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_DelabellaMeshAlgoFactory::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_DelabellaMeshAlgoFactory::*)() const>(&BRepMesh_DelabellaMeshAlgoFactory::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_DiscretFactory from ./opencascade/BRepMesh_DiscretFactory.hxx
    klass = m.attr("BRepMesh_DiscretFactory");


    // nested enums

    static_cast<py::class_<BRepMesh_DiscretFactory , shared_ptr_nodelete<BRepMesh_DiscretFactory>  >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("SetDefaultName",
             (Standard_Boolean (BRepMesh_DiscretFactory::*)( const TCollection_AsciiString &  ) ) static_cast<Standard_Boolean (BRepMesh_DiscretFactory::*)( const TCollection_AsciiString &  ) >(&BRepMesh_DiscretFactory::SetDefaultName),
             R"#(Setup meshing algorithm by name. Returns TRUE if requested tool is available. On fail Factory will continue to use previous algo.)#"  , py::arg("theName")
          )
        .def("SetFunctionName",
             (Standard_Boolean (BRepMesh_DiscretFactory::*)( const TCollection_AsciiString &  ) ) static_cast<Standard_Boolean (BRepMesh_DiscretFactory::*)( const TCollection_AsciiString &  ) >(&BRepMesh_DiscretFactory::SetFunctionName),
             R"#(Advanced function. Changes function name to retrieve from plugin. Returns TRUE if requested tool is available. On fail Factory will continue to use previous algo.)#"  , py::arg("theFuncName")
          )
        .def("ErrorStatus",
             (BRepMesh_FactoryError (BRepMesh_DiscretFactory::*)() const) static_cast<BRepMesh_FactoryError (BRepMesh_DiscretFactory::*)() const>(&BRepMesh_DiscretFactory::ErrorStatus),
             R"#(Returns error status for last meshing algorithm switch.)#" 
          )
        .def("SetDefault",
             (Standard_Boolean (BRepMesh_DiscretFactory::*)( const TCollection_AsciiString & ,  const TCollection_AsciiString &  ) ) static_cast<Standard_Boolean (BRepMesh_DiscretFactory::*)( const TCollection_AsciiString & ,  const TCollection_AsciiString &  ) >(&BRepMesh_DiscretFactory::SetDefault),
             R"#(Setup meshing algorithm that should be created by this Factory. Returns TRUE if requested tool is available. On fail Factory will continue to use previous algo. Call ::ErrorStatus() method to retrieve fault reason.)#"  , py::arg("theName"),  py::arg("theFuncName")=static_cast<const TCollection_AsciiString &>("DISCRETALGO")
          )
        .def("Discret",
             (opencascade::handle<BRepMesh_DiscretRoot> (BRepMesh_DiscretFactory::*)( const TopoDS_Shape & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<opencascade::handle<BRepMesh_DiscretRoot> (BRepMesh_DiscretFactory::*)( const TopoDS_Shape & ,  const Standard_Real ,  const Standard_Real  ) >(&BRepMesh_DiscretFactory::Discret),
             R"#(Returns triangulation algorithm instance.)#"  , py::arg("theShape"),  py::arg("theLinDeflection"),  py::arg("theAngDeflection")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Get_s",
                    (BRepMesh_DiscretFactory & (*)() ) static_cast<BRepMesh_DiscretFactory & (*)() >(&BRepMesh_DiscretFactory::Get),
                    R"#(Returns the global factory instance.)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Names",
             (const TColStd_MapOfAsciiString & (BRepMesh_DiscretFactory::*)() const) static_cast<const TColStd_MapOfAsciiString & (BRepMesh_DiscretFactory::*)() const>(&BRepMesh_DiscretFactory::Names),
             R"#(Returns the list of registered meshing algorithms.)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("DefaultName",
             (const TCollection_AsciiString & (BRepMesh_DiscretFactory::*)() const) static_cast<const TCollection_AsciiString & (BRepMesh_DiscretFactory::*)() const>(&BRepMesh_DiscretFactory::DefaultName),
             R"#(Returns name for current meshing algorithm.)#"
             
         )
       .def("FunctionName",
             (const TCollection_AsciiString & (BRepMesh_DiscretFactory::*)() const) static_cast<const TCollection_AsciiString & (BRepMesh_DiscretFactory::*)() const>(&BRepMesh_DiscretFactory::FunctionName),
             R"#(Returns function name that should be exported by plugin.)#"
             
         )
;

    // Class BRepMesh_DiscretRoot from ./opencascade/BRepMesh_DiscretRoot.hxx
    klass = m.attr("BRepMesh_DiscretRoot");


    // nested enums

    static_cast<py::class_<BRepMesh_DiscretRoot ,opencascade::handle<BRepMesh_DiscretRoot> ,Py_BRepMesh_DiscretRoot , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("SetShape",
             (void (BRepMesh_DiscretRoot::*)( const TopoDS_Shape &  ) ) static_cast<void (BRepMesh_DiscretRoot::*)( const TopoDS_Shape &  ) >(&BRepMesh_DiscretRoot::SetShape),
             R"#(Set the shape to triangulate.)#"  , py::arg("theShape")
          )
        .def("IsDone",
             (Standard_Boolean (BRepMesh_DiscretRoot::*)() const) static_cast<Standard_Boolean (BRepMesh_DiscretRoot::*)() const>(&BRepMesh_DiscretRoot::IsDone),
             R"#(Returns true if triangualtion was performed and has success.)#" 
          )
        .def("Perform",
             (void (BRepMesh_DiscretRoot::*)( const Message_ProgressRange &  ) ) static_cast<void (BRepMesh_DiscretRoot::*)( const Message_ProgressRange &  ) >(&BRepMesh_DiscretRoot::Perform),
             R"#(Compute triangulation for set shape.)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_DiscretRoot::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_DiscretRoot::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Shape",
             (const TopoDS_Shape & (BRepMesh_DiscretRoot::*)() const) static_cast<const TopoDS_Shape & (BRepMesh_DiscretRoot::*)() const>(&BRepMesh_DiscretRoot::Shape),
             R"#(None)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_DiscretRoot::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_DiscretRoot::*)() const>(&BRepMesh_DiscretRoot::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_EdgeDiscret from ./opencascade/BRepMesh_EdgeDiscret.hxx
    klass = m.attr("BRepMesh_EdgeDiscret");


    // nested enums

    static_cast<py::class_<BRepMesh_EdgeDiscret ,opencascade::handle<BRepMesh_EdgeDiscret>  , IMeshTools_ModelAlgo >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("CreateEdgeTessellator_s",
                    (opencascade::handle<IMeshTools_CurveTessellator> (*)(  const opencascade::handle<IMeshData_Edge> & ,  const IMeshTools_Parameters & ,  const Standard_Integer  ) ) static_cast<opencascade::handle<IMeshTools_CurveTessellator> (*)(  const opencascade::handle<IMeshData_Edge> & ,  const IMeshTools_Parameters & ,  const Standard_Integer  ) >(&BRepMesh_EdgeDiscret::CreateEdgeTessellator),
                    R"#(Creates instance of free edge tessellator.)#"  , py::arg("theDEdge"),  py::arg("theParameters"),  py::arg("theMinPointsNb")=static_cast<const Standard_Integer>(2)
          )
        .def_static("CreateEdgeTessellator_s",
                    (opencascade::handle<IMeshTools_CurveTessellator> (*)(  const opencascade::handle<IMeshData_Edge> & ,  const TopAbs_Orientation ,   const opencascade::handle<IMeshData_Face> & ,  const IMeshTools_Parameters & ,  const Standard_Integer  ) ) static_cast<opencascade::handle<IMeshTools_CurveTessellator> (*)(  const opencascade::handle<IMeshData_Edge> & ,  const TopAbs_Orientation ,   const opencascade::handle<IMeshData_Face> & ,  const IMeshTools_Parameters & ,  const Standard_Integer  ) >(&BRepMesh_EdgeDiscret::CreateEdgeTessellator),
                    R"#(Creates instance of edge tessellator.)#"  , py::arg("theDEdge"),  py::arg("theOrientation"),  py::arg("theDFace"),  py::arg("theParameters"),  py::arg("theMinPointsNb")=static_cast<const Standard_Integer>(2)
          )
        .def_static("CreateEdgeTessellationExtractor_s",
                    (opencascade::handle<IMeshTools_CurveTessellator> (*)(  const opencascade::handle<IMeshData_Edge> & ,   const opencascade::handle<IMeshData_Face> &  ) ) static_cast<opencascade::handle<IMeshTools_CurveTessellator> (*)(  const opencascade::handle<IMeshData_Edge> & ,   const opencascade::handle<IMeshData_Face> &  ) >(&BRepMesh_EdgeDiscret::CreateEdgeTessellationExtractor),
                    R"#(Creates instance of tessellation extractor.)#"  , py::arg("theDEdge"),  py::arg("theDFace")
          )
        .def_static("Tessellate3d_s",
                    (void (*)(  const opencascade::handle<IMeshData_Edge> & ,  const opencascade::handle<IMeshTools_CurveTessellator> & ,  const Standard_Boolean  ) ) static_cast<void (*)(  const opencascade::handle<IMeshData_Edge> & ,  const opencascade::handle<IMeshTools_CurveTessellator> & ,  const Standard_Boolean  ) >(&BRepMesh_EdgeDiscret::Tessellate3d),
                    R"#(Updates 3d discrete edge model using the given tessellation tool.)#"  , py::arg("theDEdge"),  py::arg("theTessellator"),  py::arg("theUpdateEnds")
          )
        .def_static("Tessellate2d_s",
                    (void (*)(  const opencascade::handle<IMeshData_Edge> & ,  const Standard_Boolean  ) ) static_cast<void (*)(  const opencascade::handle<IMeshData_Edge> & ,  const Standard_Boolean  ) >(&BRepMesh_EdgeDiscret::Tessellate2d),
                    R"#(Updates 2d discrete edge model using tessellation of 3D curve.)#"  , py::arg("theDEdge"),  py::arg("theUpdateEnds")
          )
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_EdgeDiscret::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_EdgeDiscret::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_EdgeDiscret::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_EdgeDiscret::*)() const>(&BRepMesh_EdgeDiscret::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_EdgeTessellationExtractor from ./opencascade/BRepMesh_EdgeTessellationExtractor.hxx
    klass = m.attr("BRepMesh_EdgeTessellationExtractor");


    // nested enums

    static_cast<py::class_<BRepMesh_EdgeTessellationExtractor ,opencascade::handle<BRepMesh_EdgeTessellationExtractor>  , IMeshTools_CurveTessellator >>(klass)
    // constructors
        .def(py::init<  const opencascade::handle<IMeshData_Edge> &, const opencascade::handle<IMeshData_Face> & >()  , py::arg("theEdge"),  py::arg("theFace") )
    // custom constructors
    // methods
        .def("PointsNb",
             (Standard_Integer (BRepMesh_EdgeTessellationExtractor::*)() const) static_cast<Standard_Integer (BRepMesh_EdgeTessellationExtractor::*)() const>(&BRepMesh_EdgeTessellationExtractor::PointsNb),
             R"#(Returns number of tessellation points.)#" 
          )
        .def("Value",
             (Standard_Boolean (BRepMesh_EdgeTessellationExtractor::*)( const Standard_Integer ,  gp_Pnt & ,  Standard_Real &  ) const) static_cast<Standard_Boolean (BRepMesh_EdgeTessellationExtractor::*)( const Standard_Integer ,  gp_Pnt & ,  Standard_Real &  ) const>(&BRepMesh_EdgeTessellationExtractor::Value),
             R"#(Returns parameters of solution with the given index.)#"  , py::arg("theIndex"),  py::arg("thePoint"),  py::arg("theParameter")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_EdgeTessellationExtractor::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_EdgeTessellationExtractor::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_EdgeTessellationExtractor::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_EdgeTessellationExtractor::*)() const>(&BRepMesh_EdgeTessellationExtractor::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_ExtrusionRangeSplitter from ./opencascade/BRepMesh_ExtrusionRangeSplitter.hxx
    klass = m.attr("BRepMesh_ExtrusionRangeSplitter");


    // nested enums

    static_cast<py::class_<BRepMesh_ExtrusionRangeSplitter , shared_ptr<BRepMesh_ExtrusionRangeSplitter>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_FaceChecker from ./opencascade/BRepMesh_FaceChecker.hxx
    klass = m.attr("BRepMesh_FaceChecker");


    // nested enums

    static_cast<py::class_<BRepMesh_FaceChecker ,opencascade::handle<BRepMesh_FaceChecker>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init<  const opencascade::handle<IMeshData_Face> &,const IMeshTools_Parameters & >()  , py::arg("theFace"),  py::arg("theParameters") )
    // custom constructors
    // methods
        .def("Perform",
             (Standard_Boolean (BRepMesh_FaceChecker::*)() ) static_cast<Standard_Boolean (BRepMesh_FaceChecker::*)() >(&BRepMesh_FaceChecker::Perform),
             R"#(Performs check wires of the face for intersections.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_FaceChecker::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_FaceChecker::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("GetIntersectingEdges",
             (const opencascade::handle<IMeshData::MapOfIEdgePtr> & (BRepMesh_FaceChecker::*)() const) static_cast<const opencascade::handle<IMeshData::MapOfIEdgePtr> & (BRepMesh_FaceChecker::*)() const>(&BRepMesh_FaceChecker::GetIntersectingEdges),
             R"#(Returns intersecting edges.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_FaceChecker::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_FaceChecker::*)() const>(&BRepMesh_FaceChecker::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_FaceDiscret from ./opencascade/BRepMesh_FaceDiscret.hxx
    klass = m.attr("BRepMesh_FaceDiscret");


    // nested enums

    static_cast<py::class_<BRepMesh_FaceDiscret ,opencascade::handle<BRepMesh_FaceDiscret>  , IMeshTools_ModelAlgo >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<IMeshTools_MeshAlgoFactory> & >()  , py::arg("theAlgoFactory") )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_FaceDiscret::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_FaceDiscret::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_FaceDiscret::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_FaceDiscret::*)() const>(&BRepMesh_FaceDiscret::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_FastDiscret from ./opencascade/BRepMesh_FastDiscret.hxx
    klass = m.attr("BRepMesh_FastDiscret");

    // default constructor
    register_default_constructor<BRepMesh_FastDiscret , shared_ptr<BRepMesh_FastDiscret>>(m,"BRepMesh_FastDiscret");

    // nested enums

    static_cast<py::class_<BRepMesh_FastDiscret , shared_ptr<BRepMesh_FastDiscret>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_GeomTool from ./opencascade/BRepMesh_GeomTool.hxx
    klass = m.attr("BRepMesh_GeomTool");


    // nested enums
        py::enum_<BRepMesh_GeomTool::IntFlag>(klass, "IntFlag_e", R"#(Enumerates states of segments intersection check.)#")
            .value("NoIntersection", BRepMesh_GeomTool::IntFlag::NoIntersection)
            .value("Cross", BRepMesh_GeomTool::IntFlag::Cross)
            .value("EndPointTouch", BRepMesh_GeomTool::IntFlag::EndPointTouch)
            .value("PointOnSegment", BRepMesh_GeomTool::IntFlag::PointOnSegment)
            .value("Glued", BRepMesh_GeomTool::IntFlag::Glued)
            .value("Same", BRepMesh_GeomTool::IntFlag::Same).export_values();

    static_cast<py::class_<BRepMesh_GeomTool , shared_ptr<BRepMesh_GeomTool>  >>(klass)
    // constructors
        .def(py::init< const BRepAdaptor_Curve &,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Integer,const Standard_Real >()  , py::arg("theCurve"),  py::arg("theFirstParam"),  py::arg("theLastParam"),  py::arg("theLinDeflection"),  py::arg("theAngDeflection"),  py::arg("theMinPointsNb")=static_cast<const Standard_Integer>(2),  py::arg("theMinSize")=static_cast<const Standard_Real>(Precision :: Confusion ( )) )
        .def(py::init< const opencascade::handle<BRepAdaptor_Surface> &,const GeomAbs_IsoType,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Integer,const Standard_Real >()  , py::arg("theSurface"),  py::arg("theIsoType"),  py::arg("theParamIso"),  py::arg("theFirstParam"),  py::arg("theLastParam"),  py::arg("theLinDeflection"),  py::arg("theAngDeflection"),  py::arg("theMinPointsNb")=static_cast<const Standard_Integer>(2),  py::arg("theMinSize")=static_cast<const Standard_Real>(Precision :: Confusion ( )) )
    // custom constructors
    // methods
        .def("AddPoint",
             (Standard_Integer (BRepMesh_GeomTool::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<Standard_Integer (BRepMesh_GeomTool::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean  ) >(&BRepMesh_GeomTool::AddPoint),
             R"#(Adds point to already calculated points (or replaces existing).)#"  , py::arg("thePoint"),  py::arg("theParam"),  py::arg("theIsReplace")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("NbPoints",
             (Standard_Integer (BRepMesh_GeomTool::*)() const) static_cast<Standard_Integer (BRepMesh_GeomTool::*)() const>(&BRepMesh_GeomTool::NbPoints),
             R"#(Returns number of discretization points.)#" 
          )
        .def("Value",
             (Standard_Boolean (BRepMesh_GeomTool::*)( const Standard_Integer ,  const Standard_Real ,  Standard_Real & ,  gp_Pnt & ,  gp_Pnt2d &  ) const) static_cast<Standard_Boolean (BRepMesh_GeomTool::*)( const Standard_Integer ,  const Standard_Real ,  Standard_Real & ,  gp_Pnt & ,  gp_Pnt2d &  ) const>(&BRepMesh_GeomTool::Value),
             R"#(Gets parameters of discretization point with the given index.)#"  , py::arg("theIndex"),  py::arg("theIsoParam"),  py::arg("theParam"),  py::arg("thePoint"),  py::arg("theUV")
          )
        .def("Value",
             (Standard_Boolean (BRepMesh_GeomTool::*)( const Standard_Integer ,  const opencascade::handle<BRepAdaptor_Surface> & ,  Standard_Real & ,  gp_Pnt & ,  gp_Pnt2d &  ) const) static_cast<Standard_Boolean (BRepMesh_GeomTool::*)( const Standard_Integer ,  const opencascade::handle<BRepAdaptor_Surface> & ,  Standard_Real & ,  gp_Pnt & ,  gp_Pnt2d &  ) const>(&BRepMesh_GeomTool::Value),
             R"#(Gets parameters of discretization point with the given index.)#"  , py::arg("theIndex"),  py::arg("theSurface"),  py::arg("theParam"),  py::arg("thePoint"),  py::arg("theUV")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Normal_s",
                    (Standard_Boolean (*)( const opencascade::handle<BRepAdaptor_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Dir &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<BRepAdaptor_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Dir &  ) >(&BRepMesh_GeomTool::Normal),
                    R"#(Computes normal to the given surface at the specified position in parametric space.)#"  , py::arg("theSurface"),  py::arg("theParamU"),  py::arg("theParamV"),  py::arg("thePoint"),  py::arg("theNormal")
          )
        .def_static("IntSegSeg_s",
                    (BRepMesh_GeomTool::IntFlag (*)( const gp_XY & ,  const gp_XY & ,  const gp_XY & ,  const gp_XY & ,  const Standard_Boolean ,  const Standard_Boolean ,  gp_Pnt2d &  ) ) static_cast<BRepMesh_GeomTool::IntFlag (*)( const gp_XY & ,  const gp_XY & ,  const gp_XY & ,  const gp_XY & ,  const Standard_Boolean ,  const Standard_Boolean ,  gp_Pnt2d &  ) >(&BRepMesh_GeomTool::IntSegSeg),
                    R"#(Checks intersection between the two segments. Checks that intersection point lies within ranges of both segments.)#"  , py::arg("theStartPnt1"),  py::arg("theEndPnt1"),  py::arg("theStartPnt2"),  py::arg("theEndPnt2"),  py::arg("isConsiderEndPointTouch"),  py::arg("isConsiderPointOnSegment"),  py::arg("theIntPnt")
          )
        .def_static("SquareDeflectionOfSegment_s",
                    (Standard_Real (*)( const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<Standard_Real (*)( const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&BRepMesh_GeomTool::SquareDeflectionOfSegment),
                    R"#(Compute deflection of the given segment.)#"  , py::arg("theFirstPoint"),  py::arg("theLastPoint"),  py::arg("theMidPoint")
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_MeshAlgoFactory from ./opencascade/BRepMesh_MeshAlgoFactory.hxx
    klass = m.attr("BRepMesh_MeshAlgoFactory");


    // nested enums

    static_cast<py::class_<BRepMesh_MeshAlgoFactory ,opencascade::handle<BRepMesh_MeshAlgoFactory>  , IMeshTools_MeshAlgoFactory >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("GetAlgo",
             (opencascade::handle<IMeshTools_MeshAlgo> (BRepMesh_MeshAlgoFactory::*)( const GeomAbs_SurfaceType ,  const IMeshTools_Parameters &  ) const) static_cast<opencascade::handle<IMeshTools_MeshAlgo> (BRepMesh_MeshAlgoFactory::*)( const GeomAbs_SurfaceType ,  const IMeshTools_Parameters &  ) const>(&BRepMesh_MeshAlgoFactory::GetAlgo),
             R"#(Creates instance of meshing algorithm for the given type of surface.)#"  , py::arg("theSurfaceType"),  py::arg("theParameters")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_MeshAlgoFactory::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_MeshAlgoFactory::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_MeshAlgoFactory::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_MeshAlgoFactory::*)() const>(&BRepMesh_MeshAlgoFactory::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_MeshTool from ./opencascade/BRepMesh_MeshTool.hxx
    klass = m.attr("BRepMesh_MeshTool");


    // nested enums

    static_cast<py::class_<BRepMesh_MeshTool ,opencascade::handle<BRepMesh_MeshTool>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<BRepMesh_DataStructureOfDelaun> & >()  , py::arg("theStructure") )
    // custom constructors
    // methods
        .def("DumpTriangles",
             (void (BRepMesh_MeshTool::*)( const Standard_CString ,  NCollection_Shared<TColStd_PackedMapOfInteger> *  ) ) static_cast<void (BRepMesh_MeshTool::*)( const Standard_CString ,  NCollection_Shared<TColStd_PackedMapOfInteger> *  ) >(&BRepMesh_MeshTool::DumpTriangles),
             R"#(Dumps triangles to specified file.)#"  , py::arg("theFileName"),  py::arg("theTriangles")
          )
        .def("AddAndLegalizeTriangle",
             (void (BRepMesh_MeshTool::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (BRepMesh_MeshTool::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) >(&BRepMesh_MeshTool::AddAndLegalizeTriangle),
             R"#(Adds new triangle with specified nodes to mesh. Legalizes triangle in case if it violates circle criteria.)#"  , py::arg("thePoint1"),  py::arg("thePoint2"),  py::arg("thePoint3")
          )
        .def("Legalize",
             (void (BRepMesh_MeshTool::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_MeshTool::*)( const Standard_Integer  ) >(&BRepMesh_MeshTool::Legalize),
             R"#(Performs legalization of triangles connected to the specified link.)#"  , py::arg("theLinkIndex")
          )
        .def("EraseItemsConnectedTo",
             (void (BRepMesh_MeshTool::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_MeshTool::*)( const Standard_Integer  ) >(&BRepMesh_MeshTool::EraseItemsConnectedTo),
             R"#(Erases all elements connected to the specified artificial node. In addition, erases the artificial node itself.)#"  , py::arg("theNodeIndex")
          )
        .def("CleanFrontierLinks",
             (void (BRepMesh_MeshTool::*)() ) static_cast<void (BRepMesh_MeshTool::*)() >(&BRepMesh_MeshTool::CleanFrontierLinks),
             R"#(Cleans frontier links from triangles to the right.)#" 
          )
        .def("EraseTriangles",
             (void (BRepMesh_MeshTool::*)(  const NCollection_Shared<TColStd_PackedMapOfInteger> & ,  NCollection_Shared<NCollection_DataMap<Standard_Integer, Standard_Boolean>> &  ) ) static_cast<void (BRepMesh_MeshTool::*)(  const NCollection_Shared<TColStd_PackedMapOfInteger> & ,  NCollection_Shared<NCollection_DataMap<Standard_Integer, Standard_Boolean>> &  ) >(&BRepMesh_MeshTool::EraseTriangles),
             R"#(Erases the given set of triangles. Fills map of loop edges forming the contour surrounding the erased triangles.)#"  , py::arg("theTriangles"),  py::arg("theLoopEdges")
          )
        .def("EraseTriangle",
             (void (BRepMesh_MeshTool::*)( const Standard_Integer ,  NCollection_Shared<NCollection_DataMap<Standard_Integer, Standard_Boolean>> &  ) ) static_cast<void (BRepMesh_MeshTool::*)( const Standard_Integer ,  NCollection_Shared<NCollection_DataMap<Standard_Integer, Standard_Boolean>> &  ) >(&BRepMesh_MeshTool::EraseTriangle),
             R"#(Erases triangle with the given index and adds the free edges into the map. When an edge is suppressed more than one time it is destroyed.)#"  , py::arg("theTriangleIndex"),  py::arg("theLoopEdges")
          )
        .def("EraseFreeLinks",
             (void (BRepMesh_MeshTool::*)() ) static_cast<void (BRepMesh_MeshTool::*)() >(&BRepMesh_MeshTool::EraseFreeLinks),
             R"#(Erases all links that have no elements connected to them.)#" 
          )
        .def("EraseFreeLinks",
             (void (BRepMesh_MeshTool::*)(  const NCollection_Shared<NCollection_DataMap<Standard_Integer, Standard_Boolean>> &  ) ) static_cast<void (BRepMesh_MeshTool::*)(  const NCollection_Shared<NCollection_DataMap<Standard_Integer, Standard_Boolean>> &  ) >(&BRepMesh_MeshTool::EraseFreeLinks),
             R"#(Erases links from the specified map that have no elements connected to them.)#"  , py::arg("theLinks")
          )
        .def("GetEdgesByType",
             (opencascade::handle<IMeshData::MapOfInteger> (BRepMesh_MeshTool::*)( const BRepMesh_DegreeOfFreedom  ) const) static_cast<opencascade::handle<IMeshData::MapOfInteger> (BRepMesh_MeshTool::*)( const BRepMesh_DegreeOfFreedom  ) const>(&BRepMesh_MeshTool::GetEdgesByType),
             R"#(Gives the list of edges with type defined by input parameter.)#"  , py::arg("theEdgeType")
          )
    // methods using call by reference i.s.o. return
        .def("AddLink",
             []( BRepMesh_MeshTool &self , const Standard_Integer theFirstNode,const Standard_Integer theLastNode ){
                 Standard_Integer  theLinkIndex;
                Standard_Boolean  theLinkOri;

                 self.AddLink(theFirstNode,theLastNode,theLinkIndex,theLinkOri);
                 
                 return std::make_tuple(theLinkIndex,theLinkOri); },
             R"#(Adds new link to mesh. Updates link index and link orientation parameters.)#"  , py::arg("theFirstNode"),  py::arg("theLastNode")
          )
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_MeshTool::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_MeshTool::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("GetStructure",
             (const opencascade::handle<BRepMesh_DataStructureOfDelaun> & (BRepMesh_MeshTool::*)() const) static_cast<const opencascade::handle<BRepMesh_DataStructureOfDelaun> & (BRepMesh_MeshTool::*)() const>(&BRepMesh_MeshTool::GetStructure),
             R"#(Returns data structure manipulated by this tool.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_MeshTool::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_MeshTool::*)() const>(&BRepMesh_MeshTool::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_ModelBuilder from ./opencascade/BRepMesh_ModelBuilder.hxx
    klass = m.attr("BRepMesh_ModelBuilder");


    // nested enums

    static_cast<py::class_<BRepMesh_ModelBuilder ,opencascade::handle<BRepMesh_ModelBuilder>  , IMeshTools_ModelBuilder >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_ModelBuilder::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_ModelBuilder::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_ModelBuilder::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_ModelBuilder::*)() const>(&BRepMesh_ModelBuilder::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_ModelHealer from ./opencascade/BRepMesh_ModelHealer.hxx
    klass = m.attr("BRepMesh_ModelHealer");


    // nested enums

    static_cast<py::class_<BRepMesh_ModelHealer ,opencascade::handle<BRepMesh_ModelHealer>  , IMeshTools_ModelAlgo >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_ModelHealer::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_ModelHealer::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_ModelHealer::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_ModelHealer::*)() const>(&BRepMesh_ModelHealer::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_ModelPostProcessor from ./opencascade/BRepMesh_ModelPostProcessor.hxx
    klass = m.attr("BRepMesh_ModelPostProcessor");


    // nested enums

    static_cast<py::class_<BRepMesh_ModelPostProcessor ,opencascade::handle<BRepMesh_ModelPostProcessor>  , IMeshTools_ModelAlgo >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_ModelPostProcessor::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_ModelPostProcessor::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_ModelPostProcessor::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_ModelPostProcessor::*)() const>(&BRepMesh_ModelPostProcessor::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_ModelPreProcessor from ./opencascade/BRepMesh_ModelPreProcessor.hxx
    klass = m.attr("BRepMesh_ModelPreProcessor");


    // nested enums

    static_cast<py::class_<BRepMesh_ModelPreProcessor ,opencascade::handle<BRepMesh_ModelPreProcessor>  , IMeshTools_ModelAlgo >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_ModelPreProcessor::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_ModelPreProcessor::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_ModelPreProcessor::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_ModelPreProcessor::*)() const>(&BRepMesh_ModelPreProcessor::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_OrientedEdge from ./opencascade/BRepMesh_OrientedEdge.hxx
    klass = m.attr("BRepMesh_OrientedEdge");


    // nested enums

    static_cast<py::class_<BRepMesh_OrientedEdge , shared_ptr<BRepMesh_OrientedEdge>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const Standard_Integer,const Standard_Integer >()  , py::arg("theFirstNode"),  py::arg("theLastNode") )
    // custom constructors
    // methods
        .def("FirstNode",
             (Standard_Integer (BRepMesh_OrientedEdge::*)() const) static_cast<Standard_Integer (BRepMesh_OrientedEdge::*)() const>(&BRepMesh_OrientedEdge::FirstNode),
             R"#(Returns index of first node of the Link.)#" 
          )
        .def("LastNode",
             (Standard_Integer (BRepMesh_OrientedEdge::*)() const) static_cast<Standard_Integer (BRepMesh_OrientedEdge::*)() const>(&BRepMesh_OrientedEdge::LastNode),
             R"#(Returns index of last node of the Link.)#" 
          )
        .def("IsEqual",
             (Standard_Boolean (BRepMesh_OrientedEdge::*)( const BRepMesh_OrientedEdge &  ) const) static_cast<Standard_Boolean (BRepMesh_OrientedEdge::*)( const BRepMesh_OrientedEdge &  ) const>(&BRepMesh_OrientedEdge::IsEqual),
             R"#(Checks this and other edge for equality.)#"  , py::arg("theOther")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_PairOfIndex from ./opencascade/BRepMesh_PairOfIndex.hxx
    klass = m.attr("BRepMesh_PairOfIndex");


    // nested enums

    static_cast<py::class_<BRepMesh_PairOfIndex , shared_ptr<BRepMesh_PairOfIndex>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BRepMesh_PairOfIndex::*)() ) static_cast<void (BRepMesh_PairOfIndex::*)() >(&BRepMesh_PairOfIndex::Clear),
             R"#(Clears indices.)#" 
          )
        .def("Append",
             (void (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) >(&BRepMesh_PairOfIndex::Append),
             R"#(Appends index to the pair.)#"  , py::arg("theIndex")
          )
        .def("Prepend",
             (void (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) >(&BRepMesh_PairOfIndex::Prepend),
             R"#(Prepends index to the pair.)#"  , py::arg("theIndex")
          )
        .def("IsEmpty",
             (Standard_Boolean (BRepMesh_PairOfIndex::*)() const) static_cast<Standard_Boolean (BRepMesh_PairOfIndex::*)() const>(&BRepMesh_PairOfIndex::IsEmpty),
             R"#(Returns is pair is empty.)#" 
          )
        .def("Extent",
             (Standard_Integer (BRepMesh_PairOfIndex::*)() const) static_cast<Standard_Integer (BRepMesh_PairOfIndex::*)() const>(&BRepMesh_PairOfIndex::Extent),
             R"#(Returns number of initialized indices.)#" 
          )
        .def("FirstIndex",
             (Standard_Integer (BRepMesh_PairOfIndex::*)() const) static_cast<Standard_Integer (BRepMesh_PairOfIndex::*)() const>(&BRepMesh_PairOfIndex::FirstIndex),
             R"#(Returns first index of pair.)#" 
          )
        .def("LastIndex",
             (Standard_Integer (BRepMesh_PairOfIndex::*)() const) static_cast<Standard_Integer (BRepMesh_PairOfIndex::*)() const>(&BRepMesh_PairOfIndex::LastIndex),
             R"#(Returns last index of pair)#" 
          )
        .def("Index",
             (Standard_Integer (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) const>(&BRepMesh_PairOfIndex::Index),
             R"#(Returns index corresponding to the given position in the pair.)#"  , py::arg("thePairPos")
          )
        .def("SetIndex",
             (void (BRepMesh_PairOfIndex::*)( const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (BRepMesh_PairOfIndex::*)( const Standard_Integer ,  const Standard_Integer  ) >(&BRepMesh_PairOfIndex::SetIndex),
             R"#(Sets index corresponding to the given position in the pair.)#"  , py::arg("thePairPos"),  py::arg("theIndex")
          )
        .def("RemoveIndex",
             (void (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_PairOfIndex::*)( const Standard_Integer  ) >(&BRepMesh_PairOfIndex::RemoveIndex),
             R"#(Remove index from the given position.)#"  , py::arg("thePairPos")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_SelectorOfDataStructureOfDelaun from ./opencascade/BRepMesh_SelectorOfDataStructureOfDelaun.hxx
    klass = m.attr("BRepMesh_SelectorOfDataStructureOfDelaun");


    // nested enums

    static_cast<py::class_<BRepMesh_SelectorOfDataStructureOfDelaun ,opencascade::handle<BRepMesh_SelectorOfDataStructureOfDelaun>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<BRepMesh_DataStructureOfDelaun> & >()  , py::arg("theMesh") )
    // custom constructors
    // methods
        .def("Initialize",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const opencascade::handle<BRepMesh_DataStructureOfDelaun> &  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const opencascade::handle<BRepMesh_DataStructureOfDelaun> &  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::Initialize),
             R"#(Initializes selector by the mesh.)#"  , py::arg("theMesh")
          )
        .def("NeighboursOf",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Vertex &  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Vertex &  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf),
             R"#(Selects all neighboring elements of the given node.)#"  , py::arg("theNode")
          )
        .def("NeighboursOfNode",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOfNode),
             R"#(Selects all neighboring elements of node with the given index.)#"  , py::arg("theNodeIndex")
          )
        .def("NeighboursOf",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Edge &  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Edge &  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf),
             R"#(Selects all neighboring elements of the given link.)#"  , py::arg("theLink")
          )
        .def("NeighboursOfLink",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOfLink),
             R"#(Selects all neighboring elements of link with the given index.)#"  , py::arg("theLinkIndex")
          )
        .def("NeighboursOf",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Triangle &  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Triangle &  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf),
             R"#(Selects all neighboring elements of the given element.)#"  , py::arg("theElement")
          )
        .def("NeighboursOfElement",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const Standard_Integer  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOfElement),
             R"#(Selects all neighboring elements by nodes of the given element.)#"  , py::arg("theElementIndex")
          )
        .def("NeighboursByEdgeOf",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Triangle &  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_Triangle &  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursByEdgeOf),
             R"#(Selects all neighboring elements by links of the given element.)#"  , py::arg("theElement")
          )
        .def("NeighboursOf",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_SelectorOfDataStructureOfDelaun &  ) ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)( const BRepMesh_SelectorOfDataStructureOfDelaun &  ) >(&BRepMesh_SelectorOfDataStructureOfDelaun::NeighboursOf),
             R"#(Adds a level of neighbours by edge to the selector.)#"  , py::arg("arg")
          )
        .def("AddNeighbours",
             (void (BRepMesh_SelectorOfDataStructureOfDelaun::*)() ) static_cast<void (BRepMesh_SelectorOfDataStructureOfDelaun::*)() >(&BRepMesh_SelectorOfDataStructureOfDelaun::AddNeighbours),
             R"#(Adds a level of neighbours by edge the selector.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_SelectorOfDataStructureOfDelaun::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_SelectorOfDataStructureOfDelaun::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Nodes",
             (const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const) static_cast<const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const>(&BRepMesh_SelectorOfDataStructureOfDelaun::Nodes),
             R"#(Returns selected nodes.)#"
             
         )
       .def("Links",
             (const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const) static_cast<const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const>(&BRepMesh_SelectorOfDataStructureOfDelaun::Links),
             R"#(Returns selected links.)#"
             
         )
       .def("Elements",
             (const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const) static_cast<const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const>(&BRepMesh_SelectorOfDataStructureOfDelaun::Elements),
             R"#(Returns selected elements.)#"
             
         )
       .def("FrontierLinks",
             (const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const) static_cast<const IMeshData::MapOfInteger & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const>(&BRepMesh_SelectorOfDataStructureOfDelaun::FrontierLinks),
             R"#(Gives the list of incices of frontier links.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_SelectorOfDataStructureOfDelaun::*)() const>(&BRepMesh_SelectorOfDataStructureOfDelaun::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_ShapeTool from ./opencascade/BRepMesh_ShapeTool.hxx
    klass = m.attr("BRepMesh_ShapeTool");

    // default constructor
    register_default_constructor<BRepMesh_ShapeTool ,opencascade::handle<BRepMesh_ShapeTool>>(m,"BRepMesh_ShapeTool");

    // nested enums

    static_cast<py::class_<BRepMesh_ShapeTool ,opencascade::handle<BRepMesh_ShapeTool>  , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("MaxFaceTolerance_s",
                    (Standard_Real (*)( const TopoDS_Face &  ) ) static_cast<Standard_Real (*)( const TopoDS_Face &  ) >(&BRepMesh_ShapeTool::MaxFaceTolerance),
                    R"#(Returns maximum tolerance of the given face. Considers tolerances of edges and vertices contained in the given face.)#"  , py::arg("theFace")
          )
        .def_static("CheckAndUpdateFlags_s",
                    (void (*)(  const opencascade::handle<IMeshData_Edge> & ,   const opencascade::handle<IMeshData_PCurve> &  ) ) static_cast<void (*)(  const opencascade::handle<IMeshData_Edge> & ,   const opencascade::handle<IMeshData_PCurve> &  ) >(&BRepMesh_ShapeTool::CheckAndUpdateFlags),
                    R"#(Checks same parameter, same range and degenerativity attributes using geometrical data of the given edge and updates edge model by computed parameters in case of worst case - it can drop flags same parameter and same range to False but never to True if it is already set to False. In contrary, it can also drop degenerated flag to True, but never to False if it is already set to True.)#"  , py::arg("theEdge"),  py::arg("thePCurve")
          )
        .def_static("NullifyFace_s",
                    (void (*)( const TopoDS_Face &  ) ) static_cast<void (*)( const TopoDS_Face &  ) >(&BRepMesh_ShapeTool::NullifyFace),
                    R"#(Nullifies triangulation stored in the face.)#"  , py::arg("theFace")
          )
        .def_static("NullifyEdge_s",
                    (void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_Triangulation> & ,  const TopLoc_Location &  ) ) static_cast<void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_Triangulation> & ,  const TopLoc_Location &  ) >(&BRepMesh_ShapeTool::NullifyEdge),
                    R"#(Nullifies polygon on triangulation stored in the edge.)#"  , py::arg("theEdge"),  py::arg("theTriangulation"),  py::arg("theLocation")
          )
        .def_static("NullifyEdge_s",
                    (void (*)( const TopoDS_Edge & ,  const TopLoc_Location &  ) ) static_cast<void (*)( const TopoDS_Edge & ,  const TopLoc_Location &  ) >(&BRepMesh_ShapeTool::NullifyEdge),
                    R"#(Nullifies 3d polygon stored in the edge.)#"  , py::arg("theEdge"),  py::arg("theLocation")
          )
        .def_static("UpdateEdge_s",
                    (void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_PolygonOnTriangulation> & ,  const opencascade::handle<Poly_Triangulation> & ,  const TopLoc_Location &  ) ) static_cast<void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_PolygonOnTriangulation> & ,  const opencascade::handle<Poly_Triangulation> & ,  const TopLoc_Location &  ) >(&BRepMesh_ShapeTool::UpdateEdge),
                    R"#(Updates the given edge by the given tessellated representation.)#"  , py::arg("theEdge"),  py::arg("thePolygon"),  py::arg("theTriangulation"),  py::arg("theLocation")
          )
        .def_static("UpdateEdge_s",
                    (void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_Polygon3D> &  ) ) static_cast<void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_Polygon3D> &  ) >(&BRepMesh_ShapeTool::UpdateEdge),
                    R"#(Updates the given edge by the given tessellated representation.)#"  , py::arg("theEdge"),  py::arg("thePolygon")
          )
        .def_static("UpdateEdge_s",
                    (void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_PolygonOnTriangulation> & ,  const opencascade::handle<Poly_PolygonOnTriangulation> & ,  const opencascade::handle<Poly_Triangulation> & ,  const TopLoc_Location &  ) ) static_cast<void (*)( const TopoDS_Edge & ,  const opencascade::handle<Poly_PolygonOnTriangulation> & ,  const opencascade::handle<Poly_PolygonOnTriangulation> & ,  const opencascade::handle<Poly_Triangulation> & ,  const TopLoc_Location &  ) >(&BRepMesh_ShapeTool::UpdateEdge),
                    R"#(Updates the given seam edge by the given tessellated representations.)#"  , py::arg("theEdge"),  py::arg("thePolygon1"),  py::arg("thePolygon2"),  py::arg("theTriangulation"),  py::arg("theLocation")
          )
        .def_static("UseLocation_s",
                    (gp_Pnt (*)( const gp_Pnt & ,  const TopLoc_Location &  ) ) static_cast<gp_Pnt (*)( const gp_Pnt & ,  const TopLoc_Location &  ) >(&BRepMesh_ShapeTool::UseLocation),
                    R"#(Applies location to the given point and return result.)#"  , py::arg("thePnt"),  py::arg("theLoc")
          )
        .def_static("UVPoints_s",
                    (Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  gp_Pnt2d & ,  gp_Pnt2d & ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  gp_Pnt2d & ,  gp_Pnt2d & ,  const Standard_Boolean  ) >(&BRepMesh_ShapeTool::UVPoints),
                    R"#(Gets the strict UV locations of the extremities of the edge using pcurve.)#"  , py::arg("theEdge"),  py::arg("theFace"),  py::arg("theFirstPoint2d"),  py::arg("theLastPoint2d"),  py::arg("isConsiderOrientation")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("Range_s",
                    (Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  opencascade::handle<Geom2d_Curve> & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  opencascade::handle<Geom2d_Curve> & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Boolean  ) >(&BRepMesh_ShapeTool::Range),
                    R"#(Gets the parametric range of the given edge on the given face.)#"  , py::arg("theEdge"),  py::arg("theFace"),  py::arg("thePCurve"),  py::arg("theFirstParam"),  py::arg("theLastParam"),  py::arg("isConsiderOrientation")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("Range_s",
                    (Standard_Boolean (*)( const TopoDS_Edge & ,  opencascade::handle<Geom_Curve> & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (*)( const TopoDS_Edge & ,  opencascade::handle<Geom_Curve> & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Boolean  ) >(&BRepMesh_ShapeTool::Range),
                    R"#(Gets the 3d range of the given edge.)#"  , py::arg("theEdge"),  py::arg("theCurve"),  py::arg("theFirstParam"),  py::arg("theLastParam"),  py::arg("isConsiderOrientation")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_ShapeTool::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_ShapeTool::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
        .def_static("BoxMaxDimension_s",
            [](const Bnd_Box & theBox ){
                Standard_Real  theMaxDimension;

                BRepMesh_ShapeTool::BoxMaxDimension(theBox,theMaxDimension);
                
return std::make_tuple(theMaxDimension); },
            R"#(Gets the maximum dimension of the given bounding box. If the given bounding box is void leaves the resulting value unchanged.)#"  , py::arg("theBox")
          )
        .def_static("AddInFace_s",
            [](const TopoDS_Face & theFace,Poly_Triangulation& theTriangulation ){
                opencascade::handle<Poly_Triangulation>  theTriangulation_ptr; theTriangulation_ptr = &theTriangulation;

                BRepMesh_ShapeTool::AddInFace(theFace,theTriangulation_ptr);
                if ( theTriangulation_ptr.get() != &theTriangulation ) copy_if_copy_constructible(theTriangulation, *theTriangulation_ptr);

 },
            R"#(Stores the given triangulation into the given face.)#"  , py::arg("theFace"),  py::arg("theTriangulation")
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_ShapeTool::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_ShapeTool::*)() const>(&BRepMesh_ShapeTool::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_ShapeVisitor from ./opencascade/BRepMesh_ShapeVisitor.hxx
    klass = m.attr("BRepMesh_ShapeVisitor");


    // nested enums

    static_cast<py::class_<BRepMesh_ShapeVisitor ,opencascade::handle<BRepMesh_ShapeVisitor>  , IMeshTools_ShapeVisitor >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<IMeshData_Model> & >()  , py::arg("theModel") )
    // custom constructors
    // methods
        .def("Visit",
             (void (BRepMesh_ShapeVisitor::*)( const TopoDS_Face &  ) ) static_cast<void (BRepMesh_ShapeVisitor::*)( const TopoDS_Face &  ) >(&BRepMesh_ShapeVisitor::Visit),
             R"#(Handles TopoDS_Face object.)#"  , py::arg("theFace")
          )
        .def("Visit",
             (void (BRepMesh_ShapeVisitor::*)( const TopoDS_Edge &  ) ) static_cast<void (BRepMesh_ShapeVisitor::*)( const TopoDS_Edge &  ) >(&BRepMesh_ShapeVisitor::Visit),
             R"#(Handles TopoDS_Edge object.)#"  , py::arg("theEdge")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_ShapeVisitor::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_ShapeVisitor::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_ShapeVisitor::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_ShapeVisitor::*)() const>(&BRepMesh_ShapeVisitor::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_Triangulator from ./opencascade/BRepMesh_Triangulator.hxx
    klass = m.attr("BRepMesh_Triangulator");


    // nested enums

    static_cast<py::class_<BRepMesh_Triangulator , shared_ptr<BRepMesh_Triangulator>  >>(klass)
    // constructors
        .def(py::init< const NCollection_Vector<gp_XYZ> &,const NCollection_List<TColStd_SequenceOfInteger> &,const gp_Dir & >()  , py::arg("theXYZs"),  py::arg("theWires"),  py::arg("theNorm") )
    // custom constructors
    // methods
        .def("Perform",
             (Standard_Boolean (BRepMesh_Triangulator::*)( NCollection_List<Poly_Triangle> &  ) ) static_cast<Standard_Boolean (BRepMesh_Triangulator::*)( NCollection_List<Poly_Triangle> &  ) >(&BRepMesh_Triangulator::Perform),
             R"#(Performs triangulation of source wires and stores triangles the output list.)#"  , py::arg("thePolyTriangles")
          )
        .def("SetMessenger",
             (void (BRepMesh_Triangulator::*)( const opencascade::handle<Message_Messenger> &  ) ) static_cast<void (BRepMesh_Triangulator::*)( const opencascade::handle<Message_Messenger> &  ) >(&BRepMesh_Triangulator::SetMessenger),
             R"#(Set messenger for output information without this Message::DefaultMessenger() will be used)#"  , py::arg("theMess")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("ToPolyTriangulation_s",
                    (opencascade::handle<Poly_Triangulation> (*)(  const NCollection_Array1<gp_Pnt> & ,  const NCollection_List<Poly_Triangle> &  ) ) static_cast<opencascade::handle<Poly_Triangulation> (*)(  const NCollection_Array1<gp_Pnt> & ,  const NCollection_List<Poly_Triangle> &  ) >(&BRepMesh_Triangulator::ToPolyTriangulation),
                    R"#(Performs conversion of the given list of triangles to Poly_Triangulation.)#"  , py::arg("theNodes"),  py::arg("thePolyTriangles")
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_UndefinedRangeSplitter from ./opencascade/BRepMesh_UndefinedRangeSplitter.hxx
    klass = m.attr("BRepMesh_UndefinedRangeSplitter");


    // nested enums

    static_cast<py::class_<BRepMesh_UndefinedRangeSplitter , shared_ptr<BRepMesh_UndefinedRangeSplitter>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_Vertex from ./opencascade/BRepMesh_Vertex.hxx
    klass = m.attr("BRepMesh_Vertex");


    // nested enums

    static_cast<py::class_<BRepMesh_Vertex , shared_ptr<BRepMesh_Vertex>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const gp_XY &,const Standard_Integer,const BRepMesh_DegreeOfFreedom >()  , py::arg("theUV"),  py::arg("theLocation3d"),  py::arg("theMovability") )
        .def(py::init< const Standard_Real,const Standard_Real,const BRepMesh_DegreeOfFreedom >()  , py::arg("theU"),  py::arg("theV"),  py::arg("theMovability") )
    // custom constructors
    // methods
        .def("Initialize",
             (void (BRepMesh_Vertex::*)( const gp_XY & ,  const Standard_Integer ,  const BRepMesh_DegreeOfFreedom  ) ) static_cast<void (BRepMesh_Vertex::*)( const gp_XY & ,  const Standard_Integer ,  const BRepMesh_DegreeOfFreedom  ) >(&BRepMesh_Vertex::Initialize),
             R"#(Initializes vertex associated with point in 3d space.)#"  , py::arg("theUV"),  py::arg("theLocation3d"),  py::arg("theMovability")
          )
        .def("Location3d",
             (Standard_Integer (BRepMesh_Vertex::*)() const) static_cast<Standard_Integer (BRepMesh_Vertex::*)() const>(&BRepMesh_Vertex::Location3d),
             R"#(Returns index of 3d point associated with the vertex.)#" 
          )
        .def("Movability",
             (BRepMesh_DegreeOfFreedom (BRepMesh_Vertex::*)() const) static_cast<BRepMesh_DegreeOfFreedom (BRepMesh_Vertex::*)() const>(&BRepMesh_Vertex::Movability),
             R"#(Returns movability of the vertex.)#" 
          )
        .def("SetMovability",
             (void (BRepMesh_Vertex::*)( const BRepMesh_DegreeOfFreedom  ) ) static_cast<void (BRepMesh_Vertex::*)( const BRepMesh_DegreeOfFreedom  ) >(&BRepMesh_Vertex::SetMovability),
             R"#(Sets movability of the vertex.)#"  , py::arg("theMovability")
          )
        .def("IsEqual",
             (Standard_Boolean (BRepMesh_Vertex::*)( const BRepMesh_Vertex &  ) const) static_cast<Standard_Boolean (BRepMesh_Vertex::*)( const BRepMesh_Vertex &  ) const>(&BRepMesh_Vertex::IsEqual),
             R"#(Checks for equality with another vertex.)#"  , py::arg("theOther")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Coord",
             (const gp_XY & (BRepMesh_Vertex::*)() const) static_cast<const gp_XY & (BRepMesh_Vertex::*)() const>(&BRepMesh_Vertex::Coord),
             R"#(Returns position of the vertex in parametric space.)#"
             
         )
       .def("ChangeCoord",
             (gp_XY & (BRepMesh_Vertex::*)() ) static_cast<gp_XY & (BRepMesh_Vertex::*)() >(&BRepMesh_Vertex::ChangeCoord),
             R"#(Returns position of the vertex in parametric space for modification.)#"
             
             , py::return_value_policy::reference_internal
         )
;

    // Class BRepMesh_VertexInspector from ./opencascade/BRepMesh_VertexInspector.hxx
    klass = m.attr("BRepMesh_VertexInspector");


    // nested enums

    static_cast<py::class_<BRepMesh_VertexInspector , shared_ptr<BRepMesh_VertexInspector>  , NCollection_CellFilter_InspectorXY >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<NCollection_IncAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Add",
             (Standard_Integer (BRepMesh_VertexInspector::*)( const BRepMesh_Vertex &  ) ) static_cast<Standard_Integer (BRepMesh_VertexInspector::*)( const BRepMesh_Vertex &  ) >(&BRepMesh_VertexInspector::Add),
             R"#(Registers the given vertex.)#"  , py::arg("theVertex")
          )
        .def("SetTolerance",
             (void (BRepMesh_VertexInspector::*)( const Standard_Real  ) ) static_cast<void (BRepMesh_VertexInspector::*)( const Standard_Real  ) >(&BRepMesh_VertexInspector::SetTolerance),
             R"#(Sets the tolerance to be used for identification of coincident vertices equal for both dimensions.)#"  , py::arg("theTolerance")
          )
        .def("SetTolerance",
             (void (BRepMesh_VertexInspector::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepMesh_VertexInspector::*)( const Standard_Real ,  const Standard_Real  ) >(&BRepMesh_VertexInspector::SetTolerance),
             R"#(Sets the tolerance to be used for identification of coincident vertices.)#"  , py::arg("theToleranceX"),  py::arg("theToleranceY")
          )
        .def("Clear",
             (void (BRepMesh_VertexInspector::*)() ) static_cast<void (BRepMesh_VertexInspector::*)() >(&BRepMesh_VertexInspector::Clear),
             R"#(Clear inspector's internal data structures.)#" 
          )
        .def("Delete",
             (void (BRepMesh_VertexInspector::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_VertexInspector::*)( const Standard_Integer  ) >(&BRepMesh_VertexInspector::Delete),
             R"#(Deletes vertex with the given index.)#"  , py::arg("theIndex")
          )
        .def("NbVertices",
             (Standard_Integer (BRepMesh_VertexInspector::*)() const) static_cast<Standard_Integer (BRepMesh_VertexInspector::*)() const>(&BRepMesh_VertexInspector::NbVertices),
             R"#(Returns number of registered vertices.)#" 
          )
        .def("GetVertex",
             (BRepMesh_Vertex & (BRepMesh_VertexInspector::*)( Standard_Integer  ) ) static_cast<BRepMesh_Vertex & (BRepMesh_VertexInspector::*)( Standard_Integer  ) >(&BRepMesh_VertexInspector::GetVertex),
             R"#(Returns vertex with the given index.)#"  , py::arg("theIndex")
          )
        .def("SetPoint",
             (void (BRepMesh_VertexInspector::*)( const gp_XY &  ) ) static_cast<void (BRepMesh_VertexInspector::*)( const gp_XY &  ) >(&BRepMesh_VertexInspector::SetPoint),
             R"#(Set reference point to be checked.)#"  , py::arg("thePoint")
          )
        .def("GetCoincidentPoint",
             (Standard_Integer (BRepMesh_VertexInspector::*)() const) static_cast<Standard_Integer (BRepMesh_VertexInspector::*)() const>(&BRepMesh_VertexInspector::GetCoincidentPoint),
             R"#(Returns index of point coinciding with regerence one.)#" 
          )
        .def("Inspect",
             (NCollection_CellFilter_Action (BRepMesh_VertexInspector::*)( const Standard_Integer  ) ) static_cast<NCollection_CellFilter_Action (BRepMesh_VertexInspector::*)( const Standard_Integer  ) >(&BRepMesh_VertexInspector::Inspect),
             R"#(Performs inspection of a point with the given index.)#"  , py::arg("theTargetIndex")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("IsEqual_s",
                    (Standard_Boolean (*)( const Standard_Integer ,  const Standard_Integer  ) ) static_cast<Standard_Boolean (*)( const Standard_Integer ,  const Standard_Integer  ) >(&BRepMesh_VertexInspector::IsEqual),
                    R"#(Checks indices for equlity.)#"  , py::arg("theIndex"),  py::arg("theTargetIndex")
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("GetListOfDelPoints",
             (const IMeshData::ListOfInteger & (BRepMesh_VertexInspector::*)() const) static_cast<const IMeshData::ListOfInteger & (BRepMesh_VertexInspector::*)() const>(&BRepMesh_VertexInspector::GetListOfDelPoints),
             R"#(Returns list with indexes of vertices that have movability attribute equal to BRepMesh_Deleted and can be replaced with another node.)#"
             
         )
       .def("Vertices",
             (const opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexInspector::*)() const) static_cast<const opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexInspector::*)() const>(&BRepMesh_VertexInspector::Vertices),
             R"#(Returns set of mesh vertices.)#"
             
         )
       .def("ChangeVertices",
             (opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexInspector::*)() ) static_cast<opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexInspector::*)() >(&BRepMesh_VertexInspector::ChangeVertices),
             R"#(Returns set of mesh vertices for modification.)#"
             
         )
;

    // Class BRepMesh_VertexTool from ./opencascade/BRepMesh_VertexTool.hxx
    klass = m.attr("BRepMesh_VertexTool");


    // nested enums

    static_cast<py::class_<BRepMesh_VertexTool ,opencascade::handle<BRepMesh_VertexTool>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<NCollection_IncAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("SetCellSize",
             (void (BRepMesh_VertexTool::*)( const Standard_Real  ) ) static_cast<void (BRepMesh_VertexTool::*)( const Standard_Real  ) >(&BRepMesh_VertexTool::SetCellSize),
             R"#(Sets new size of cell for cellfilter equal in both directions.)#"  , py::arg("theSize")
          )
        .def("SetCellSize",
             (void (BRepMesh_VertexTool::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepMesh_VertexTool::*)( const Standard_Real ,  const Standard_Real  ) >(&BRepMesh_VertexTool::SetCellSize),
             R"#(Sets new size of cell for cellfilter.)#"  , py::arg("theSizeX"),  py::arg("theSizeY")
          )
        .def("SetTolerance",
             (void (BRepMesh_VertexTool::*)( const Standard_Real  ) ) static_cast<void (BRepMesh_VertexTool::*)( const Standard_Real  ) >(&BRepMesh_VertexTool::SetTolerance),
             R"#(Sets the tolerance to be used for identification of coincident vertices equal for both dimensions.)#"  , py::arg("theTolerance")
          )
        .def("SetTolerance",
             (void (BRepMesh_VertexTool::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepMesh_VertexTool::*)( const Standard_Real ,  const Standard_Real  ) >(&BRepMesh_VertexTool::SetTolerance),
             R"#(Sets the tolerance to be used for identification of coincident vertices.)#"  , py::arg("theToleranceX"),  py::arg("theToleranceY")
          )
        .def("Add",
             (Standard_Integer (BRepMesh_VertexTool::*)( const BRepMesh_Vertex & ,  const Standard_Boolean  ) ) static_cast<Standard_Integer (BRepMesh_VertexTool::*)( const BRepMesh_Vertex & ,  const Standard_Boolean  ) >(&BRepMesh_VertexTool::Add),
             R"#(Adds vertex with empty data to the tool.)#"  , py::arg("theVertex"),  py::arg("isForceAdd")
          )
        .def("DeleteVertex",
             (void (BRepMesh_VertexTool::*)( const Standard_Integer  ) ) static_cast<void (BRepMesh_VertexTool::*)( const Standard_Integer  ) >(&BRepMesh_VertexTool::DeleteVertex),
             R"#(Deletes vertex with the given index from the tool.)#"  , py::arg("theIndex")
          )
        .def("FindKey",
             (const BRepMesh_Vertex & (BRepMesh_VertexTool::*)( const Standard_Integer  ) ) static_cast<const BRepMesh_Vertex & (BRepMesh_VertexTool::*)( const Standard_Integer  ) >(&BRepMesh_VertexTool::FindKey),
             R"#(Returns vertex by the given index.)#"  , py::arg("theIndex")
          )
        .def("FindIndex",
             (Standard_Integer (BRepMesh_VertexTool::*)( const BRepMesh_Vertex &  ) ) static_cast<Standard_Integer (BRepMesh_VertexTool::*)( const BRepMesh_Vertex &  ) >(&BRepMesh_VertexTool::FindIndex),
             R"#(Returns index of the given vertex.)#"  , py::arg("theVertex")
          )
        .def("Extent",
             (Standard_Integer (BRepMesh_VertexTool::*)() const) static_cast<Standard_Integer (BRepMesh_VertexTool::*)() const>(&BRepMesh_VertexTool::Extent),
             R"#(Returns a number of vertices.)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (BRepMesh_VertexTool::*)() const) static_cast<Standard_Boolean (BRepMesh_VertexTool::*)() const>(&BRepMesh_VertexTool::IsEmpty),
             R"#(Returns True when the map contains no keys.)#" 
          )
        .def("Substitute",
             (void (BRepMesh_VertexTool::*)( const Standard_Integer ,  const BRepMesh_Vertex &  ) ) static_cast<void (BRepMesh_VertexTool::*)( const Standard_Integer ,  const BRepMesh_Vertex &  ) >(&BRepMesh_VertexTool::Substitute),
             R"#(Substitutes vertex with the given by the given vertex with attributes.)#"  , py::arg("theIndex"),  py::arg("theVertex")
          )
        .def("RemoveLast",
             (void (BRepMesh_VertexTool::*)() ) static_cast<void (BRepMesh_VertexTool::*)() >(&BRepMesh_VertexTool::RemoveLast),
             R"#(Remove last node from the structure.)#" 
          )
        .def("Statistics",
             (void (BRepMesh_VertexTool::*)( std::ostream &  ) const) static_cast<void (BRepMesh_VertexTool::*)( std::ostream &  ) const>(&BRepMesh_VertexTool::Statistics),
             R"#(Prints statistics.)#"  , py::arg("theStream")
          )
    // methods using call by reference i.s.o. return
        .def("GetTolerance",
             []( BRepMesh_VertexTool &self   ){
                 Standard_Real  theToleranceX;
                Standard_Real  theToleranceY;

                 self.GetTolerance(theToleranceX,theToleranceY);
                 
                 return std::make_tuple(theToleranceX,theToleranceY); },
             R"#(Gets the tolerance to be used for identification of coincident vertices.)#" 
          )
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_VertexTool::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_VertexTool::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Vertices",
             (const opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexTool::*)() const) static_cast<const opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexTool::*)() const>(&BRepMesh_VertexTool::Vertices),
             R"#(Returns set of mesh vertices.)#"
             
         )
       .def("ChangeVertices",
             (opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexTool::*)() ) static_cast<opencascade::handle<IMeshData::VectorOfVertex> & (BRepMesh_VertexTool::*)() >(&BRepMesh_VertexTool::ChangeVertices),
             R"#(Returns set of mesh vertices.)#"
             
         )
       .def("GetListOfDelNodes",
             (const IMeshData::ListOfInteger & (BRepMesh_VertexTool::*)() const) static_cast<const IMeshData::ListOfInteger & (BRepMesh_VertexTool::*)() const>(&BRepMesh_VertexTool::GetListOfDelNodes),
             R"#(Returns the list with indexes of vertices that have movability attribute equal to BRepMesh_Deleted and can be replaced with another node.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_VertexTool::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_VertexTool::*)() const>(&BRepMesh_VertexTool::DynamicType),
             R"#(None)#"
             
         )
;

    // Class BRepMesh_Edge from ./opencascade/BRepMesh_Edge.hxx
    klass = m.attr("BRepMesh_Edge");


    // nested enums

    static_cast<py::class_<BRepMesh_Edge , shared_ptr<BRepMesh_Edge>  , BRepMesh_OrientedEdge >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const Standard_Integer,const Standard_Integer,const BRepMesh_DegreeOfFreedom >()  , py::arg("theFirstNode"),  py::arg("theLastNode"),  py::arg("theMovability") )
    // custom constructors
    // methods
        .def("Movability",
             (BRepMesh_DegreeOfFreedom (BRepMesh_Edge::*)() const) static_cast<BRepMesh_DegreeOfFreedom (BRepMesh_Edge::*)() const>(&BRepMesh_Edge::Movability),
             R"#(Returns movability flag of the Link.)#" 
          )
        .def("SetMovability",
             (void (BRepMesh_Edge::*)( const BRepMesh_DegreeOfFreedom  ) ) static_cast<void (BRepMesh_Edge::*)( const BRepMesh_DegreeOfFreedom  ) >(&BRepMesh_Edge::SetMovability),
             R"#(Sets movability flag of the Link.)#"  , py::arg("theMovability")
          )
        .def("IsSameOrientation",
             (Standard_Boolean (BRepMesh_Edge::*)( const BRepMesh_Edge &  ) const) static_cast<Standard_Boolean (BRepMesh_Edge::*)( const BRepMesh_Edge &  ) const>(&BRepMesh_Edge::IsSameOrientation),
             R"#(Checks if the given edge and this one have the same orientation.)#"  , py::arg("theOther")
          )
        .def("IsEqual",
             (Standard_Boolean (BRepMesh_Edge::*)( const BRepMesh_Edge &  ) const) static_cast<Standard_Boolean (BRepMesh_Edge::*)( const BRepMesh_Edge &  ) const>(&BRepMesh_Edge::IsEqual),
             R"#(Checks for equality with another edge.)#"  , py::arg("theOther")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

    // Class BRepMesh_IncrementalMesh from ./opencascade/BRepMesh_IncrementalMesh.hxx
    klass = m.attr("BRepMesh_IncrementalMesh");


    // nested enums

    static_cast<py::class_<BRepMesh_IncrementalMesh ,opencascade::handle<BRepMesh_IncrementalMesh>  , BRepMesh_DiscretRoot >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Shape &,const Standard_Real,const Standard_Boolean,const Standard_Real,const Standard_Boolean >()  , py::arg("theShape"),  py::arg("theLinDeflection"),  py::arg("isRelative")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("theAngDeflection")=static_cast<const Standard_Real>(0.5),  py::arg("isInParallel")=static_cast<const Standard_Boolean>(Standard_False) )
        .def(py::init< const TopoDS_Shape &,const IMeshTools_Parameters &,const Message_ProgressRange & >()  , py::arg("theShape"),  py::arg("theParameters"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( )) )
    // custom constructors
    // methods
        .def("Perform",
             (void (BRepMesh_IncrementalMesh::*)( const Message_ProgressRange &  ) ) static_cast<void (BRepMesh_IncrementalMesh::*)( const Message_ProgressRange &  ) >(&BRepMesh_IncrementalMesh::Perform),
             R"#(Performs meshing of the shape.)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Perform",
             (void (BRepMesh_IncrementalMesh::*)( const opencascade::handle<IMeshTools_Context> & ,  const Message_ProgressRange &  ) ) static_cast<void (BRepMesh_IncrementalMesh::*)( const opencascade::handle<IMeshTools_Context> & ,  const Message_ProgressRange &  ) >(&BRepMesh_IncrementalMesh::Perform),
             R"#(Performs meshing using custom context;)#"  , py::arg("theContext"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("IsModified",
             (Standard_Boolean (BRepMesh_IncrementalMesh::*)() const) static_cast<Standard_Boolean (BRepMesh_IncrementalMesh::*)() const>(&BRepMesh_IncrementalMesh::IsModified),
             R"#(Returns modified flag.)#" 
          )
        .def("GetStatusFlags",
             (Standard_Integer (BRepMesh_IncrementalMesh::*)() const) static_cast<Standard_Integer (BRepMesh_IncrementalMesh::*)() const>(&BRepMesh_IncrementalMesh::GetStatusFlags),
             R"#(Returns accumulated status flags faced during meshing.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("IsParallelDefault_s",
                    (Standard_Boolean (*)() ) static_cast<Standard_Boolean (*)() >(&BRepMesh_IncrementalMesh::IsParallelDefault),
                    R"#(Returns multi-threading usage flag set by default in Discret() static method (thus applied only to Mesh Factories).)#" 
          )
        .def_static("SetParallelDefault_s",
                    (void (*)( const Standard_Boolean  ) ) static_cast<void (*)( const Standard_Boolean  ) >(&BRepMesh_IncrementalMesh::SetParallelDefault),
                    R"#(Setup multi-threading usage flag set by default in Discret() static method (thus applied only to Mesh Factories).)#"  , py::arg("isInParallel")
          )
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepMesh_IncrementalMesh::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepMesh_IncrementalMesh::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Parameters",
             (const IMeshTools_Parameters & (BRepMesh_IncrementalMesh::*)() const) static_cast<const IMeshTools_Parameters & (BRepMesh_IncrementalMesh::*)() const>(&BRepMesh_IncrementalMesh::Parameters),
             R"#(Returns meshing parameters)#"
             
         )
       .def("ChangeParameters",
             (IMeshTools_Parameters & (BRepMesh_IncrementalMesh::*)() ) static_cast<IMeshTools_Parameters & (BRepMesh_IncrementalMesh::*)() >(&BRepMesh_IncrementalMesh::ChangeParameters),
             R"#(Returns modifiable meshing parameters)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepMesh_IncrementalMesh::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepMesh_IncrementalMesh::*)() const>(&BRepMesh_IncrementalMesh::DynamicType),
             R"#(None)#"
             
         )
;

// functions
// ./opencascade/BRepMesh_Circle.hxx
// ./opencascade/BRepMesh_CircleInspector.hxx
// ./opencascade/BRepMesh_CircleTool.hxx
// ./opencascade/BRepMesh_Classifier.hxx
// ./opencascade/BRepMesh_Context.hxx
// ./opencascade/BRepMesh_CurveTessellator.hxx
// ./opencascade/BRepMesh_DataStructureOfDelaun.hxx
// ./opencascade/BRepMesh_Deflection.hxx
// ./opencascade/BRepMesh_DegreeOfFreedom.hxx
// ./opencascade/BRepMesh_DelabellaBaseMeshAlgo.hxx
// ./opencascade/BRepMesh_DelabellaMeshAlgoFactory.hxx
// ./opencascade/BRepMesh_Delaun.hxx
// ./opencascade/BRepMesh_DiscretFactory.hxx
// ./opencascade/BRepMesh_DiscretRoot.hxx
// ./opencascade/BRepMesh_Edge.hxx
// ./opencascade/BRepMesh_EdgeDiscret.hxx
// ./opencascade/BRepMesh_EdgeParameterProvider.hxx
// ./opencascade/BRepMesh_EdgeTessellationExtractor.hxx
// ./opencascade/BRepMesh_ExtrusionRangeSplitter.hxx
// ./opencascade/BRepMesh_FaceChecker.hxx
// ./opencascade/BRepMesh_FaceDiscret.hxx
// ./opencascade/BRepMesh_FactoryError.hxx
// ./opencascade/BRepMesh_FastDiscret.hxx
// ./opencascade/BRepMesh_GeomTool.hxx
// ./opencascade/BRepMesh_IncrementalMesh.hxx
// ./opencascade/BRepMesh_MeshAlgoFactory.hxx
// ./opencascade/BRepMesh_MeshTool.hxx
// ./opencascade/BRepMesh_ModelBuilder.hxx
// ./opencascade/BRepMesh_ModelHealer.hxx
// ./opencascade/BRepMesh_ModelPostProcessor.hxx
// ./opencascade/BRepMesh_ModelPreProcessor.hxx
// ./opencascade/BRepMesh_OrientedEdge.hxx
// ./opencascade/BRepMesh_PairOfIndex.hxx
// ./opencascade/BRepMesh_PluginEntryType.hxx
// ./opencascade/BRepMesh_PluginMacro.hxx
// ./opencascade/BRepMesh_SelectorOfDataStructureOfDelaun.hxx
// ./opencascade/BRepMesh_ShapeTool.hxx
// ./opencascade/BRepMesh_ShapeVisitor.hxx
// ./opencascade/BRepMesh_Triangle.hxx
// ./opencascade/BRepMesh_Triangulator.hxx
// ./opencascade/BRepMesh_UndefinedRangeSplitter.hxx
// ./opencascade/BRepMesh_Vertex.hxx
// ./opencascade/BRepMesh_VertexInspector.hxx
// ./opencascade/BRepMesh_VertexTool.hxx

// Additional functions

// operators

// register typdefs


// exceptions

// user-defined post-inclusion per module in the body

};

// user-defined post-inclusion per module

// user-defined post