File: BOPAlgo.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 (3423 lines) | stat: -rw-r--r-- 188,229 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
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423

// 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 <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_PaveFiller.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntTools_Context.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntTools_Context.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 <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_PaveFiller.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 <Message_ProgressScope.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_ArgumentAnalyzer.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_BOP.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_Builder.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_PaveFiller.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_Section.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_WireEdgeSet.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntTools_Context.hxx>
#include <TopoDS_Face.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 <BOPAlgo_PaveFiller.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 <BOPDS_CommonBlock.hxx>
#include <IntTools_Context.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>

// module includes
#include <BOPAlgo_Alerts.hxx>
#include <BOPAlgo_Algo.hxx>
#include <BOPAlgo_ArgumentAnalyzer.hxx>
#include <BOPAlgo_BOP.hxx>
#include <BOPAlgo_Builder.hxx>
#include <BOPAlgo_BuilderArea.hxx>
#include <BOPAlgo_BuilderFace.hxx>
#include <BOPAlgo_BuilderShape.hxx>
#include <BOPAlgo_BuilderSolid.hxx>
#include <BOPAlgo_CellsBuilder.hxx>
#include <BOPAlgo_CheckerSI.hxx>
#include <BOPAlgo_CheckResult.hxx>
#include <BOPAlgo_CheckStatus.hxx>
#include <BOPAlgo_GlueEnum.hxx>
#include <BOPAlgo_ListOfCheckResult.hxx>
#include <BOPAlgo_MakeConnected.hxx>
#include <BOPAlgo_MakePeriodic.hxx>
#include <BOPAlgo_MakerVolume.hxx>
#include <BOPAlgo_Operation.hxx>
#include <BOPAlgo_Options.hxx>
#include <BOPAlgo_PArgumentAnalyzer.hxx>
#include <BOPAlgo_PaveFiller.hxx>
#include <BOPAlgo_PBOP.hxx>
#include <BOPAlgo_PBuilder.hxx>
#include <BOPAlgo_PPaveFiller.hxx>
#include <BOPAlgo_PSection.hxx>
#include <BOPAlgo_PWireEdgeSet.hxx>
#include <BOPAlgo_RemoveFeatures.hxx>
#include <BOPAlgo_Section.hxx>
#include <BOPAlgo_SectionAttribute.hxx>
#include <BOPAlgo_ShellSplitter.hxx>
#include <BOPAlgo_Splitter.hxx>
#include <BOPAlgo_Tools.hxx>
#include <BOPAlgo_ToolsProvider.hxx>
#include <BOPAlgo_WireEdgeSet.hxx>
#include <BOPAlgo_WireSplitter.hxx>

// template related includes

// ./opencascade/BOPAlgo_ListOfCheckResult.hxx
#include "NCollection_tmpl.hxx"

// ./opencascade/BOPAlgo_WireSplitter.hxx
#include "NCollection_tmpl.hxx"

// ./opencascade/BOPAlgo_WireSplitter.hxx
#include "NCollection_tmpl.hxx"


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

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


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


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

//Python trampoline classes
    class Py_BOPAlgo_Algo : public BOPAlgo_Algo{
    public:
        using BOPAlgo_Algo::BOPAlgo_Algo;


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


        // protected pure virtual


        // private pure virtual

    };
    class Py_BOPAlgo_BuilderArea : public BOPAlgo_BuilderArea{
    public:
        using BOPAlgo_BuilderArea::BOPAlgo_BuilderArea;


        // public pure virtual

        void Perform(const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,BOPAlgo_Algo,Perform,theRange) };

        // protected pure virtual
        void PerformShapesToAvoid(const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,BOPAlgo_BuilderArea,PerformShapesToAvoid,theRange) };
        void PerformLoops(const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,BOPAlgo_BuilderArea,PerformLoops,theRange) };
        void PerformAreas(const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,BOPAlgo_BuilderArea,PerformAreas,theRange) };
        void PerformInternalShapes(const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,BOPAlgo_BuilderArea,PerformInternalShapes,theRange) };


        // private pure virtual

    };
    class Py_BOPAlgo_BuilderShape : public BOPAlgo_BuilderShape{
    public:
        using BOPAlgo_BuilderShape::BOPAlgo_BuilderShape;


        // public pure virtual

        void Perform(const Message_ProgressRange & theRange) override { PYBIND11_OVERLOAD_PURE(void,BOPAlgo_Algo,Perform,theRange) };

        // protected pure virtual


        // private pure virtual

    };
    class Py_BOPAlgo_ParallelAlgo : public BOPAlgo_ParallelAlgo{
    public:
        using BOPAlgo_ParallelAlgo::BOPAlgo_ParallelAlgo;


        // public pure virtual
        void Perform() override { PYBIND11_OVERLOAD_PURE(void,BOPAlgo_ParallelAlgo,Perform,) };


        // protected pure virtual


        // private pure virtual

    };

// classes

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertAcquiredSelfIntersection ,opencascade::handle<BOPAlgo_AlertAcquiredSelfIntersection>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertAcquiredSelfIntersection::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertAcquiredSelfIntersection::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> & (BOPAlgo_AlertAcquiredSelfIntersection::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertAcquiredSelfIntersection::*)() const>(&BOPAlgo_AlertAcquiredSelfIntersection::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertBOPNotAllowed ,opencascade::handle<BOPAlgo_AlertBOPNotAllowed>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertBOPNotAllowed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertBOPNotAllowed::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> & (BOPAlgo_AlertBOPNotAllowed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertBOPNotAllowed::*)() const>(&BOPAlgo_AlertBOPNotAllowed::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertBOPNotSet ,opencascade::handle<BOPAlgo_AlertBOPNotSet>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertBOPNotSet::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertBOPNotSet::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> & (BOPAlgo_AlertBOPNotSet::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertBOPNotSet::*)() const>(&BOPAlgo_AlertBOPNotSet::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertBadPositioning ,opencascade::handle<BOPAlgo_AlertBadPositioning>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertBadPositioning::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertBadPositioning::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> & (BOPAlgo_AlertBadPositioning::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertBadPositioning::*)() const>(&BOPAlgo_AlertBadPositioning::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertBuilderFailed ,opencascade::handle<BOPAlgo_AlertBuilderFailed>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertBuilderFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertBuilderFailed::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> & (BOPAlgo_AlertBuilderFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertBuilderFailed::*)() const>(&BOPAlgo_AlertBuilderFailed::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertBuildingPCurveFailed ,opencascade::handle<BOPAlgo_AlertBuildingPCurveFailed>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertBuildingPCurveFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertBuildingPCurveFailed::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> & (BOPAlgo_AlertBuildingPCurveFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertBuildingPCurveFailed::*)() const>(&BOPAlgo_AlertBuildingPCurveFailed::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertEmptyShape ,opencascade::handle<BOPAlgo_AlertEmptyShape>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertEmptyShape::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertEmptyShape::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> & (BOPAlgo_AlertEmptyShape::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertEmptyShape::*)() const>(&BOPAlgo_AlertEmptyShape::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertFaceBuilderUnusedEdges ,opencascade::handle<BOPAlgo_AlertFaceBuilderUnusedEdges>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertFaceBuilderUnusedEdges::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertFaceBuilderUnusedEdges::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> & (BOPAlgo_AlertFaceBuilderUnusedEdges::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertFaceBuilderUnusedEdges::*)() const>(&BOPAlgo_AlertFaceBuilderUnusedEdges::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertIntersectionFailed ,opencascade::handle<BOPAlgo_AlertIntersectionFailed>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertIntersectionFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertIntersectionFailed::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> & (BOPAlgo_AlertIntersectionFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertIntersectionFailed::*)() const>(&BOPAlgo_AlertIntersectionFailed::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertIntersectionOfPairOfShapesFailed ,opencascade::handle<BOPAlgo_AlertIntersectionOfPairOfShapesFailed>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertIntersectionOfPairOfShapesFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertIntersectionOfPairOfShapesFailed::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> & (BOPAlgo_AlertIntersectionOfPairOfShapesFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertIntersectionOfPairOfShapesFailed::*)() const>(&BOPAlgo_AlertIntersectionOfPairOfShapesFailed::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertMultiDimensionalArguments ,opencascade::handle<BOPAlgo_AlertMultiDimensionalArguments>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertMultiDimensionalArguments::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertMultiDimensionalArguments::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> & (BOPAlgo_AlertMultiDimensionalArguments::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertMultiDimensionalArguments::*)() const>(&BOPAlgo_AlertMultiDimensionalArguments::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertMultipleArguments ,opencascade::handle<BOPAlgo_AlertMultipleArguments>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertMultipleArguments::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertMultipleArguments::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> & (BOPAlgo_AlertMultipleArguments::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertMultipleArguments::*)() const>(&BOPAlgo_AlertMultipleArguments::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertNoFacesToRemove ,opencascade::handle<BOPAlgo_AlertNoFacesToRemove>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertNoFacesToRemove::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertNoFacesToRemove::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> & (BOPAlgo_AlertNoFacesToRemove::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertNoFacesToRemove::*)() const>(&BOPAlgo_AlertNoFacesToRemove::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertNoFiller ,opencascade::handle<BOPAlgo_AlertNoFiller>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertNoFiller::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertNoFiller::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> & (BOPAlgo_AlertNoFiller::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertNoFiller::*)() const>(&BOPAlgo_AlertNoFiller::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertNoPeriodicityRequired ,opencascade::handle<BOPAlgo_AlertNoPeriodicityRequired>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertNoPeriodicityRequired::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertNoPeriodicityRequired::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> & (BOPAlgo_AlertNoPeriodicityRequired::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertNoPeriodicityRequired::*)() const>(&BOPAlgo_AlertNoPeriodicityRequired::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertNotSplittableEdge ,opencascade::handle<BOPAlgo_AlertNotSplittableEdge>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertNotSplittableEdge::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertNotSplittableEdge::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> & (BOPAlgo_AlertNotSplittableEdge::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertNotSplittableEdge::*)() const>(&BOPAlgo_AlertNotSplittableEdge::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertNullInputShapes ,opencascade::handle<BOPAlgo_AlertNullInputShapes>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertNullInputShapes::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertNullInputShapes::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> & (BOPAlgo_AlertNullInputShapes::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertNullInputShapes::*)() const>(&BOPAlgo_AlertNullInputShapes::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertPostTreatFF ,opencascade::handle<BOPAlgo_AlertPostTreatFF>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertPostTreatFF::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertPostTreatFF::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> & (BOPAlgo_AlertPostTreatFF::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertPostTreatFF::*)() const>(&BOPAlgo_AlertPostTreatFF::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertRemovalOfIBForEdgesFailed ,opencascade::handle<BOPAlgo_AlertRemovalOfIBForEdgesFailed>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertRemovalOfIBForEdgesFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertRemovalOfIBForEdgesFailed::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> & (BOPAlgo_AlertRemovalOfIBForEdgesFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertRemovalOfIBForEdgesFailed::*)() const>(&BOPAlgo_AlertRemovalOfIBForEdgesFailed::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertRemovalOfIBForFacesFailed ,opencascade::handle<BOPAlgo_AlertRemovalOfIBForFacesFailed>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertRemovalOfIBForFacesFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertRemovalOfIBForFacesFailed::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> & (BOPAlgo_AlertRemovalOfIBForFacesFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertRemovalOfIBForFacesFailed::*)() const>(&BOPAlgo_AlertRemovalOfIBForFacesFailed::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertRemovalOfIBForMDimShapes ,opencascade::handle<BOPAlgo_AlertRemovalOfIBForMDimShapes>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertRemovalOfIBForMDimShapes::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertRemovalOfIBForMDimShapes::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> & (BOPAlgo_AlertRemovalOfIBForMDimShapes::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertRemovalOfIBForMDimShapes::*)() const>(&BOPAlgo_AlertRemovalOfIBForMDimShapes::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertRemovalOfIBForSolidsFailed ,opencascade::handle<BOPAlgo_AlertRemovalOfIBForSolidsFailed>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertRemovalOfIBForSolidsFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertRemovalOfIBForSolidsFailed::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> & (BOPAlgo_AlertRemovalOfIBForSolidsFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertRemovalOfIBForSolidsFailed::*)() const>(&BOPAlgo_AlertRemovalOfIBForSolidsFailed::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertRemoveFeaturesFailed ,opencascade::handle<BOPAlgo_AlertRemoveFeaturesFailed>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertRemoveFeaturesFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertRemoveFeaturesFailed::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> & (BOPAlgo_AlertRemoveFeaturesFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertRemoveFeaturesFailed::*)() const>(&BOPAlgo_AlertRemoveFeaturesFailed::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertSelfInterferingShape ,opencascade::handle<BOPAlgo_AlertSelfInterferingShape>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertSelfInterferingShape::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertSelfInterferingShape::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> & (BOPAlgo_AlertSelfInterferingShape::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertSelfInterferingShape::*)() const>(&BOPAlgo_AlertSelfInterferingShape::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertShapeIsNotPeriodic ,opencascade::handle<BOPAlgo_AlertShapeIsNotPeriodic>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertShapeIsNotPeriodic::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertShapeIsNotPeriodic::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> & (BOPAlgo_AlertShapeIsNotPeriodic::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertShapeIsNotPeriodic::*)() const>(&BOPAlgo_AlertShapeIsNotPeriodic::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertShellSplitterFailed ,opencascade::handle<BOPAlgo_AlertShellSplitterFailed>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertShellSplitterFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertShellSplitterFailed::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> & (BOPAlgo_AlertShellSplitterFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertShellSplitterFailed::*)() const>(&BOPAlgo_AlertShellSplitterFailed::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertSolidBuilderFailed ,opencascade::handle<BOPAlgo_AlertSolidBuilderFailed>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertSolidBuilderFailed::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertSolidBuilderFailed::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> & (BOPAlgo_AlertSolidBuilderFailed::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertSolidBuilderFailed::*)() const>(&BOPAlgo_AlertSolidBuilderFailed::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertSolidBuilderUnusedFaces ,opencascade::handle<BOPAlgo_AlertSolidBuilderUnusedFaces>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertSolidBuilderUnusedFaces::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertSolidBuilderUnusedFaces::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> & (BOPAlgo_AlertSolidBuilderUnusedFaces::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertSolidBuilderUnusedFaces::*)() const>(&BOPAlgo_AlertSolidBuilderUnusedFaces::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertTooFewArguments ,opencascade::handle<BOPAlgo_AlertTooFewArguments>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertTooFewArguments::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertTooFewArguments::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> & (BOPAlgo_AlertTooFewArguments::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertTooFewArguments::*)() const>(&BOPAlgo_AlertTooFewArguments::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertTooSmallEdge ,opencascade::handle<BOPAlgo_AlertTooSmallEdge>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertTooSmallEdge::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertTooSmallEdge::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> & (BOPAlgo_AlertTooSmallEdge::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertTooSmallEdge::*)() const>(&BOPAlgo_AlertTooSmallEdge::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToGlue ,opencascade::handle<BOPAlgo_AlertUnableToGlue>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToGlue::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToGlue::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> & (BOPAlgo_AlertUnableToGlue::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToGlue::*)() const>(&BOPAlgo_AlertUnableToGlue::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToMakeClosedEdgeOnFace ,opencascade::handle<BOPAlgo_AlertUnableToMakeClosedEdgeOnFace>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToMakeClosedEdgeOnFace::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToMakeClosedEdgeOnFace::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> & (BOPAlgo_AlertUnableToMakeClosedEdgeOnFace::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToMakeClosedEdgeOnFace::*)() const>(&BOPAlgo_AlertUnableToMakeClosedEdgeOnFace::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToMakeIdentical ,opencascade::handle<BOPAlgo_AlertUnableToMakeIdentical>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToMakeIdentical::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToMakeIdentical::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> & (BOPAlgo_AlertUnableToMakeIdentical::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToMakeIdentical::*)() const>(&BOPAlgo_AlertUnableToMakeIdentical::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToMakePeriodic ,opencascade::handle<BOPAlgo_AlertUnableToMakePeriodic>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToMakePeriodic::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToMakePeriodic::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> & (BOPAlgo_AlertUnableToMakePeriodic::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToMakePeriodic::*)() const>(&BOPAlgo_AlertUnableToMakePeriodic::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToOrientTheShape ,opencascade::handle<BOPAlgo_AlertUnableToOrientTheShape>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToOrientTheShape::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToOrientTheShape::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> & (BOPAlgo_AlertUnableToOrientTheShape::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToOrientTheShape::*)() const>(&BOPAlgo_AlertUnableToOrientTheShape::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToRemoveTheFeature ,opencascade::handle<BOPAlgo_AlertUnableToRemoveTheFeature>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToRemoveTheFeature::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToRemoveTheFeature::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> & (BOPAlgo_AlertUnableToRemoveTheFeature::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToRemoveTheFeature::*)() const>(&BOPAlgo_AlertUnableToRemoveTheFeature::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToRepeat ,opencascade::handle<BOPAlgo_AlertUnableToRepeat>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToRepeat::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToRepeat::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> & (BOPAlgo_AlertUnableToRepeat::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToRepeat::*)() const>(&BOPAlgo_AlertUnableToRepeat::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnableToTrim ,opencascade::handle<BOPAlgo_AlertUnableToTrim>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnableToTrim::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnableToTrim::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> & (BOPAlgo_AlertUnableToTrim::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnableToTrim::*)() const>(&BOPAlgo_AlertUnableToTrim::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnknownShape ,opencascade::handle<BOPAlgo_AlertUnknownShape>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnknownShape::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnknownShape::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> & (BOPAlgo_AlertUnknownShape::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnknownShape::*)() const>(&BOPAlgo_AlertUnknownShape::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUnsupportedType ,opencascade::handle<BOPAlgo_AlertUnsupportedType>  , TopoDS_AlertWithShape >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // 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 * (*)() >(&BOPAlgo_AlertUnsupportedType::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUnsupportedType::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> & (BOPAlgo_AlertUnsupportedType::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUnsupportedType::*)() const>(&BOPAlgo_AlertUnsupportedType::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BOPAlgo_AlertUserBreak ,opencascade::handle<BOPAlgo_AlertUserBreak>  , Message_Alert >>(klass)
    // constructors
    // 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 * (*)() >(&BOPAlgo_AlertUserBreak::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BOPAlgo_AlertUserBreak::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> & (BOPAlgo_AlertUserBreak::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BOPAlgo_AlertUserBreak::*)() const>(&BOPAlgo_AlertUserBreak::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_CheckResult , shared_ptr<BOPAlgo_CheckResult>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetShape1",
             (void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) >(&BOPAlgo_CheckResult::SetShape1),
             R"#(sets ancestor shape (object) for faulty sub-shapes)#"  , py::arg("TheShape")
          )
        .def("AddFaultyShape1",
             (void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) >(&BOPAlgo_CheckResult::AddFaultyShape1),
             R"#(adds faulty sub-shapes from object to a list)#"  , py::arg("TheShape")
          )
        .def("SetShape2",
             (void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) >(&BOPAlgo_CheckResult::SetShape2),
             R"#(sets ancestor shape (tool) for faulty sub-shapes)#"  , py::arg("TheShape")
          )
        .def("AddFaultyShape2",
             (void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const TopoDS_Shape &  ) >(&BOPAlgo_CheckResult::AddFaultyShape2),
             R"#(adds faulty sub-shapes from tool to a list)#"  , py::arg("TheShape")
          )
        .def("SetCheckStatus",
             (void (BOPAlgo_CheckResult::*)( const BOPAlgo_CheckStatus  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const BOPAlgo_CheckStatus  ) >(&BOPAlgo_CheckResult::SetCheckStatus),
             R"#(set status of faulty)#"  , py::arg("TheStatus")
          )
        .def("GetCheckStatus",
             (BOPAlgo_CheckStatus (BOPAlgo_CheckResult::*)() const) static_cast<BOPAlgo_CheckStatus (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetCheckStatus),
             R"#(gets status of faulty)#" 
          )
        .def("SetMaxDistance1",
             (void (BOPAlgo_CheckResult::*)( const Standard_Real  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const Standard_Real  ) >(&BOPAlgo_CheckResult::SetMaxDistance1),
             R"#(Sets max distance for the first shape)#"  , py::arg("theDist")
          )
        .def("SetMaxDistance2",
             (void (BOPAlgo_CheckResult::*)( const Standard_Real  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const Standard_Real  ) >(&BOPAlgo_CheckResult::SetMaxDistance2),
             R"#(Sets max distance for the second shape)#"  , py::arg("theDist")
          )
        .def("SetMaxParameter1",
             (void (BOPAlgo_CheckResult::*)( const Standard_Real  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const Standard_Real  ) >(&BOPAlgo_CheckResult::SetMaxParameter1),
             R"#(Sets the parameter for the first shape)#"  , py::arg("thePar")
          )
        .def("SetMaxParameter2",
             (void (BOPAlgo_CheckResult::*)( const Standard_Real  ) ) static_cast<void (BOPAlgo_CheckResult::*)( const Standard_Real  ) >(&BOPAlgo_CheckResult::SetMaxParameter2),
             R"#(Sets the parameter for the second shape)#"  , py::arg("thePar")
          )
        .def("GetMaxDistance1",
             (Standard_Real (BOPAlgo_CheckResult::*)() const) static_cast<Standard_Real (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetMaxDistance1),
             R"#(Returns the distance for the first shape)#" 
          )
        .def("GetMaxDistance2",
             (Standard_Real (BOPAlgo_CheckResult::*)() const) static_cast<Standard_Real (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetMaxDistance2),
             R"#(Returns the distance for the second shape)#" 
          )
        .def("GetMaxParameter1",
             (Standard_Real (BOPAlgo_CheckResult::*)() const) static_cast<Standard_Real (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetMaxParameter1),
             R"#(Returns the parameter for the fircst shape)#" 
          )
        .def("GetMaxParameter2",
             (Standard_Real (BOPAlgo_CheckResult::*)() const) static_cast<Standard_Real (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetMaxParameter2),
             R"#(Returns the parameter for the second shape)#" 
          )
    // 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("GetShape1",
             (const TopoDS_Shape & (BOPAlgo_CheckResult::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetShape1),
             R"#(returns ancestor shape (object) for faulties)#"
             
         )
       .def("GetShape2",
             (const TopoDS_Shape & (BOPAlgo_CheckResult::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetShape2),
             R"#(returns ancestor shape (tool) for faulties)#"
             
         )
       .def("GetFaultyShapes1",
             (const TopTools_ListOfShape & (BOPAlgo_CheckResult::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetFaultyShapes1),
             R"#(returns list of faulty shapes for object)#"
             
         )
       .def("GetFaultyShapes2",
             (const TopTools_ListOfShape & (BOPAlgo_CheckResult::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_CheckResult::*)() const>(&BOPAlgo_CheckResult::GetFaultyShapes2),
             R"#(returns list of faulty shapes for tool)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_EdgeInfo , shared_ptr<BOPAlgo_EdgeInfo>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetEdge",
             (void (BOPAlgo_EdgeInfo::*)( const TopoDS_Edge &  ) ) static_cast<void (BOPAlgo_EdgeInfo::*)( const TopoDS_Edge &  ) >(&BOPAlgo_EdgeInfo::SetEdge),
             R"#(None)#"  , py::arg("theE")
          )
        .def("SetPassed",
             (void (BOPAlgo_EdgeInfo::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_EdgeInfo::*)( const Standard_Boolean  ) >(&BOPAlgo_EdgeInfo::SetPassed),
             R"#(None)#"  , py::arg("theFlag")
          )
        .def("Passed",
             (Standard_Boolean (BOPAlgo_EdgeInfo::*)() const) static_cast<Standard_Boolean (BOPAlgo_EdgeInfo::*)() const>(&BOPAlgo_EdgeInfo::Passed),
             R"#(None)#" 
          )
        .def("SetInFlag",
             (void (BOPAlgo_EdgeInfo::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_EdgeInfo::*)( const Standard_Boolean  ) >(&BOPAlgo_EdgeInfo::SetInFlag),
             R"#(None)#"  , py::arg("theFlag")
          )
        .def("IsIn",
             (Standard_Boolean (BOPAlgo_EdgeInfo::*)() const) static_cast<Standard_Boolean (BOPAlgo_EdgeInfo::*)() const>(&BOPAlgo_EdgeInfo::IsIn),
             R"#(None)#" 
          )
        .def("SetAngle",
             (void (BOPAlgo_EdgeInfo::*)( const Standard_Real  ) ) static_cast<void (BOPAlgo_EdgeInfo::*)( const Standard_Real  ) >(&BOPAlgo_EdgeInfo::SetAngle),
             R"#(None)#"  , py::arg("theAngle")
          )
        .def("Angle",
             (Standard_Real (BOPAlgo_EdgeInfo::*)() const) static_cast<Standard_Real (BOPAlgo_EdgeInfo::*)() const>(&BOPAlgo_EdgeInfo::Angle),
             R"#(None)#" 
          )
        .def("IsInside",
             (Standard_Boolean (BOPAlgo_EdgeInfo::*)() const) static_cast<Standard_Boolean (BOPAlgo_EdgeInfo::*)() const>(&BOPAlgo_EdgeInfo::IsInside),
             R"#(None)#" 
          )
        .def("SetIsInside",
             (void (BOPAlgo_EdgeInfo::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_EdgeInfo::*)( const Standard_Boolean  ) >(&BOPAlgo_EdgeInfo::SetIsInside),
             R"#(None)#"  , py::arg("theIsInside")
          )
    // 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("Edge",
             (const TopoDS_Edge & (BOPAlgo_EdgeInfo::*)() const) static_cast<const TopoDS_Edge & (BOPAlgo_EdgeInfo::*)() const>(&BOPAlgo_EdgeInfo::Edge),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_Options , shared_ptr<BOPAlgo_Options>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Clear",
             (void (BOPAlgo_Options::*)() ) static_cast<void (BOPAlgo_Options::*)() >(&BOPAlgo_Options::Clear),
             R"#(Clears all warnings and errors, and any data cached by the algorithm. User defined options are not cleared.)#" 
          )
        .def("AddError",
             (void (BOPAlgo_Options::*)( const opencascade::handle<Message_Alert> &  ) ) static_cast<void (BOPAlgo_Options::*)( const opencascade::handle<Message_Alert> &  ) >(&BOPAlgo_Options::AddError),
             R"#(Adds the alert as error (fail))#"  , py::arg("theAlert")
          )
        .def("AddWarning",
             (void (BOPAlgo_Options::*)( const opencascade::handle<Message_Alert> &  ) ) static_cast<void (BOPAlgo_Options::*)( const opencascade::handle<Message_Alert> &  ) >(&BOPAlgo_Options::AddWarning),
             R"#(Adds the alert as warning)#"  , py::arg("theAlert")
          )
        .def("HasErrors",
             (Standard_Boolean (BOPAlgo_Options::*)() const) static_cast<Standard_Boolean (BOPAlgo_Options::*)() const>(&BOPAlgo_Options::HasErrors),
             R"#(Returns true if algorithm has failed)#" 
          )
        .def("HasError",
             (Standard_Boolean (BOPAlgo_Options::*)( const opencascade::handle<Standard_Type> &  ) const) static_cast<Standard_Boolean (BOPAlgo_Options::*)( const opencascade::handle<Standard_Type> &  ) const>(&BOPAlgo_Options::HasError),
             R"#(Returns true if algorithm has generated error of specified type)#"  , py::arg("theType")
          )
        .def("HasWarnings",
             (Standard_Boolean (BOPAlgo_Options::*)() const) static_cast<Standard_Boolean (BOPAlgo_Options::*)() const>(&BOPAlgo_Options::HasWarnings),
             R"#(Returns true if algorithm has generated some warning alerts)#" 
          )
        .def("HasWarning",
             (Standard_Boolean (BOPAlgo_Options::*)( const opencascade::handle<Standard_Type> &  ) const) static_cast<Standard_Boolean (BOPAlgo_Options::*)( const opencascade::handle<Standard_Type> &  ) const>(&BOPAlgo_Options::HasWarning),
             R"#(Returns true if algorithm has generated warning of specified type)#"  , py::arg("theType")
          )
        .def("DumpErrors",
             (void (BOPAlgo_Options::*)( std::ostream &  ) const) static_cast<void (BOPAlgo_Options::*)( std::ostream &  ) const>(&BOPAlgo_Options::DumpErrors),
             R"#(Dumps the error status into the given stream)#"  , py::arg("theOS")
          )
        .def("DumpWarnings",
             (void (BOPAlgo_Options::*)( std::ostream &  ) const) static_cast<void (BOPAlgo_Options::*)( std::ostream &  ) const>(&BOPAlgo_Options::DumpWarnings),
             R"#(Dumps the warning statuses into the given stream)#"  , py::arg("theOS")
          )
        .def("ClearWarnings",
             (void (BOPAlgo_Options::*)() ) static_cast<void (BOPAlgo_Options::*)() >(&BOPAlgo_Options::ClearWarnings),
             R"#(Clears the warnings of the algorithm)#" 
          )
        .def("SetRunParallel",
             (void (BOPAlgo_Options::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_Options::*)( const Standard_Boolean  ) >(&BOPAlgo_Options::SetRunParallel),
             R"#(Set the flag of parallel processing if <theFlag> is true the parallel processing is switched on if <theFlag> is false the parallel processing is switched off)#"  , py::arg("theFlag")
          )
        .def("RunParallel",
             (Standard_Boolean (BOPAlgo_Options::*)() const) static_cast<Standard_Boolean (BOPAlgo_Options::*)() const>(&BOPAlgo_Options::RunParallel),
             R"#(Returns the flag of parallel processing)#" 
          )
        .def("SetFuzzyValue",
             (void (BOPAlgo_Options::*)( const Standard_Real  ) ) static_cast<void (BOPAlgo_Options::*)( const Standard_Real  ) >(&BOPAlgo_Options::SetFuzzyValue),
             R"#(Sets the additional tolerance)#"  , py::arg("theFuzz")
          )
        .def("FuzzyValue",
             (Standard_Real (BOPAlgo_Options::*)() const) static_cast<Standard_Real (BOPAlgo_Options::*)() const>(&BOPAlgo_Options::FuzzyValue),
             R"#(Returns the additional tolerance)#" 
          )
        .def("SetUseOBB",
             (void (BOPAlgo_Options::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_Options::*)( const Standard_Boolean  ) >(&BOPAlgo_Options::SetUseOBB),
             R"#(Enables/Disables the usage of OBB)#"  , py::arg("theUseOBB")
          )
        .def("UseOBB",
             (Standard_Boolean (BOPAlgo_Options::*)() const) static_cast<Standard_Boolean (BOPAlgo_Options::*)() const>(&BOPAlgo_Options::UseOBB),
             R"#(Returns the flag defining usage of OBB)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("GetParallelMode_s",
                    (Standard_Boolean (*)() ) static_cast<Standard_Boolean (*)() >(&BOPAlgo_Options::GetParallelMode),
                    R"#(Gets the global parallel mode)#" 
          )
        .def_static("SetParallelMode_s",
                    (void (*)( const Standard_Boolean  ) ) static_cast<void (*)( const Standard_Boolean  ) >(&BOPAlgo_Options::SetParallelMode),
                    R"#(Sets the global parallel mode)#"  , py::arg("theNewMode")
          )
    // 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("Allocator",
             (const opencascade::handle<NCollection_BaseAllocator> & (BOPAlgo_Options::*)() const) static_cast<const opencascade::handle<NCollection_BaseAllocator> & (BOPAlgo_Options::*)() const>(&BOPAlgo_Options::Allocator),
             R"#(Returns allocator)#"
             
         )
       .def("GetReport",
             (const opencascade::handle<Message_Report> & (BOPAlgo_Options::*)() const) static_cast<const opencascade::handle<Message_Report> & (BOPAlgo_Options::*)() const>(&BOPAlgo_Options::GetReport),
             R"#(Returns report collecting all errors and warnings)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_PISteps , shared_ptr<BOPAlgo_PISteps>  >>(klass)
    // constructors
        .def(py::init< const Standard_Integer >()  , py::arg("theNbOp") )
    // custom constructors
    // methods
        .def("SetStep",
             (void (BOPAlgo_PISteps::*)( const Standard_Integer ,  const Standard_Real  ) ) static_cast<void (BOPAlgo_PISteps::*)( const Standard_Integer ,  const Standard_Real  ) >(&BOPAlgo_PISteps::SetStep),
             R"#(Assign the value theStep to theOperation)#"  , py::arg("theOperation"),  py::arg("theStep")
          )
        .def("GetStep",
             (Standard_Real (BOPAlgo_PISteps::*)( const Standard_Integer  ) ) static_cast<Standard_Real (BOPAlgo_PISteps::*)( const Standard_Integer  ) >(&BOPAlgo_PISteps::GetStep),
             R"#(Returns the step assigned to the operation)#"  , py::arg("theOperation")
          )
    // 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("Steps",
             (const TColStd_Array1OfReal & (BOPAlgo_PISteps::*)() const) static_cast<const TColStd_Array1OfReal & (BOPAlgo_PISteps::*)() const>(&BOPAlgo_PISteps::Steps),
             R"#(Returns the steps)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("ChangeSteps",
             (TColStd_Array1OfReal & (BOPAlgo_PISteps::*)() ) static_cast<TColStd_Array1OfReal & (BOPAlgo_PISteps::*)() >(&BOPAlgo_PISteps::ChangeSteps),
             R"#(Returns modifiable steps)#"
             
             , py::return_value_policy::reference_internal
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_SectionAttribute , shared_ptr<BOPAlgo_SectionAttribute>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const Standard_Boolean,const Standard_Boolean,const Standard_Boolean >()  , py::arg("theAproximation"),  py::arg("thePCurveOnS1"),  py::arg("thePCurveOnS2") )
    // custom constructors
    // methods
        .def("Approximation",
             (void (BOPAlgo_SectionAttribute::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_SectionAttribute::*)( const Standard_Boolean  ) >(&BOPAlgo_SectionAttribute::Approximation),
             R"#(Sets the Approximation flag)#"  , py::arg("theApprox")
          )
        .def("PCurveOnS1",
             (void (BOPAlgo_SectionAttribute::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_SectionAttribute::*)( const Standard_Boolean  ) >(&BOPAlgo_SectionAttribute::PCurveOnS1),
             R"#(Sets the PCurveOnS1 flag)#"  , py::arg("thePCurveOnS1")
          )
        .def("PCurveOnS2",
             (void (BOPAlgo_SectionAttribute::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_SectionAttribute::*)( const Standard_Boolean  ) >(&BOPAlgo_SectionAttribute::PCurveOnS2),
             R"#(Sets the PCurveOnS2 flag)#"  , py::arg("thePCurveOnS2")
          )
        .def("Approximation",
             (Standard_Boolean (BOPAlgo_SectionAttribute::*)() const) static_cast<Standard_Boolean (BOPAlgo_SectionAttribute::*)() const>(&BOPAlgo_SectionAttribute::Approximation),
             R"#(Returns the Approximation flag)#" 
          )
        .def("PCurveOnS1",
             (Standard_Boolean (BOPAlgo_SectionAttribute::*)() const) static_cast<Standard_Boolean (BOPAlgo_SectionAttribute::*)() const>(&BOPAlgo_SectionAttribute::PCurveOnS1),
             R"#(Returns the PCurveOnS1 flag)#" 
          )
        .def("PCurveOnS2",
             (Standard_Boolean (BOPAlgo_SectionAttribute::*)() const) static_cast<Standard_Boolean (BOPAlgo_SectionAttribute::*)() const>(&BOPAlgo_SectionAttribute::PCurveOnS2),
             R"#(Returns the PCurveOnS2 flag)#" 
          )
    // 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 BOPAlgo_Tools from ./opencascade/BOPAlgo_Tools.hxx
    klass = m.attr("BOPAlgo_Tools");

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

    // nested enums

    static_cast<py::class_<BOPAlgo_Tools , shared_ptr<BOPAlgo_Tools>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("FillMap_s",
                    (void (*)( const opencascade::handle<BOPDS_PaveBlock> & ,  const Standard_Integer ,  NCollection_IndexedDataMap<opencascade::handle<BOPDS_PaveBlock>, TColStd_ListOfInteger> & ,  const opencascade::handle<NCollection_BaseAllocator> &  ) ) static_cast<void (*)( const opencascade::handle<BOPDS_PaveBlock> & ,  const Standard_Integer ,  NCollection_IndexedDataMap<opencascade::handle<BOPDS_PaveBlock>, TColStd_ListOfInteger> & ,  const opencascade::handle<NCollection_BaseAllocator> &  ) >(&BOPAlgo_Tools::FillMap),
                    R"#(None)#"  , py::arg("thePB1"),  py::arg("theF"),  py::arg("theMILI"),  py::arg("theAllocator")
          )
        .def_static("ComputeToleranceOfCB_s",
                    (Standard_Real (*)( const opencascade::handle<BOPDS_CommonBlock> & ,  const BOPDS_PDS ,  const opencascade::handle<IntTools_Context> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<BOPDS_CommonBlock> & ,  const BOPDS_PDS ,  const opencascade::handle<IntTools_Context> &  ) >(&BOPAlgo_Tools::ComputeToleranceOfCB),
                    R"#(None)#"  , py::arg("theCB"),  py::arg("theDS"),  py::arg("theContext")
          )
        .def_static("EdgesToWires_s",
                    (Standard_Integer (*)( const TopoDS_Shape & ,  TopoDS_Shape & ,  const Standard_Boolean ,  const Standard_Real  ) ) static_cast<Standard_Integer (*)( const TopoDS_Shape & ,  TopoDS_Shape & ,  const Standard_Boolean ,  const Standard_Real  ) >(&BOPAlgo_Tools::EdgesToWires),
                    R"#(Creates planar wires from the given edges. The input edges are expected to be planar. And for the performance sake the method does not check if the edges are really planar. Thus, the result wires will also be not planar if the input edges are not planar. The edges may be not shared, but the resulting wires will be sharing the coinciding parts and intersecting parts. The output wires may be non-manifold and contain free and multi-connected vertices. Parameters: <theEdges> - input edges; <theWires> - output wires; <theShared> - boolean flag which defines whether the input edges are already shared or have to be intersected; <theAngTol> - the angular tolerance which will be used for distinguishing the planes in which the edges are located. Default value is 1.e-8 which is used for intersection of planes in IntTools_FaceFace. Method returns the following error statuses: 0 - in case of success (at least one wire has been built); 1 - in case there are no edges in the given shape; 2 - sharing of the edges has failed.)#"  , py::arg("theEdges"),  py::arg("theWires"),  py::arg("theShared")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("theAngTol")=static_cast<const Standard_Real>(1.e-8)
          )
        .def_static("WiresToFaces_s",
                    (Standard_Boolean (*)( const TopoDS_Shape & ,  TopoDS_Shape & ,  const Standard_Real  ) ) static_cast<Standard_Boolean (*)( const TopoDS_Shape & ,  TopoDS_Shape & ,  const Standard_Real  ) >(&BOPAlgo_Tools::WiresToFaces),
                    R"#(Creates planar faces from given planar wires. The method does not check if the wires are really planar. The input wires may be non-manifold but should be shared. The wires located in the same planes and included into other wires will create holes in the faces built from outer wires. The tolerance values of the input shapes may be modified during the operation due to projection of the edges on the planes for creation of 2D curves. Parameters: <theWires> - the given wires; <theFaces> - the output faces; <theAngTol> - the angular tolerance for distinguishing the planes in which the wires are located. Default value is 1.e-8 which is used for intersection of planes in IntTools_FaceFace. Method returns TRUE in case of success, i.e. at least one face has been built.)#"  , py::arg("theWires"),  py::arg("theFaces"),  py::arg("theAngTol")=static_cast<const Standard_Real>(1.e-8)
          )
        .def_static("IntersectVertices_s",
                    (void (*)(  const NCollection_IndexedDataMap<TopoDS_Shape, Standard_Real, TopTools_ShapeMapHasher> & ,  const Standard_Real ,  NCollection_List<TopTools_ListOfShape> &  ) ) static_cast<void (*)(  const NCollection_IndexedDataMap<TopoDS_Shape, Standard_Real, TopTools_ShapeMapHasher> & ,  const Standard_Real ,  NCollection_List<TopTools_ListOfShape> &  ) >(&BOPAlgo_Tools::IntersectVertices),
                    R"#(Finds chains of intersecting vertices)#"  , py::arg("theVertices"),  py::arg("theFuzzyValue"),  py::arg("theChains")
          )
        .def_static("FillInternals_s",
                    (void (*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> & ,   const NCollection_DataMap<TopoDS_Shape, TopTools_ListOfShape, TopTools_ShapeMapHasher> & ,  const opencascade::handle<IntTools_Context> &  ) ) static_cast<void (*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> & ,   const NCollection_DataMap<TopoDS_Shape, TopTools_ListOfShape, TopTools_ShapeMapHasher> & ,  const opencascade::handle<IntTools_Context> &  ) >(&BOPAlgo_Tools::FillInternals),
                    R"#(Classifies the given parts relatively the given solids and fills the solids with the parts classified as INTERNAL.)#"  , py::arg("theSolids"),  py::arg("theParts"),  py::arg("theImages"),  py::arg("theContext")
          )
        .def_static("TrsfToPoint_s",
                    (Standard_Boolean (*)( const Bnd_Box & ,  const Bnd_Box & ,  gp_Trsf & ,  const gp_Pnt & ,  const Standard_Real  ) ) static_cast<Standard_Boolean (*)( const Bnd_Box & ,  const Bnd_Box & ,  gp_Trsf & ,  const gp_Pnt & ,  const Standard_Real  ) >(&BOPAlgo_Tools::TrsfToPoint),
                    R"#(Computes the transformation needed to move the objects to the given point to increase the quality of computations. Returns true if the objects are located far from the given point (relatively given criteria), false otherwise.)#"  , py::arg("theBox1"),  py::arg("theBox2"),  py::arg("theTrsf"),  py::arg("thePoint")=static_cast<const gp_Pnt &>(gp_Pnt ( 0.0 , 0.0 , 0.0 )),  py::arg("theCriteria")=static_cast<const Standard_Real>(1.e+5)
          )
    // static methods using call by reference i.s.o. return
        .def_static("ClassifyFaces_s",
            []( const NCollection_List<TopoDS_Shape> & theFaces, const NCollection_List<TopoDS_Shape> & theSolids,const Standard_Boolean theRunParallel,IntTools_Context& theContext,NCollection_IndexedDataMap<TopoDS_Shape, TopTools_ListOfShape, TopTools_ShapeMapHasher> & theInParts, const NCollection_DataMap<TopoDS_Shape, Bnd_Box, TopTools_ShapeMapHasher> & theShapeBoxMap, const NCollection_DataMap<TopoDS_Shape, TopTools_ListOfShape, TopTools_ShapeMapHasher> & theSolidsIF,const Message_ProgressRange & theRange ){
                opencascade::handle<IntTools_Context>  theContext_ptr; theContext_ptr = &theContext;

                BOPAlgo_Tools::ClassifyFaces(theFaces,theSolids,theRunParallel,theContext_ptr,theInParts,theShapeBoxMap,theSolidsIF,theRange);
                if ( theContext_ptr.get() != &theContext ) copy_if_copy_constructible(theContext, *theContext_ptr);

 },
            R"#(Classifies the faces <theFaces> relatively solids <theSolids>. The IN faces for solids are stored into output data map <theInParts>.)#"  , py::arg("theFaces"),  py::arg("theSolids"),  py::arg("theRunParallel"),  py::arg("theContext"),  py::arg("theInParts"),  py::arg("theShapeBoxMap")=static_cast< const NCollection_DataMap<TopoDS_Shape, Bnd_Box, TopTools_ShapeMapHasher> &>(TopTools_DataMapOfShapeBox ( )),  py::arg("theSolidsIF")=static_cast< const NCollection_DataMap<TopoDS_Shape, TopTools_ListOfShape, TopTools_ShapeMapHasher> &>(TopTools_DataMapOfShapeListOfShape ( )),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_WireEdgeSet , shared_ptr<BOPAlgo_WireEdgeSet>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Clear",
             (void (BOPAlgo_WireEdgeSet::*)() ) static_cast<void (BOPAlgo_WireEdgeSet::*)() >(&BOPAlgo_WireEdgeSet::Clear),
             R"#(None)#" 
          )
        .def("SetFace",
             (void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Face &  ) ) static_cast<void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Face &  ) >(&BOPAlgo_WireEdgeSet::SetFace),
             R"#(None)#"  , py::arg("aF")
          )
        .def("AddStartElement",
             (void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) >(&BOPAlgo_WireEdgeSet::AddStartElement),
             R"#(None)#"  , py::arg("sS")
          )
        .def("AddShape",
             (void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) >(&BOPAlgo_WireEdgeSet::AddShape),
             R"#(None)#"  , py::arg("sS")
          )
        .def("Clear",
             (void (BOPAlgo_WireEdgeSet::*)() ) static_cast<void (BOPAlgo_WireEdgeSet::*)() >(&BOPAlgo_WireEdgeSet::Clear),
             R"#(None)#" 
          )
        .def("SetFace",
             (void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Face &  ) ) static_cast<void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Face &  ) >(&BOPAlgo_WireEdgeSet::SetFace),
             R"#(None)#"  , py::arg("aF")
          )
        .def("AddStartElement",
             (void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) >(&BOPAlgo_WireEdgeSet::AddStartElement),
             R"#(None)#"  , py::arg("aE")
          )
        .def("AddShape",
             (void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_WireEdgeSet::*)( const TopoDS_Shape &  ) >(&BOPAlgo_WireEdgeSet::AddShape),
             R"#(None)#"  , py::arg("aW")
          )
    // 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("Face",
             (const TopoDS_Face & (BOPAlgo_WireEdgeSet::*)() const) static_cast<const TopoDS_Face & (BOPAlgo_WireEdgeSet::*)() const>(&BOPAlgo_WireEdgeSet::Face),
             R"#(None)#"
             
         )
       .def("StartElements",
             (const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const>(&BOPAlgo_WireEdgeSet::StartElements),
             R"#(None)#"
             
         )
       .def("Shapes",
             (const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const>(&BOPAlgo_WireEdgeSet::Shapes),
             R"#(None)#"
             
         )
       .def("Face",
             (const TopoDS_Face & (BOPAlgo_WireEdgeSet::*)() const) static_cast<const TopoDS_Face & (BOPAlgo_WireEdgeSet::*)() const>(&BOPAlgo_WireEdgeSet::Face),
             R"#(None)#"
             
         )
       .def("StartElements",
             (const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const>(&BOPAlgo_WireEdgeSet::StartElements),
             R"#(None)#"
             
         )
       .def("Shapes",
             (const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_WireEdgeSet::*)() const>(&BOPAlgo_WireEdgeSet::Shapes),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_Algo , shared_ptr_nodelete<BOPAlgo_Algo> ,Py_BOPAlgo_Algo , BOPAlgo_Options >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Perform",
             (void (BOPAlgo_Algo::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_Algo::*)( const Message_ProgressRange &  ) >(&BOPAlgo_Algo::Perform),
             R"#(The main method to implement the operation Providing the range allows to enable Progress indicator User break functionalities.)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // 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 BOPAlgo_MakeConnected from ./opencascade/BOPAlgo_MakeConnected.hxx
    klass = m.attr("BOPAlgo_MakeConnected");


    // nested enums

    static_cast<py::class_<BOPAlgo_MakeConnected , shared_ptr<BOPAlgo_MakeConnected>  , BOPAlgo_Options >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetArguments",
             (void (BOPAlgo_MakeConnected::*)(  const NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BOPAlgo_MakeConnected::*)(  const NCollection_List<TopoDS_Shape> &  ) >(&BOPAlgo_MakeConnected::SetArguments),
             R"#(Sets the shape for making them connected.)#"  , py::arg("theArgs")
          )
        .def("AddArgument",
             (void (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) >(&BOPAlgo_MakeConnected::AddArgument),
             R"#(Adds the shape to the arguments.)#"  , py::arg("theS")
          )
        .def("Perform",
             (void (BOPAlgo_MakeConnected::*)() ) static_cast<void (BOPAlgo_MakeConnected::*)() >(&BOPAlgo_MakeConnected::Perform),
             R"#(Performs the operation, i.e. makes the input shapes connected.)#" 
          )
        .def("MakePeriodic",
             (void (BOPAlgo_MakeConnected::*)( const BOPAlgo_MakePeriodic::PeriodicityParams &  ) ) static_cast<void (BOPAlgo_MakeConnected::*)( const BOPAlgo_MakePeriodic::PeriodicityParams &  ) >(&BOPAlgo_MakeConnected::MakePeriodic),
             R"#(Makes the connected shape periodic. Repeated calls of this method overwrite the previous calls working with the basis connected shape.)#"  , py::arg("theParams")
          )
        .def("RepeatShape",
             (void (BOPAlgo_MakeConnected::*)( const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (BOPAlgo_MakeConnected::*)( const Standard_Integer ,  const Standard_Integer  ) >(&BOPAlgo_MakeConnected::RepeatShape),
             R"#(Performs repetition of the periodic shape in specified direction required number of times.)#"  , py::arg("theDirectionID"),  py::arg("theTimes")
          )
        .def("ClearRepetitions",
             (void (BOPAlgo_MakeConnected::*)() ) static_cast<void (BOPAlgo_MakeConnected::*)() >(&BOPAlgo_MakeConnected::ClearRepetitions),
             R"#(Clears the repetitions performed on the periodic shape, keeping the shape periodic.)#" 
          )
        .def("MaterialsOnPositiveSide",
             (const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) >(&BOPAlgo_MakeConnected::MaterialsOnPositiveSide),
             R"#(Returns the original shapes which images contain the the given shape with FORWARD orientation.)#"  , py::arg("theS")
          )
        .def("MaterialsOnNegativeSide",
             (const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) >(&BOPAlgo_MakeConnected::MaterialsOnNegativeSide),
             R"#(Returns the original shapes which images contain the the given shape with REVERSED orientation.)#"  , py::arg("theS")
          )
        .def("GetModified",
             (const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) >(&BOPAlgo_MakeConnected::GetModified),
             R"#(Returns the list of shapes modified from the given shape.)#"  , py::arg("theS")
          )
        .def("GetOrigins",
             (const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)( const TopoDS_Shape &  ) >(&BOPAlgo_MakeConnected::GetOrigins),
             R"#(Returns the list of original shapes from which the current shape has been created.)#"  , py::arg("theS")
          )
        .def("Clear",
             (void (BOPAlgo_MakeConnected::*)() ) static_cast<void (BOPAlgo_MakeConnected::*)() >(&BOPAlgo_MakeConnected::Clear),
             R"#(Clears the contents of the algorithm.)#" 
          )
    // 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("Arguments",
             (const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakeConnected::*)() const>(&BOPAlgo_MakeConnected::Arguments),
             R"#(Returns the list of arguments of the operation.)#"
             
         )
       .def("PeriodicityTool",
             (const BOPAlgo_MakePeriodic & (BOPAlgo_MakeConnected::*)() const) static_cast<const BOPAlgo_MakePeriodic & (BOPAlgo_MakeConnected::*)() const>(&BOPAlgo_MakeConnected::PeriodicityTool),
             R"#(Returns the periodicity tool.)#"
             
         )
       .def("History",
             (const opencascade::handle<BRepTools_History> & (BOPAlgo_MakeConnected::*)() const) static_cast<const opencascade::handle<BRepTools_History> & (BOPAlgo_MakeConnected::*)() const>(&BOPAlgo_MakeConnected::History),
             R"#(Returns the history of operations)#"
             
         )
       .def("Shape",
             (const TopoDS_Shape & (BOPAlgo_MakeConnected::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_MakeConnected::*)() const>(&BOPAlgo_MakeConnected::Shape),
             R"#(Returns the resulting connected shape)#"
             
         )
       .def("PeriodicShape",
             (const TopoDS_Shape & (BOPAlgo_MakeConnected::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_MakeConnected::*)() const>(&BOPAlgo_MakeConnected::PeriodicShape),
             R"#(Returns the resulting periodic & repeated shape)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_MakePeriodic , shared_ptr<BOPAlgo_MakePeriodic>  , BOPAlgo_Options >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetShape",
             (void (BOPAlgo_MakePeriodic::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const TopoDS_Shape &  ) >(&BOPAlgo_MakePeriodic::SetShape),
             R"#(Sets the shape to make it periodic.)#"  , py::arg("theShape")
          )
        .def("SetPeriodicityParameters",
             (void (BOPAlgo_MakePeriodic::*)( const BOPAlgo_MakePeriodic::PeriodicityParams &  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const BOPAlgo_MakePeriodic::PeriodicityParams &  ) >(&BOPAlgo_MakePeriodic::SetPeriodicityParameters),
             R"#(Sets the periodicity parameters.)#"  , py::arg("theParams")
          )
        .def("MakePeriodic",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Integer ,  const Standard_Boolean ,  const Standard_Real  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Integer ,  const Standard_Boolean ,  const Standard_Real  ) >(&BOPAlgo_MakePeriodic::MakePeriodic),
             R"#(Sets the flag to make the shape periodic in specified direction: - 0 - X direction; - 1 - Y direction; - 2 - Z direction.)#"  , py::arg("theDirectionID"),  py::arg("theIsPeriodic"),  py::arg("thePeriod")=static_cast<const Standard_Real>(0.0)
          )
        .def("IsPeriodic",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const>(&BOPAlgo_MakePeriodic::IsPeriodic),
             R"#(Returns the info about Periodicity of the shape in specified direction.)#"  , py::arg("theDirectionID")
          )
        .def("Period",
             (Standard_Real (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const>(&BOPAlgo_MakePeriodic::Period),
             R"#(Returns the Period of the shape in specified direction.)#"  , py::arg("theDirectionID")
          )
        .def("MakeXPeriodic",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Real  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Real  ) >(&BOPAlgo_MakePeriodic::MakeXPeriodic),
             R"#(Sets the flag to make the shape periodic in X direction.)#"  , py::arg("theIsPeriodic"),  py::arg("thePeriod")=static_cast<const Standard_Real>(0.0)
          )
        .def("IsXPeriodic",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::IsXPeriodic),
             R"#(Returns the info about periodicity of the shape in X direction.)#" 
          )
        .def("XPeriod",
             (Standard_Real (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::XPeriod),
             R"#(Returns the XPeriod of the shape)#" 
          )
        .def("MakeYPeriodic",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Real  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Real  ) >(&BOPAlgo_MakePeriodic::MakeYPeriodic),
             R"#(Sets the flag to make the shape periodic in Y direction.)#"  , py::arg("theIsPeriodic"),  py::arg("thePeriod")=static_cast<const Standard_Real>(0.0)
          )
        .def("IsYPeriodic",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::IsYPeriodic),
             R"#(Returns the info about periodicity of the shape in Y direction.)#" 
          )
        .def("YPeriod",
             (Standard_Real (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::YPeriod),
             R"#(Returns the YPeriod of the shape.)#" 
          )
        .def("MakeZPeriodic",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Real  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Real  ) >(&BOPAlgo_MakePeriodic::MakeZPeriodic),
             R"#(Sets the flag to make the shape periodic in Z direction.)#"  , py::arg("theIsPeriodic"),  py::arg("thePeriod")=static_cast<const Standard_Real>(0.0)
          )
        .def("IsZPeriodic",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::IsZPeriodic),
             R"#(Returns the info about periodicity of the shape in Z direction.)#" 
          )
        .def("ZPeriod",
             (Standard_Real (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::ZPeriod),
             R"#(Returns the ZPeriod of the shape.)#" 
          )
        .def("SetTrimmed",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Integer ,  const Standard_Boolean ,  const Standard_Real  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Integer ,  const Standard_Boolean ,  const Standard_Real  ) >(&BOPAlgo_MakePeriodic::SetTrimmed),
             R"#(Defines whether the input shape is already trimmed in specified direction to fit the period in this direction. Direction is defined by an ID: - 0 - X direction; - 1 - Y direction; - 2 - Z direction.)#"  , py::arg("theDirectionID"),  py::arg("theIsTrimmed"),  py::arg("theFirst")=static_cast<const Standard_Real>(0.0)
          )
        .def("IsInputTrimmed",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const>(&BOPAlgo_MakePeriodic::IsInputTrimmed),
             R"#(Returns whether the input shape was trimmed in the specified direction.)#"  , py::arg("theDirectionID")
          )
        .def("PeriodFirst",
             (Standard_Real (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) const>(&BOPAlgo_MakePeriodic::PeriodFirst),
             R"#(Returns the first periodic parameter in the specified direction.)#"  , py::arg("theDirectionID")
          )
        .def("SetXTrimmed",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Boolean  ) >(&BOPAlgo_MakePeriodic::SetXTrimmed),
             R"#(Defines whether the input shape is already trimmed in X direction to fit the X period. If the shape is not trimmed it is required to set the first parameter for the X period. The algorithm will make the shape fit into the period.)#"  , py::arg("theIsTrimmed"),  py::arg("theFirst")=static_cast<const Standard_Boolean>(0.0)
          )
        .def("IsInputXTrimmed",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::IsInputXTrimmed),
             R"#(Returns whether the input shape was already trimmed for X period.)#" 
          )
        .def("XPeriodFirst",
             (Standard_Real (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::XPeriodFirst),
             R"#(Returns the first parameter for the X period.)#" 
          )
        .def("SetYTrimmed",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Boolean  ) >(&BOPAlgo_MakePeriodic::SetYTrimmed),
             R"#(Defines whether the input shape is already trimmed in Y direction to fit the Y period. If the shape is not trimmed it is required to set the first parameter for the Y period. The algorithm will make the shape fit into the period.)#"  , py::arg("theIsTrimmed"),  py::arg("theFirst")=static_cast<const Standard_Boolean>(0.0)
          )
        .def("IsInputYTrimmed",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::IsInputYTrimmed),
             R"#(Returns whether the input shape was already trimmed for Y period.)#" 
          )
        .def("YPeriodFirst",
             (Standard_Real (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::YPeriodFirst),
             R"#(Returns the first parameter for the Y period.)#" 
          )
        .def("SetZTrimmed",
             (void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BOPAlgo_MakePeriodic::*)( const Standard_Boolean ,  const Standard_Boolean  ) >(&BOPAlgo_MakePeriodic::SetZTrimmed),
             R"#(Defines whether the input shape is already trimmed in Z direction to fit the Z period. If the shape is not trimmed it is required to set the first parameter for the Z period. The algorithm will make the shape fit into the period.)#"  , py::arg("theIsTrimmed"),  py::arg("theFirst")=static_cast<const Standard_Boolean>(0.0)
          )
        .def("IsInputZTrimmed",
             (Standard_Boolean (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::IsInputZTrimmed),
             R"#(Returns whether the input shape was already trimmed for Z period.)#" 
          )
        .def("ZPeriodFirst",
             (Standard_Real (BOPAlgo_MakePeriodic::*)() const) static_cast<Standard_Real (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::ZPeriodFirst),
             R"#(Returns the first parameter for the Z period.)#" 
          )
        .def("Perform",
             (void (BOPAlgo_MakePeriodic::*)() ) static_cast<void (BOPAlgo_MakePeriodic::*)() >(&BOPAlgo_MakePeriodic::Perform),
             R"#(Makes the shape periodic in necessary directions)#" 
          )
        .def("RepeatShape",
             (const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer ,  const Standard_Integer  ) ) static_cast<const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer ,  const Standard_Integer  ) >(&BOPAlgo_MakePeriodic::RepeatShape),
             R"#(Performs repetition of the shape in specified direction required number of times. Negative value of times means that the repetition should be perform in negative direction. Makes the repeated shape a base for following repetitions.)#"  , py::arg("theDirectionID"),  py::arg("theTimes")
          )
        .def("XRepeat",
             (const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) ) static_cast<const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) >(&BOPAlgo_MakePeriodic::XRepeat),
             R"#(Repeats the shape in X direction specified number of times. Negative value of times means that the repetition should be perform in negative X direction. Makes the repeated shape a base for following repetitions.)#"  , py::arg("theTimes")
          )
        .def("YRepeat",
             (const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) ) static_cast<const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) >(&BOPAlgo_MakePeriodic::YRepeat),
             R"#(Repeats the shape in Y direction specified number of times. Negative value of times means that the repetition should be perform in negative Y direction. Makes the repeated shape a base for following repetitions.)#"  , py::arg("theTimes")
          )
        .def("ZRepeat",
             (const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) ) static_cast<const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)( const Standard_Integer  ) >(&BOPAlgo_MakePeriodic::ZRepeat),
             R"#(Repeats the shape in Z direction specified number of times. Negative value of times means that the repetition should be perform in negative Z direction. Makes the repeated shape a base for following repetitions.)#"  , py::arg("theTimes")
          )
        .def("ClearRepetitions",
             (void (BOPAlgo_MakePeriodic::*)() ) static_cast<void (BOPAlgo_MakePeriodic::*)() >(&BOPAlgo_MakePeriodic::ClearRepetitions),
             R"#(Clears all performed repetitions. The next repetition will be performed on the base shape.)#" 
          )
        .def("GetTwins",
             (const TopTools_ListOfShape & (BOPAlgo_MakePeriodic::*)( const TopoDS_Shape &  ) const) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakePeriodic::*)( const TopoDS_Shape &  ) const>(&BOPAlgo_MakePeriodic::GetTwins),
             R"#(Returns the identical shapes for the given shape located on the opposite periodic side. Returns empty list in case the shape has no twin.)#"  , py::arg("theS")
          )
        .def("Clear",
             (void (BOPAlgo_MakePeriodic::*)() ) static_cast<void (BOPAlgo_MakePeriodic::*)() >(&BOPAlgo_MakePeriodic::Clear),
             R"#(Clears the algorithm from previous runs)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("ToDirectionID_s",
                    (Standard_Integer (*)( const Standard_Integer  ) ) static_cast<Standard_Integer (*)( const Standard_Integer  ) >(&BOPAlgo_MakePeriodic::ToDirectionID),
                    R"#(Converts the integer to ID of periodic direction)#"  , py::arg("theDirectionID")
          )
    // 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("PeriodicityParameters",
             (const BOPAlgo_MakePeriodic::PeriodicityParams & (BOPAlgo_MakePeriodic::*)() const) static_cast<const BOPAlgo_MakePeriodic::PeriodicityParams & (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::PeriodicityParameters),
             R"#(None)#"
             
         )
       .def("RepeatedShape",
             (const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::RepeatedShape),
             R"#(Returns the repeated shape)#"
             
         )
       .def("Shape",
             (const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::Shape),
             R"#(Returns the resulting periodic shape)#"
             
         )
       .def("History",
             (const opencascade::handle<BRepTools_History> & (BOPAlgo_MakePeriodic::*)() const) static_cast<const opencascade::handle<BRepTools_History> & (BOPAlgo_MakePeriodic::*)() const>(&BOPAlgo_MakePeriodic::History),
             R"#(Returns the History of the algorithm)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_ArgumentAnalyzer , shared_ptr<BOPAlgo_ArgumentAnalyzer>  , BOPAlgo_Algo >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetShape1",
             (void (BOPAlgo_ArgumentAnalyzer::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_ArgumentAnalyzer::*)( const TopoDS_Shape &  ) >(&BOPAlgo_ArgumentAnalyzer::SetShape1),
             R"#(sets object shape)#"  , py::arg("TheShape")
          )
        .def("SetShape2",
             (void (BOPAlgo_ArgumentAnalyzer::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_ArgumentAnalyzer::*)( const TopoDS_Shape &  ) >(&BOPAlgo_ArgumentAnalyzer::SetShape2),
             R"#(sets tool shape)#"  , py::arg("TheShape")
          )
        .def("Perform",
             (void (BOPAlgo_ArgumentAnalyzer::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_ArgumentAnalyzer::*)( const Message_ProgressRange &  ) >(&BOPAlgo_ArgumentAnalyzer::Perform),
             R"#(performs analysis)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("HasFaulty",
             (Standard_Boolean (BOPAlgo_ArgumentAnalyzer::*)() const) static_cast<Standard_Boolean (BOPAlgo_ArgumentAnalyzer::*)() const>(&BOPAlgo_ArgumentAnalyzer::HasFaulty),
             R"#(result of test)#" 
          )
    // 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("GetShape1",
             (const TopoDS_Shape & (BOPAlgo_ArgumentAnalyzer::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_ArgumentAnalyzer::*)() const>(&BOPAlgo_ArgumentAnalyzer::GetShape1),
             R"#(returns object shape;)#"
             
         )
       .def("GetShape2",
             (const TopoDS_Shape & (BOPAlgo_ArgumentAnalyzer::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_ArgumentAnalyzer::*)() const>(&BOPAlgo_ArgumentAnalyzer::GetShape2),
             R"#(returns tool shape)#"
             
         )
       .def("OperationType",
             (BOPAlgo_Operation & (BOPAlgo_ArgumentAnalyzer::*)() ) static_cast<BOPAlgo_Operation & (BOPAlgo_ArgumentAnalyzer::*)() >(&BOPAlgo_ArgumentAnalyzer::OperationType),
             R"#(returns ref)#"
             
             , py::return_value_policy::reference_internal
         )
       .def_property("StopOnFirstFaulty",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.StopOnFirstFaulty();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.StopOnFirstFaulty() = val;},                      R"#(returns ref)#"
         )
       .def_property("ArgumentTypeMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.ArgumentTypeMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.ArgumentTypeMode() = val;},                      R"#(Returns (modifiable) mode that means checking types of shapes.)#"
         )
       .def_property("SelfInterMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.SelfInterMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.SelfInterMode() = val;},                      R"#(Returns (modifiable) mode that means checking of self-intersection of shapes.)#"
         )
       .def_property("SmallEdgeMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.SmallEdgeMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.SmallEdgeMode() = val;},                      R"#(Returns (modifiable) mode that means checking of small edges.)#"
         )
       .def_property("RebuildFaceMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.RebuildFaceMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.RebuildFaceMode() = val;},                      R"#(Returns (modifiable) mode that means checking of possibility to split or rebuild faces.)#"
         )
       .def_property("TangentMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.TangentMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.TangentMode() = val;},                      R"#(Returns (modifiable) mode that means checking of tangency between subshapes.)#"
         )
       .def_property("MergeVertexMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.MergeVertexMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.MergeVertexMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of merging vertices.)#"
         )
       .def_property("MergeEdgeMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.MergeEdgeMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.MergeEdgeMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of merging edges.)#"
         )
       .def_property("ContinuityMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.ContinuityMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.ContinuityMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of continuity of the shape.)#"
         )
       .def_property("CurveOnSurfaceMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.CurveOnSurfaceMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.CurveOnSurfaceMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of invalid curve on surface.)#"
         )
       .def("GetCheckResult",
             (const BOPAlgo_ListOfCheckResult & (BOPAlgo_ArgumentAnalyzer::*)() const) static_cast<const BOPAlgo_ListOfCheckResult & (BOPAlgo_ArgumentAnalyzer::*)() const>(&BOPAlgo_ArgumentAnalyzer::GetCheckResult),
             R"#(returns a result of test)#"
             
         )
       .def_property("ArgumentTypeMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.ArgumentTypeMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.ArgumentTypeMode() = val;},                      R"#(Returns (modifiable) mode that means checking types of shapes.)#"
         )
       .def_property("SelfInterMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.SelfInterMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.SelfInterMode() = val;},                      R"#(Returns (modifiable) mode that means checking of self-intersection of shapes.)#"
         )
       .def_property("SmallEdgeMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.SmallEdgeMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.SmallEdgeMode() = val;},                      R"#(Returns (modifiable) mode that means checking of small edges.)#"
         )
       .def_property("RebuildFaceMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.RebuildFaceMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.RebuildFaceMode() = val;},                      R"#(Returns (modifiable) mode that means checking of possibility to split or rebuild faces.)#"
         )
       .def_property("TangentMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.TangentMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.TangentMode() = val;},                      R"#(Returns (modifiable) mode that means checking of tangency between subshapes.)#"
         )
       .def_property("MergeVertexMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.MergeVertexMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.MergeVertexMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of merging vertices.)#"
         )
       .def_property("MergeEdgeMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.MergeEdgeMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.MergeEdgeMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of merging edges.)#"
         )
       .def_property("ContinuityMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.ContinuityMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.ContinuityMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of continuity of the shape.)#"
         )
       .def_property("CurveOnSurfaceMode",
                     [](BOPAlgo_ArgumentAnalyzer& self){return self.CurveOnSurfaceMode();} ,
                     [](BOPAlgo_ArgumentAnalyzer& self, Standard_Boolean  val){self.CurveOnSurfaceMode() = val;},                      R"#(Returns (modifiable) mode that means checking of problem of invalid curve on surface.)#"
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_BuilderArea , shared_ptr_nodelete<BOPAlgo_BuilderArea> ,Py_BOPAlgo_BuilderArea , BOPAlgo_Algo >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("SetContext",
             (void (BOPAlgo_BuilderArea::*)( const opencascade::handle<IntTools_Context> &  ) ) static_cast<void (BOPAlgo_BuilderArea::*)( const opencascade::handle<IntTools_Context> &  ) >(&BOPAlgo_BuilderArea::SetContext),
             R"#(Sets the context for the algorithms)#"  , py::arg("theContext")
          )
        .def("SetShapes",
             (void (BOPAlgo_BuilderArea::*)(  const NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BOPAlgo_BuilderArea::*)(  const NCollection_List<TopoDS_Shape> &  ) >(&BOPAlgo_BuilderArea::SetShapes),
             R"#(Sets the shapes for building areas)#"  , py::arg("theLS")
          )
        .def("SetAvoidInternalShapes",
             (void (BOPAlgo_BuilderArea::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_BuilderArea::*)( const Standard_Boolean  ) >(&BOPAlgo_BuilderArea::SetAvoidInternalShapes),
             R"#(Defines the preventing of addition of internal parts into result. The default value is FALSE, i.e. the internal parts are added into result.)#"  , py::arg("theAvoidInternal")
          )
        .def("IsAvoidInternalShapes",
             (Standard_Boolean (BOPAlgo_BuilderArea::*)() const) static_cast<Standard_Boolean (BOPAlgo_BuilderArea::*)() const>(&BOPAlgo_BuilderArea::IsAvoidInternalShapes),
             R"#(Returns the AvoidInternalShapes flag)#" 
          )
    // 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("Shapes",
             (const TopTools_ListOfShape & (BOPAlgo_BuilderArea::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_BuilderArea::*)() const>(&BOPAlgo_BuilderArea::Shapes),
             R"#(Returns the input shapes)#"
             
         )
       .def("Loops",
             (const TopTools_ListOfShape & (BOPAlgo_BuilderArea::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_BuilderArea::*)() const>(&BOPAlgo_BuilderArea::Loops),
             R"#(Returns the found loops)#"
             
         )
       .def("Areas",
             (const TopTools_ListOfShape & (BOPAlgo_BuilderArea::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_BuilderArea::*)() const>(&BOPAlgo_BuilderArea::Areas),
             R"#(Returns the found areas)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_BuilderShape , shared_ptr<BOPAlgo_BuilderShape> ,Py_BOPAlgo_BuilderShape , BOPAlgo_Algo >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Modified",
             (const TopTools_ListOfShape & (BOPAlgo_BuilderShape::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BOPAlgo_BuilderShape::*)( const TopoDS_Shape &  ) >(&BOPAlgo_BuilderShape::Modified),
             R"#(Returns the list of shapes Modified from the shape theS.)#"  , py::arg("theS")
          )
        .def("Generated",
             (const TopTools_ListOfShape & (BOPAlgo_BuilderShape::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BOPAlgo_BuilderShape::*)( const TopoDS_Shape &  ) >(&BOPAlgo_BuilderShape::Generated),
             R"#(Returns the list of shapes Generated from the shape theS.)#"  , py::arg("theS")
          )
        .def("IsDeleted",
             (Standard_Boolean (BOPAlgo_BuilderShape::*)( const TopoDS_Shape &  ) ) static_cast<Standard_Boolean (BOPAlgo_BuilderShape::*)( const TopoDS_Shape &  ) >(&BOPAlgo_BuilderShape::IsDeleted),
             R"#(Returns true if the shape theS has been deleted. In this case the shape will have no Modified elements, but can have Generated elements.)#"  , py::arg("theS")
          )
        .def("HasModified",
             (Standard_Boolean (BOPAlgo_BuilderShape::*)() const) static_cast<Standard_Boolean (BOPAlgo_BuilderShape::*)() const>(&BOPAlgo_BuilderShape::HasModified),
             R"#(Returns true if any of the input shapes has been modified during operation.)#" 
          )
        .def("HasGenerated",
             (Standard_Boolean (BOPAlgo_BuilderShape::*)() const) static_cast<Standard_Boolean (BOPAlgo_BuilderShape::*)() const>(&BOPAlgo_BuilderShape::HasGenerated),
             R"#(Returns true if any of the input shapes has generated shapes during operation.)#" 
          )
        .def("HasDeleted",
             (Standard_Boolean (BOPAlgo_BuilderShape::*)() const) static_cast<Standard_Boolean (BOPAlgo_BuilderShape::*)() const>(&BOPAlgo_BuilderShape::HasDeleted),
             R"#(Returns true if any of the input shapes has been deleted during operation.)#" 
          )
        .def("History",
             (opencascade::handle<BRepTools_History> (BOPAlgo_BuilderShape::*)() ) static_cast<opencascade::handle<BRepTools_History> (BOPAlgo_BuilderShape::*)() >(&BOPAlgo_BuilderShape::History),
             R"#(History Tool)#" 
          )
        .def("SetToFillHistory",
             (void (BOPAlgo_BuilderShape::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_BuilderShape::*)( const Standard_Boolean  ) >(&BOPAlgo_BuilderShape::SetToFillHistory),
             R"#(Allows disabling the history collection)#"  , py::arg("theHistFlag")
          )
        .def("HasHistory",
             (Standard_Boolean (BOPAlgo_BuilderShape::*)() const) static_cast<Standard_Boolean (BOPAlgo_BuilderShape::*)() const>(&BOPAlgo_BuilderShape::HasHistory),
             R"#(Returns flag of history availability)#" 
          )
    // 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("Shape",
             (const TopoDS_Shape & (BOPAlgo_BuilderShape::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_BuilderShape::*)() const>(&BOPAlgo_BuilderShape::Shape),
             R"#(Returns the result of algorithm)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_ParallelAlgo , shared_ptr<BOPAlgo_ParallelAlgo> ,Py_BOPAlgo_ParallelAlgo , BOPAlgo_Algo >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Perform",
             (void (BOPAlgo_ParallelAlgo::*)() ) static_cast<void (BOPAlgo_ParallelAlgo::*)() >(&BOPAlgo_ParallelAlgo::Perform),
             R"#(The main method to implement the operation)#" 
          )
        .def("SetProgressRange",
             (void (BOPAlgo_ParallelAlgo::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_ParallelAlgo::*)( const Message_ProgressRange &  ) >(&BOPAlgo_ParallelAlgo::SetProgressRange),
             R"#(Sets the range for a single run)#"  , py::arg("theRange")
          )
    // 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 BOPAlgo_PaveFiller from ./opencascade/BOPAlgo_PaveFiller.hxx
    klass = m.attr("BOPAlgo_PaveFiller");


    // nested enums

    static_cast<py::class_<BOPAlgo_PaveFiller , shared_ptr<BOPAlgo_PaveFiller>  , BOPAlgo_Algo >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("PDS",
             (BOPDS_PDS (BOPAlgo_PaveFiller::*)() ) static_cast<BOPDS_PDS (BOPAlgo_PaveFiller::*)() >(&BOPAlgo_PaveFiller::PDS),
             R"#(None)#" 
          )
        .def("SetArguments",
             (void (BOPAlgo_PaveFiller::*)(  const NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BOPAlgo_PaveFiller::*)(  const NCollection_List<TopoDS_Shape> &  ) >(&BOPAlgo_PaveFiller::SetArguments),
             R"#(Sets the arguments for operation)#"  , py::arg("theLS")
          )
        .def("AddArgument",
             (void (BOPAlgo_PaveFiller::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_PaveFiller::*)( const TopoDS_Shape &  ) >(&BOPAlgo_PaveFiller::AddArgument),
             R"#(Adds the argument for operation)#"  , py::arg("theShape")
          )
        .def("SetSectionAttribute",
             (void (BOPAlgo_PaveFiller::*)( const BOPAlgo_SectionAttribute &  ) ) static_cast<void (BOPAlgo_PaveFiller::*)( const BOPAlgo_SectionAttribute &  ) >(&BOPAlgo_PaveFiller::SetSectionAttribute),
             R"#(None)#"  , py::arg("theSecAttr")
          )
        .def("SetNonDestructive",
             (void (BOPAlgo_PaveFiller::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_PaveFiller::*)( const Standard_Boolean  ) >(&BOPAlgo_PaveFiller::SetNonDestructive),
             R"#(Sets the flag that defines the mode of treatment. In non-destructive mode the argument shapes are not modified. Instead a copy of a sub-shape is created in the result if it is needed to be updated.)#"  , py::arg("theFlag")
          )
        .def("NonDestructive",
             (Standard_Boolean (BOPAlgo_PaveFiller::*)() const) static_cast<Standard_Boolean (BOPAlgo_PaveFiller::*)() const>(&BOPAlgo_PaveFiller::NonDestructive),
             R"#(Returns the flag that defines the mode of treatment. In non-destructive mode the argument shapes are not modified. Instead a copy of a sub-shape is created in the result if it is needed to be updated.)#" 
          )
        .def("Perform",
             (void (BOPAlgo_PaveFiller::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_PaveFiller::*)( const Message_ProgressRange &  ) >(&BOPAlgo_PaveFiller::Perform),
             R"#(None)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("SetGlue",
             (void (BOPAlgo_PaveFiller::*)( const BOPAlgo_GlueEnum  ) ) static_cast<void (BOPAlgo_PaveFiller::*)( const BOPAlgo_GlueEnum  ) >(&BOPAlgo_PaveFiller::SetGlue),
             R"#(Sets the glue option for the algorithm)#"  , py::arg("theGlue")
          )
        .def("Glue",
             (BOPAlgo_GlueEnum (BOPAlgo_PaveFiller::*)() const) static_cast<BOPAlgo_GlueEnum (BOPAlgo_PaveFiller::*)() const>(&BOPAlgo_PaveFiller::Glue),
             R"#(Returns the glue option of the algorithm)#" 
          )
        .def("SetAvoidBuildPCurve",
             (void (BOPAlgo_PaveFiller::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_PaveFiller::*)( const Standard_Boolean  ) >(&BOPAlgo_PaveFiller::SetAvoidBuildPCurve),
             R"#(Sets the flag to avoid building of p-curves of edges on faces)#"  , py::arg("theValue")
          )
        .def("IsAvoidBuildPCurve",
             (Standard_Boolean (BOPAlgo_PaveFiller::*)() const) static_cast<Standard_Boolean (BOPAlgo_PaveFiller::*)() const>(&BOPAlgo_PaveFiller::IsAvoidBuildPCurve),
             R"#(Returns the flag to avoid building of p-curves of edges on faces)#" 
          )
    // 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("DS",
             (const BOPDS_DS & (BOPAlgo_PaveFiller::*)() ) static_cast<const BOPDS_DS & (BOPAlgo_PaveFiller::*)() >(&BOPAlgo_PaveFiller::DS),
             R"#(None)#"
             
         )
       .def("Arguments",
             (const TopTools_ListOfShape & (BOPAlgo_PaveFiller::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_PaveFiller::*)() const>(&BOPAlgo_PaveFiller::Arguments),
             R"#(Returns the list of arguments)#"
             
         )
       .def("Context",
             (const opencascade::handle<IntTools_Context> & (BOPAlgo_PaveFiller::*)() ) static_cast<const opencascade::handle<IntTools_Context> & (BOPAlgo_PaveFiller::*)() >(&BOPAlgo_PaveFiller::Context),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_ShellSplitter , shared_ptr<BOPAlgo_ShellSplitter>  , BOPAlgo_Algo >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("AddStartElement",
             (void (BOPAlgo_ShellSplitter::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_ShellSplitter::*)( const TopoDS_Shape &  ) >(&BOPAlgo_ShellSplitter::AddStartElement),
             R"#(adds a face <theS> to process)#"  , py::arg("theS")
          )
        .def("Perform",
             (void (BOPAlgo_ShellSplitter::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_ShellSplitter::*)( const Message_ProgressRange &  ) >(&BOPAlgo_ShellSplitter::Perform),
             R"#(performs the algorithm)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("SplitBlock_s",
                    (void (*)( BOPTools_ConnexityBlock &  ) ) static_cast<void (*)( BOPTools_ConnexityBlock &  ) >(&BOPAlgo_ShellSplitter::SplitBlock),
                    R"#(None)#"  , py::arg("theCB")
          )
    // 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("StartElements",
             (const TopTools_ListOfShape & (BOPAlgo_ShellSplitter::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_ShellSplitter::*)() const>(&BOPAlgo_ShellSplitter::StartElements),
             R"#(return the faces to process)#"
             
         )
       .def("Shells",
             (const TopTools_ListOfShape & (BOPAlgo_ShellSplitter::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_ShellSplitter::*)() const>(&BOPAlgo_ShellSplitter::Shells),
             R"#(returns the loops)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_WireSplitter , shared_ptr<BOPAlgo_WireSplitter>  , BOPAlgo_Algo >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("SetWES",
             (void (BOPAlgo_WireSplitter::*)( const BOPAlgo_WireEdgeSet &  ) ) static_cast<void (BOPAlgo_WireSplitter::*)( const BOPAlgo_WireEdgeSet &  ) >(&BOPAlgo_WireSplitter::SetWES),
             R"#(None)#"  , py::arg("theWES")
          )
        .def("SetContext",
             (void (BOPAlgo_WireSplitter::*)( const opencascade::handle<IntTools_Context> &  ) ) static_cast<void (BOPAlgo_WireSplitter::*)( const opencascade::handle<IntTools_Context> &  ) >(&BOPAlgo_WireSplitter::SetContext),
             R"#(Sets the context for the algorithm)#"  , py::arg("theContext")
          )
        .def("Perform",
             (void (BOPAlgo_WireSplitter::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_WireSplitter::*)( const Message_ProgressRange &  ) >(&BOPAlgo_WireSplitter::Perform),
             R"#(None)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("MakeWire_s",
                    (void (*)( NCollection_List<TopoDS_Shape> & ,  TopoDS_Wire &  ) ) static_cast<void (*)( NCollection_List<TopoDS_Shape> & ,  TopoDS_Wire &  ) >(&BOPAlgo_WireSplitter::MakeWire),
                    R"#(None)#"  , py::arg("theLE"),  py::arg("theW")
          )
        .def_static("SplitBlock_s",
                    (void (*)( const TopoDS_Face & ,  BOPTools_ConnexityBlock & ,  const opencascade::handle<IntTools_Context> &  ) ) static_cast<void (*)( const TopoDS_Face & ,  BOPTools_ConnexityBlock & ,  const opencascade::handle<IntTools_Context> &  ) >(&BOPAlgo_WireSplitter::SplitBlock),
                    R"#(None)#"  , py::arg("theF"),  py::arg("theCB"),  py::arg("theContext")
          )
    // 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("WES",
             (BOPAlgo_WireEdgeSet & (BOPAlgo_WireSplitter::*)() ) static_cast<BOPAlgo_WireEdgeSet & (BOPAlgo_WireSplitter::*)() >(&BOPAlgo_WireSplitter::WES),
             R"#(None)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("Context",
             (const opencascade::handle<IntTools_Context> & (BOPAlgo_WireSplitter::*)() ) static_cast<const opencascade::handle<IntTools_Context> & (BOPAlgo_WireSplitter::*)() >(&BOPAlgo_WireSplitter::Context),
             R"#(Returns the context)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_Builder , shared_ptr<BOPAlgo_Builder>  , BOPAlgo_BuilderShape >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Clear",
             (void (BOPAlgo_Builder::*)() ) static_cast<void (BOPAlgo_Builder::*)() >(&BOPAlgo_Builder::Clear),
             R"#(Clears the content of the algorithm.)#" 
          )
        .def("PPaveFiller",
             (BOPAlgo_PPaveFiller (BOPAlgo_Builder::*)() ) static_cast<BOPAlgo_PPaveFiller (BOPAlgo_Builder::*)() >(&BOPAlgo_Builder::PPaveFiller),
             R"#(Returns the PaveFiller, algorithm for sub-shapes intersection.)#" 
          )
        .def("PDS",
             (BOPDS_PDS (BOPAlgo_Builder::*)() ) static_cast<BOPDS_PDS (BOPAlgo_Builder::*)() >(&BOPAlgo_Builder::PDS),
             R"#(Returns the Data Structure, holder of intersection information.)#" 
          )
        .def("Context",
             (opencascade::handle<IntTools_Context> (BOPAlgo_Builder::*)() const) static_cast<opencascade::handle<IntTools_Context> (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::Context),
             R"#(Returns the Context, tool for cashing heavy algorithms.)#" 
          )
        .def("AddArgument",
             (void (BOPAlgo_Builder::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_Builder::*)( const TopoDS_Shape &  ) >(&BOPAlgo_Builder::AddArgument),
             R"#(Adds the argument to the operation.)#"  , py::arg("theShape")
          )
        .def("SetArguments",
             (void (BOPAlgo_Builder::*)(  const NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BOPAlgo_Builder::*)(  const NCollection_List<TopoDS_Shape> &  ) >(&BOPAlgo_Builder::SetArguments),
             R"#(Sets the list of arguments for the operation.)#"  , py::arg("theLS")
          )
        .def("SetNonDestructive",
             (void (BOPAlgo_Builder::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_Builder::*)( const Standard_Boolean  ) >(&BOPAlgo_Builder::SetNonDestructive),
             R"#(Sets the flag that defines the mode of treatment. In non-destructive mode the argument shapes are not modified. Instead a copy of a sub-shape is created in the result if it is needed to be updated. This flag is taken into account if internal PaveFiller is used only. In the case of calling PerformWithFiller the corresponding flag of that PaveFiller is in force.)#"  , py::arg("theFlag")
          )
        .def("NonDestructive",
             (Standard_Boolean (BOPAlgo_Builder::*)() const) static_cast<Standard_Boolean (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::NonDestructive),
             R"#(Returns the flag that defines the mode of treatment. In non-destructive mode the argument shapes are not modified. Instead a copy of a sub-shape is created in the result if it is needed to be updated.)#" 
          )
        .def("SetGlue",
             (void (BOPAlgo_Builder::*)( const BOPAlgo_GlueEnum  ) ) static_cast<void (BOPAlgo_Builder::*)( const BOPAlgo_GlueEnum  ) >(&BOPAlgo_Builder::SetGlue),
             R"#(Sets the glue option for the algorithm)#"  , py::arg("theGlue")
          )
        .def("Glue",
             (BOPAlgo_GlueEnum (BOPAlgo_Builder::*)() const) static_cast<BOPAlgo_GlueEnum (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::Glue),
             R"#(Returns the glue option of the algorithm)#" 
          )
        .def("SetCheckInverted",
             (void (BOPAlgo_Builder::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_Builder::*)( const Standard_Boolean  ) >(&BOPAlgo_Builder::SetCheckInverted),
             R"#(Enables/Disables the check of the input solids for inverted status)#"  , py::arg("theCheck")
          )
        .def("CheckInverted",
             (Standard_Boolean (BOPAlgo_Builder::*)() const) static_cast<Standard_Boolean (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::CheckInverted),
             R"#(Returns the flag defining whether the check for input solids on inverted status should be performed or not.)#" 
          )
        .def("Perform",
             (void (BOPAlgo_Builder::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_Builder::*)( const Message_ProgressRange &  ) >(&BOPAlgo_Builder::Perform),
             R"#(Performs the operation. The intersection will be performed also.)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("PerformWithFiller",
             (void (BOPAlgo_Builder::*)( const BOPAlgo_PaveFiller & ,  const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_Builder::*)( const BOPAlgo_PaveFiller & ,  const Message_ProgressRange &  ) >(&BOPAlgo_Builder::PerformWithFiller),
             R"#(Performs the operation with the prepared filler. The intersection will not be performed in this case.)#"  , py::arg("theFiller"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("BuildBOP",
             (void (BOPAlgo_Builder::*)(  const NCollection_List<TopoDS_Shape> & ,  const TopAbs_State ,   const NCollection_List<TopoDS_Shape> & ,  const TopAbs_State ,  const Message_ProgressRange & ,  opencascade::handle<Message_Report>  ) ) static_cast<void (BOPAlgo_Builder::*)(  const NCollection_List<TopoDS_Shape> & ,  const TopAbs_State ,   const NCollection_List<TopoDS_Shape> & ,  const TopAbs_State ,  const Message_ProgressRange & ,  opencascade::handle<Message_Report>  ) >(&BOPAlgo_Builder::BuildBOP),
             R"#(Builds the result shape according to the given states for the objects and tools. These states can be unambiguously converted into the Boolean operation type. Thus, it performs the Boolean operation on the given groups of shapes.)#"  , py::arg("theObjects"),  py::arg("theObjState"),  py::arg("theTools"),  py::arg("theToolsState"),  py::arg("theRange"),  py::arg("theReport")
          )
        .def("BuildBOP",
             (void (BOPAlgo_Builder::*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> & ,  const BOPAlgo_Operation ,  const Message_ProgressRange & ,  opencascade::handle<Message_Report>  ) ) static_cast<void (BOPAlgo_Builder::*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> & ,  const BOPAlgo_Operation ,  const Message_ProgressRange & ,  opencascade::handle<Message_Report>  ) >(&BOPAlgo_Builder::BuildBOP),
             R"#(Builds the result of Boolean operation of given type basing on the result of Builder operation (GF or any other).)#"  , py::arg("theObjects"),  py::arg("theTools"),  py::arg("theOperation"),  py::arg("theRange"),  py::arg("theReport")
          )
    // 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("Arguments",
             (const TopTools_ListOfShape & (BOPAlgo_Builder::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::Arguments),
             R"#(Returns the list of arguments.)#"
             
         )
       .def("Images",
             (const TopTools_DataMapOfShapeListOfShape & (BOPAlgo_Builder::*)() const) static_cast<const TopTools_DataMapOfShapeListOfShape & (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::Images),
             R"#(Returns the map of images.)#"
             
         )
       .def("Origins",
             (const TopTools_DataMapOfShapeListOfShape & (BOPAlgo_Builder::*)() const) static_cast<const TopTools_DataMapOfShapeListOfShape & (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::Origins),
             R"#(Returns the map of origins.)#"
             
         )
       .def("ShapesSD",
             (const TopTools_DataMapOfShapeShape & (BOPAlgo_Builder::*)() const) static_cast<const TopTools_DataMapOfShapeShape & (BOPAlgo_Builder::*)() const>(&BOPAlgo_Builder::ShapesSD),
             R"#(Returns the map of Same Domain (SD) shapes - coinciding shapes from different arguments.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_BuilderFace , shared_ptr<BOPAlgo_BuilderFace>  , BOPAlgo_BuilderArea >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("SetFace",
             (void (BOPAlgo_BuilderFace::*)( const TopoDS_Face &  ) ) static_cast<void (BOPAlgo_BuilderFace::*)( const TopoDS_Face &  ) >(&BOPAlgo_BuilderFace::SetFace),
             R"#(Sets the face generatix)#"  , py::arg("theFace")
          )
        .def("Perform",
             (void (BOPAlgo_BuilderFace::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_BuilderFace::*)( const Message_ProgressRange &  ) >(&BOPAlgo_BuilderFace::Perform),
             R"#(Performs the algorithm)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Orientation",
             (TopAbs_Orientation (BOPAlgo_BuilderFace::*)() const) static_cast<TopAbs_Orientation (BOPAlgo_BuilderFace::*)() const>(&BOPAlgo_BuilderFace::Orientation),
             R"#(None)#" 
          )
    // 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("Face",
             (const TopoDS_Face & (BOPAlgo_BuilderFace::*)() const) static_cast<const TopoDS_Face & (BOPAlgo_BuilderFace::*)() const>(&BOPAlgo_BuilderFace::Face),
             R"#(Returns the face generatix)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_BuilderSolid , shared_ptr<BOPAlgo_BuilderSolid>  , BOPAlgo_BuilderArea >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Perform",
             (void (BOPAlgo_BuilderSolid::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_BuilderSolid::*)( const Message_ProgressRange &  ) >(&BOPAlgo_BuilderSolid::Perform),
             R"#(Performs the construction of the solids from the given faces)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // 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("GetBoxesMap",
             (const TopTools_DataMapOfShapeBox & (BOPAlgo_BuilderSolid::*)() const) static_cast<const TopTools_DataMapOfShapeBox & (BOPAlgo_BuilderSolid::*)() const>(&BOPAlgo_BuilderSolid::GetBoxesMap),
             R"#(For classification purposes the algorithm builds the bounding boxes for all created solids. This method returns the data map of solid - box pairs.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_CheckerSI , shared_ptr<BOPAlgo_CheckerSI>  , BOPAlgo_PaveFiller >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (void (BOPAlgo_CheckerSI::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_CheckerSI::*)( const Message_ProgressRange &  ) >(&BOPAlgo_CheckerSI::Perform),
             R"#(None)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("SetLevelOfCheck",
             (void (BOPAlgo_CheckerSI::*)( const Standard_Integer  ) ) static_cast<void (BOPAlgo_CheckerSI::*)( const Standard_Integer  ) >(&BOPAlgo_CheckerSI::SetLevelOfCheck),
             R"#(Sets the level of checking shape on self-interference. It defines which interferences will be checked: 0 - only V/V; 1 - V/V and V/E; 2 - V/V, V/E and E/E; 3 - V/V, V/E, E/E and V/F; 4 - V/V, V/E, E/E, V/F and E/F; 5 - V/V, V/E, E/E, V/F, E/F and F/F; 6 - V/V, V/E, E/E, V/F, E/F, F/F and V/S; 7 - V/V, V/E, E/E, V/F, E/F, F/F, V/S and E/S; 8 - V/V, V/E, E/E, V/F, E/F, F/F, V/S, E/S and F/S; 9 - V/V, V/E, E/E, V/F, E/F, F/F, V/S, E/S, F/S and S/S - all interferences (Default value))#"  , py::arg("theLevel")
          )
    // 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 BOPAlgo_RemoveFeatures from ./opencascade/BOPAlgo_RemoveFeatures.hxx
    klass = m.attr("BOPAlgo_RemoveFeatures");


    // nested enums

    static_cast<py::class_<BOPAlgo_RemoveFeatures , shared_ptr<BOPAlgo_RemoveFeatures>  , BOPAlgo_BuilderShape >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetShape",
             (void (BOPAlgo_RemoveFeatures::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_RemoveFeatures::*)( const TopoDS_Shape &  ) >(&BOPAlgo_RemoveFeatures::SetShape),
             R"#(Sets the shape for processing.)#"  , py::arg("theShape")
          )
        .def("AddFaceToRemove",
             (void (BOPAlgo_RemoveFeatures::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_RemoveFeatures::*)( const TopoDS_Shape &  ) >(&BOPAlgo_RemoveFeatures::AddFaceToRemove),
             R"#(Adds the face to remove from the input shape.)#"  , py::arg("theFace")
          )
        .def("AddFacesToRemove",
             (void (BOPAlgo_RemoveFeatures::*)(  const NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BOPAlgo_RemoveFeatures::*)(  const NCollection_List<TopoDS_Shape> &  ) >(&BOPAlgo_RemoveFeatures::AddFacesToRemove),
             R"#(Adds the faces to remove from the input shape.)#"  , py::arg("theFaces")
          )
        .def("Perform",
             (void (BOPAlgo_RemoveFeatures::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_RemoveFeatures::*)( const Message_ProgressRange &  ) >(&BOPAlgo_RemoveFeatures::Perform),
             R"#(Performs the operation)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Clear",
             (void (BOPAlgo_RemoveFeatures::*)() ) static_cast<void (BOPAlgo_RemoveFeatures::*)() >(&BOPAlgo_RemoveFeatures::Clear),
             R"#(Clears the contents of the algorithm from previous run, allowing reusing it for following removals.)#" 
          )
    // 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("InputShape",
             (const TopoDS_Shape & (BOPAlgo_RemoveFeatures::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_RemoveFeatures::*)() const>(&BOPAlgo_RemoveFeatures::InputShape),
             R"#(Returns the input shape)#"
             
         )
       .def("FacesToRemove",
             (const TopTools_ListOfShape & (BOPAlgo_RemoveFeatures::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_RemoveFeatures::*)() const>(&BOPAlgo_RemoveFeatures::FacesToRemove),
             R"#(Returns the list of faces which have been requested for removal from the input shape.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_CellsBuilder , shared_ptr<BOPAlgo_CellsBuilder>  , BOPAlgo_Builder >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Clear",
             (void (BOPAlgo_CellsBuilder::*)() ) static_cast<void (BOPAlgo_CellsBuilder::*)() >(&BOPAlgo_CellsBuilder::Clear),
             R"#(Redefined method Clear - clears the contents.)#" 
          )
        .def("AddToResult",
             (void (BOPAlgo_CellsBuilder::*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> & ,  const Standard_Integer ,  const Standard_Boolean  ) ) static_cast<void (BOPAlgo_CellsBuilder::*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> & ,  const Standard_Integer ,  const Standard_Boolean  ) >(&BOPAlgo_CellsBuilder::AddToResult),
             R"#(Adding the parts to result. The parts are defined by two lists of shapes: <theLSToTake> defines the arguments which parts should be taken into result; <theLSToAvoid> defines the arguments which parts should not be taken into result; To be taken into result the part must be IN for all shapes from the list <theLSToTake> and must be OUT of all shapes from the list <theLSToAvoid>.)#"  , py::arg("theLSToTake"),  py::arg("theLSToAvoid"),  py::arg("theMaterial")=static_cast<const Standard_Integer>(0),  py::arg("theUpdate")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("AddAllToResult",
             (void (BOPAlgo_CellsBuilder::*)( const Standard_Integer ,  const Standard_Boolean  ) ) static_cast<void (BOPAlgo_CellsBuilder::*)( const Standard_Integer ,  const Standard_Boolean  ) >(&BOPAlgo_CellsBuilder::AddAllToResult),
             R"#(Add all split parts to result. <theMaterial> defines the removal of internal boundaries; <theUpdate> parameter defines whether to remove boundaries now or not.)#"  , py::arg("theMaterial")=static_cast<const Standard_Integer>(0),  py::arg("theUpdate")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("RemoveFromResult",
             (void (BOPAlgo_CellsBuilder::*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BOPAlgo_CellsBuilder::*)(  const NCollection_List<TopoDS_Shape> & ,   const NCollection_List<TopoDS_Shape> &  ) >(&BOPAlgo_CellsBuilder::RemoveFromResult),
             R"#(Removing the parts from result. The parts are defined by two lists of shapes: <theLSToTake> defines the arguments which parts should be removed from result; <theLSToAvoid> defines the arguments which parts should not be removed from result. To be removed from the result the part must be IN for all shapes from the list <theLSToTake> and must be OUT of all shapes from the list <theLSToAvoid>.)#"  , py::arg("theLSToTake"),  py::arg("theLSToAvoid")
          )
        .def("RemoveAllFromResult",
             (void (BOPAlgo_CellsBuilder::*)() ) static_cast<void (BOPAlgo_CellsBuilder::*)() >(&BOPAlgo_CellsBuilder::RemoveAllFromResult),
             R"#(Remove all parts from result.)#" 
          )
        .def("RemoveInternalBoundaries",
             (void (BOPAlgo_CellsBuilder::*)() ) static_cast<void (BOPAlgo_CellsBuilder::*)() >(&BOPAlgo_CellsBuilder::RemoveInternalBoundaries),
             R"#(Removes internal boundaries between cells with the same material. If the result contains the cells with same material but of different dimension the removal of internal boundaries between these cells will not be performed. In case of some errors during the removal the method will set the appropriate warning status - use GetReport() to access them.)#" 
          )
        .def("MakeContainers",
             (void (BOPAlgo_CellsBuilder::*)() ) static_cast<void (BOPAlgo_CellsBuilder::*)() >(&BOPAlgo_CellsBuilder::MakeContainers),
             R"#(Makes the Containers of proper type from the parts added to result.)#" 
          )
    // 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("GetAllParts",
             (const TopoDS_Shape & (BOPAlgo_CellsBuilder::*)() const) static_cast<const TopoDS_Shape & (BOPAlgo_CellsBuilder::*)() const>(&BOPAlgo_CellsBuilder::GetAllParts),
             R"#(Get all split parts.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_MakerVolume , shared_ptr<BOPAlgo_MakerVolume>  , BOPAlgo_Builder >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Clear",
             (void (BOPAlgo_MakerVolume::*)() ) static_cast<void (BOPAlgo_MakerVolume::*)() >(&BOPAlgo_MakerVolume::Clear),
             R"#(Clears the data.)#" 
          )
        .def("SetIntersect",
             (void (BOPAlgo_MakerVolume::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_MakerVolume::*)( const Standard_Boolean  ) >(&BOPAlgo_MakerVolume::SetIntersect),
             R"#(Sets the flag myIntersect: if <bIntersect> is TRUE the shapes from <myArguments> will be intersected. if <bIntersect> is FALSE no intersection will be done.)#"  , py::arg("bIntersect")
          )
        .def("IsIntersect",
             (Standard_Boolean (BOPAlgo_MakerVolume::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakerVolume::*)() const>(&BOPAlgo_MakerVolume::IsIntersect),
             R"#(Returns the flag <myIntersect>.)#" 
          )
        .def("SetAvoidInternalShapes",
             (void (BOPAlgo_MakerVolume::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_MakerVolume::*)( const Standard_Boolean  ) >(&BOPAlgo_MakerVolume::SetAvoidInternalShapes),
             R"#(Defines the preventing of addition of internal for solid parts into the result. By default the internal parts are added into result.)#"  , py::arg("theAvoidInternal")
          )
        .def("IsAvoidInternalShapes",
             (Standard_Boolean (BOPAlgo_MakerVolume::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakerVolume::*)() const>(&BOPAlgo_MakerVolume::IsAvoidInternalShapes),
             R"#(Returns the AvoidInternalShapes flag)#" 
          )
        .def("Perform",
             (void (BOPAlgo_MakerVolume::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_MakerVolume::*)( const Message_ProgressRange &  ) >(&BOPAlgo_MakerVolume::Perform),
             R"#(Performs the operation.)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Clear",
             (void (BOPAlgo_MakerVolume::*)() ) static_cast<void (BOPAlgo_MakerVolume::*)() >(&BOPAlgo_MakerVolume::Clear),
             R"#(Clears the data.)#" 
          )
        .def("SetIntersect",
             (void (BOPAlgo_MakerVolume::*)( const Standard_Boolean  ) ) static_cast<void (BOPAlgo_MakerVolume::*)( const Standard_Boolean  ) >(&BOPAlgo_MakerVolume::SetIntersect),
             R"#(Sets the flag myIntersect: if <bIntersect> is TRUE the shapes from <myArguments> will be intersected. if <bIntersect> is FALSE no intersection will be done.)#"  , py::arg("bIntersect")
          )
        .def("IsIntersect",
             (Standard_Boolean (BOPAlgo_MakerVolume::*)() const) static_cast<Standard_Boolean (BOPAlgo_MakerVolume::*)() const>(&BOPAlgo_MakerVolume::IsIntersect),
             R"#(Returns the flag <myIntersect>.)#" 
          )
    // 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("Box",
             (const TopoDS_Solid & (BOPAlgo_MakerVolume::*)() const) static_cast<const TopoDS_Solid & (BOPAlgo_MakerVolume::*)() const>(&BOPAlgo_MakerVolume::Box),
             R"#(Returns the solid box <mySBox>.)#"
             
         )
       .def("Faces",
             (const TopTools_ListOfShape & (BOPAlgo_MakerVolume::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakerVolume::*)() const>(&BOPAlgo_MakerVolume::Faces),
             R"#(Returns the processed faces <myFaces>.)#"
             
         )
       .def("Box",
             (const TopoDS_Solid & (BOPAlgo_MakerVolume::*)() const) static_cast<const TopoDS_Solid & (BOPAlgo_MakerVolume::*)() const>(&BOPAlgo_MakerVolume::Box),
             R"#(Returns the solid box <mySBox>.)#"
             
         )
       .def("Faces",
             (const TopTools_ListOfShape & (BOPAlgo_MakerVolume::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_MakerVolume::*)() const>(&BOPAlgo_MakerVolume::Faces),
             R"#(Returns the processed faces <myFaces>.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_Section , shared_ptr<BOPAlgo_Section>  , BOPAlgo_Builder >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // 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 BOPAlgo_ToolsProvider from ./opencascade/BOPAlgo_ToolsProvider.hxx
    klass = m.attr("BOPAlgo_ToolsProvider");


    // nested enums

    static_cast<py::class_<BOPAlgo_ToolsProvider , shared_ptr<BOPAlgo_ToolsProvider>  , BOPAlgo_Builder >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Clear",
             (void (BOPAlgo_ToolsProvider::*)() ) static_cast<void (BOPAlgo_ToolsProvider::*)() >(&BOPAlgo_ToolsProvider::Clear),
             R"#(Clears internal fields and arguments)#" 
          )
        .def("AddTool",
             (void (BOPAlgo_ToolsProvider::*)( const TopoDS_Shape &  ) ) static_cast<void (BOPAlgo_ToolsProvider::*)( const TopoDS_Shape &  ) >(&BOPAlgo_ToolsProvider::AddTool),
             R"#(Adds Tool argument of the operation)#"  , py::arg("theShape")
          )
        .def("SetTools",
             (void (BOPAlgo_ToolsProvider::*)(  const NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BOPAlgo_ToolsProvider::*)(  const NCollection_List<TopoDS_Shape> &  ) >(&BOPAlgo_ToolsProvider::SetTools),
             R"#(Adds the Tool arguments of the operation)#"  , py::arg("theShapes")
          )
    // 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("Tools",
             (const TopTools_ListOfShape & (BOPAlgo_ToolsProvider::*)() const) static_cast<const TopTools_ListOfShape & (BOPAlgo_ToolsProvider::*)() const>(&BOPAlgo_ToolsProvider::Tools),
             R"#(Returns the Tool arguments of the operation)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BOPAlgo_BOP , shared_ptr<BOPAlgo_BOP>  , BOPAlgo_ToolsProvider >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Clear",
             (void (BOPAlgo_BOP::*)() ) static_cast<void (BOPAlgo_BOP::*)() >(&BOPAlgo_BOP::Clear),
             R"#(Clears internal fields and arguments)#" 
          )
        .def("SetOperation",
             (void (BOPAlgo_BOP::*)( const BOPAlgo_Operation  ) ) static_cast<void (BOPAlgo_BOP::*)( const BOPAlgo_Operation  ) >(&BOPAlgo_BOP::SetOperation),
             R"#(None)#"  , py::arg("theOperation")
          )
        .def("Operation",
             (BOPAlgo_Operation (BOPAlgo_BOP::*)() const) static_cast<BOPAlgo_Operation (BOPAlgo_BOP::*)() const>(&BOPAlgo_BOP::Operation),
             R"#(None)#" 
          )
        .def("Perform",
             (void (BOPAlgo_BOP::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_BOP::*)( const Message_ProgressRange &  ) >(&BOPAlgo_BOP::Perform),
             R"#(None)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // 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 BOPAlgo_Splitter from ./opencascade/BOPAlgo_Splitter.hxx
    klass = m.attr("BOPAlgo_Splitter");


    // nested enums

    static_cast<py::class_<BOPAlgo_Splitter , shared_ptr<BOPAlgo_Splitter>  , BOPAlgo_ToolsProvider >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator") )
    // custom constructors
    // methods
        .def("Perform",
             (void (BOPAlgo_Splitter::*)( const Message_ProgressRange &  ) ) static_cast<void (BOPAlgo_Splitter::*)( const Message_ProgressRange &  ) >(&BOPAlgo_Splitter::Perform),
             R"#(Performs the operation)#"  , py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // 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
;

// functions
// ./opencascade/BOPAlgo_Alerts.hxx
// ./opencascade/BOPAlgo_Algo.hxx
// ./opencascade/BOPAlgo_ArgumentAnalyzer.hxx
// ./opencascade/BOPAlgo_BOP.hxx
// ./opencascade/BOPAlgo_Builder.hxx
// ./opencascade/BOPAlgo_BuilderArea.hxx
// ./opencascade/BOPAlgo_BuilderFace.hxx
// ./opencascade/BOPAlgo_BuilderShape.hxx
// ./opencascade/BOPAlgo_BuilderSolid.hxx
// ./opencascade/BOPAlgo_CellsBuilder.hxx
// ./opencascade/BOPAlgo_CheckResult.hxx
// ./opencascade/BOPAlgo_CheckStatus.hxx
// ./opencascade/BOPAlgo_CheckerSI.hxx
// ./opencascade/BOPAlgo_GlueEnum.hxx
// ./opencascade/BOPAlgo_ListOfCheckResult.hxx
// ./opencascade/BOPAlgo_MakeConnected.hxx
// ./opencascade/BOPAlgo_MakePeriodic.hxx
// ./opencascade/BOPAlgo_MakerVolume.hxx
// ./opencascade/BOPAlgo_Operation.hxx
// ./opencascade/BOPAlgo_Options.hxx
// ./opencascade/BOPAlgo_PArgumentAnalyzer.hxx
// ./opencascade/BOPAlgo_PBOP.hxx
// ./opencascade/BOPAlgo_PBuilder.hxx
// ./opencascade/BOPAlgo_PPaveFiller.hxx
// ./opencascade/BOPAlgo_PSection.hxx
// ./opencascade/BOPAlgo_PWireEdgeSet.hxx
// ./opencascade/BOPAlgo_PaveFiller.hxx
// ./opencascade/BOPAlgo_RemoveFeatures.hxx
// ./opencascade/BOPAlgo_Section.hxx
// ./opencascade/BOPAlgo_SectionAttribute.hxx
// ./opencascade/BOPAlgo_ShellSplitter.hxx
// ./opencascade/BOPAlgo_Splitter.hxx
// ./opencascade/BOPAlgo_Tools.hxx
// ./opencascade/BOPAlgo_ToolsProvider.hxx
// ./opencascade/BOPAlgo_WireEdgeSet.hxx
// ./opencascade/BOPAlgo_WireSplitter.hxx

// Additional functions

// operators

// register typdefs
    register_template_NCollection_List<BOPAlgo_CheckResult>(m,"BOPAlgo_ListOfCheckResult");
    register_template_NCollection_List<BOPAlgo_EdgeInfo>(m,"BOPAlgo_ListOfEdgeInfo");
    register_template_NCollection_IndexedDataMap<TopoDS_Shape, BOPAlgo_ListOfEdgeInfo, TopTools_ShapeMapHasher>(m,"BOPAlgo_IndexedDataMapOfShapeListOfEdgeInfo");


// exceptions

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

};

// user-defined post-inclusion per module

// user-defined post