File: BRepFill.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 (2266 lines) | stat: -rw-r--r-- 140,383 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

// 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 <TopoDS_Face.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Shell.hxx>
#include <TopoDS_Wire.hxx>
#include <TopoDS_Shape.hxx>
#include <gp_Ax3.hxx>
#include <gp_Pnt.hxx>
#include <gp_Vec.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <GeomFill_LocationGuide.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BOPAlgo_MakerVolume.hxx>
#include <TopoDS_Face.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Edge.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 <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 <BRepFill_DraftLaw.hxx>
#include <BRepFill_SectionLaw.hxx>
#include <Geom_Surface.hxx>
#include <Bnd_Box.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <GeomFill_LocationDraft.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Ax3.hxx>
#include <BRepMAT2d_BisectingLocus.hxx>
#include <BRepMAT2d_LinkTopoBilo.hxx>
#include <BRepTools_Quilt.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Vertex.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Wire.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Vertex.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_BSplineSurface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BRepFill_OffsetWire.hxx>
#include <TopoDS_Edge.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BRepFill_TrimEdgeTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BRepFill_LocationLaw.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Vertex.hxx>
#include <BRepFill_Sweep.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Law_Function.hxx>
#include <BRepFill_LocationLaw.hxx>
#include <BRepFill_SectionLaw.hxx>
#include <gp_Ax2.hxx>
#include <BRepFill_Sweep.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Wire.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BRepFill_LocationLaw.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 <Law_Function.hxx>
#include <TopoDS_Wire.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <BRepFill_LocationLaw.hxx>
#include <BRepFill_SectionLaw.hxx>
#include <TopoDS_Edge.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 <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Vertex.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 <Geom2d_Curve.hxx>
#include <Geom_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>

// module includes
#include <BRepFill.hxx>
#include <BRepFill_ACRLaw.hxx>
#include <BRepFill_AdvancedEvolved.hxx>
#include <BRepFill_ApproxSeewing.hxx>
#include <BRepFill_CompatibleWires.hxx>
#include <BRepFill_ComputeCLine.hxx>
#include <BRepFill_CurveConstraint.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx>
#include <BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx>
#include <BRepFill_DataMapOfNodeShape.hxx>
#include <BRepFill_DataMapOfOrientedShapeListOfShape.hxx>
#include <BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx>
#include <BRepFill_DataMapOfShapeHArray2OfShape.hxx>
#include <BRepFill_DataMapOfShapeSequenceOfPnt.hxx>
#include <BRepFill_DataMapOfShapeSequenceOfReal.hxx>
#include <BRepFill_Draft.hxx>
#include <BRepFill_DraftLaw.hxx>
#include <BRepFill_Edge3DLaw.hxx>
#include <BRepFill_EdgeFaceAndOrder.hxx>
#include <BRepFill_EdgeOnSurfLaw.hxx>
#include <BRepFill_Evolved.hxx>
#include <BRepFill_FaceAndOrder.hxx>
#include <BRepFill_Filling.hxx>
#include <BRepFill_Generator.hxx>
#include <BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx>
#include <BRepFill_ListIteratorOfListOfOffsetWire.hxx>
#include <BRepFill_ListOfOffsetWire.hxx>
#include <BRepFill_LocationLaw.hxx>
#include <BRepFill_MultiLine.hxx>
#include <BRepFill_NSections.hxx>
#include <BRepFill_OffsetAncestors.hxx>
#include <BRepFill_OffsetWire.hxx>
#include <BRepFill_Pipe.hxx>
#include <BRepFill_PipeShell.hxx>
#include <BRepFill_Section.hxx>
#include <BRepFill_SectionLaw.hxx>
#include <BRepFill_SectionPlacement.hxx>
#include <BRepFill_SequenceOfEdgeFaceAndOrder.hxx>
#include <BRepFill_SequenceOfFaceAndOrder.hxx>
#include <BRepFill_SequenceOfSection.hxx>
#include <BRepFill_ShapeLaw.hxx>
#include <BRepFill_Sweep.hxx>
#include <BRepFill_ThruSectionErrorStatus.hxx>
#include <BRepFill_TransitionStyle.hxx>
#include <BRepFill_TrimEdgeTool.hxx>
#include <BRepFill_TrimShellCorner.hxx>
#include <BRepFill_TrimSurfaceTool.hxx>
#include <BRepFill_TypeOfContact.hxx>

// template related includes

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

// user-defined inclusion per module

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


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

//Python trampoline classes
    class Py_BRepFill_SectionLaw : public BRepFill_SectionLaw{
    public:
        using BRepFill_SectionLaw::BRepFill_SectionLaw;


        // public pure virtual
        Standard_Boolean IsConstant() const  override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,BRepFill_SectionLaw,IsConstant,) };
        Standard_Boolean IsVertex() const  override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,BRepFill_SectionLaw,IsVertex,) };
        opencascade::handle<GeomFill_SectionLaw> ConcatenedLaw() const  override { PYBIND11_OVERLOAD_PURE(opencascade::handle<GeomFill_SectionLaw>,BRepFill_SectionLaw,ConcatenedLaw,) };
        GeomAbs_Shape Continuity(const Standard_Integer Index,const Standard_Real TolAngular) const  override { PYBIND11_OVERLOAD_PURE(GeomAbs_Shape,BRepFill_SectionLaw,Continuity,Index,TolAngular) };
        Standard_Real VertexTol(const Standard_Integer Index,const Standard_Real Param) const  override { PYBIND11_OVERLOAD_PURE(Standard_Real,BRepFill_SectionLaw,VertexTol,Index,Param) };
        TopoDS_Vertex Vertex(const Standard_Integer Index,const Standard_Real Param) const  override { PYBIND11_OVERLOAD_PURE(TopoDS_Vertex,BRepFill_SectionLaw,Vertex,Index,Param) };
        void D0(const Standard_Real U,TopoDS_Shape & S) override { PYBIND11_OVERLOAD_PURE(void,BRepFill_SectionLaw,D0,U,S) };


        // protected pure virtual


        // private pure virtual

    };

// classes

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

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

    // nested enums

    static_cast<py::class_<BRepFill , shared_ptr<BRepFill>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Face_s",
                    (TopoDS_Face (*)( const TopoDS_Edge & ,  const TopoDS_Edge &  ) ) static_cast<TopoDS_Face (*)( const TopoDS_Edge & ,  const TopoDS_Edge &  ) >(&BRepFill::Face),
                    R"#(Computes a ruled surface between two edges.)#"  , py::arg("Edge1"),  py::arg("Edge2")
          )
        .def_static("Shell_s",
                    (TopoDS_Shell (*)( const TopoDS_Wire & ,  const TopoDS_Wire &  ) ) static_cast<TopoDS_Shell (*)( const TopoDS_Wire & ,  const TopoDS_Wire &  ) >(&BRepFill::Shell),
                    R"#(Computes a ruled surface between two wires. The wires must have the same number of edges.)#"  , py::arg("Wire1"),  py::arg("Wire2")
          )
        .def_static("ComputeACR_s",
                    (void (*)( const TopoDS_Wire & ,  NCollection_Array1<Standard_Real> &  ) ) static_cast<void (*)( const TopoDS_Wire & ,  NCollection_Array1<Standard_Real> &  ) >(&BRepFill::ComputeACR),
                    R"#(Compute ACR on a wire)#"  , py::arg("wire"),  py::arg("ACR")
          )
        .def_static("InsertACR_s",
                    (TopoDS_Wire (*)( const TopoDS_Wire & ,   const NCollection_Array1<Standard_Real> & ,  const Standard_Real  ) ) static_cast<TopoDS_Wire (*)( const TopoDS_Wire & ,   const NCollection_Array1<Standard_Real> & ,  const Standard_Real  ) >(&BRepFill::InsertACR),
                    R"#(Insert ACR on a wire)#"  , py::arg("wire"),  py::arg("ACRcuts"),  py::arg("prec")
          )
    // static methods using call by reference i.s.o. return
        .def_static("Axe_s",
            [](const TopoDS_Shape & Spine,const TopoDS_Wire & Profile,gp_Ax3 & AxeProf,const Standard_Real Tol ){
                Standard_Boolean  ProfOnSpine;

                BRepFill::Axe(Spine,Profile,AxeProf,ProfOnSpine,Tol);
                
return std::make_tuple(ProfOnSpine); },
            R"#(Computes <AxeProf> as Follow. <Location> is the Position of the nearest vertex V of <Profile> to <Spine>.<XDirection> is confused with the tangent to <Spine> at the projected point of V on the Spine. <Direction> is normal to <Spine>. <Spine> is a plane wire or a plane face.)#"  , py::arg("Spine"),  py::arg("Profile"),  py::arg("AxeProf"),  py::arg("Tol")
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<BRepFill_AdvancedEvolved , shared_ptr<BRepFill_AdvancedEvolved>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (void (BRepFill_AdvancedEvolved::*)( const TopoDS_Wire & ,  const TopoDS_Wire & ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_AdvancedEvolved::*)( const TopoDS_Wire & ,  const TopoDS_Wire & ,  const Standard_Real ,  const Standard_Boolean  ) >(&BRepFill_AdvancedEvolved::Perform),
             R"#(None)#"  , py::arg("theSpine"),  py::arg("theProfile"),  py::arg("theTolerance"),  py::arg("theSolidReq")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_AdvancedEvolved::*)( unsigned int *  ) const) static_cast<Standard_Boolean (BRepFill_AdvancedEvolved::*)( unsigned int *  ) const>(&BRepFill_AdvancedEvolved::IsDone),
             R"#(None)#"  , py::arg("theErrorCode")=static_cast<unsigned int *>(0)
          )
        .def("SetParallelMode",
             (void (BRepFill_AdvancedEvolved::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_AdvancedEvolved::*)( const Standard_Boolean  ) >(&BRepFill_AdvancedEvolved::SetParallelMode),
             R"#(Sets/Unsets computation in parallel mode)#"  , py::arg("theVal")
          )
    // 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 & (BRepFill_AdvancedEvolved::*)() const) static_cast<const TopoDS_Shape & (BRepFill_AdvancedEvolved::*)() const>(&BRepFill_AdvancedEvolved::Shape),
             R"#(returns the resulting shape.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_ApproxSeewing , shared_ptr<BRepFill_ApproxSeewing>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const BRepFill_MultiLine & >()  , py::arg("ML") )
    // custom constructors
    // methods
        .def("Perform",
             (void (BRepFill_ApproxSeewing::*)( const BRepFill_MultiLine &  ) ) static_cast<void (BRepFill_ApproxSeewing::*)( const BRepFill_MultiLine &  ) >(&BRepFill_ApproxSeewing::Perform),
             R"#(None)#"  , py::arg("ML")
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_ApproxSeewing::*)() const) static_cast<Standard_Boolean (BRepFill_ApproxSeewing::*)() const>(&BRepFill_ApproxSeewing::IsDone),
             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("Curve",
             (const opencascade::handle<Geom_Curve> & (BRepFill_ApproxSeewing::*)() const) static_cast<const opencascade::handle<Geom_Curve> & (BRepFill_ApproxSeewing::*)() const>(&BRepFill_ApproxSeewing::Curve),
             R"#(returns the approximation of the 3d Curve)#"
             
         )
       .def("CurveOnF1",
             (const opencascade::handle<Geom2d_Curve> & (BRepFill_ApproxSeewing::*)() const) static_cast<const opencascade::handle<Geom2d_Curve> & (BRepFill_ApproxSeewing::*)() const>(&BRepFill_ApproxSeewing::CurveOnF1),
             R"#(returns the approximation of the PCurve on the first face of the MultiLine)#"
             
         )
       .def("CurveOnF2",
             (const opencascade::handle<Geom2d_Curve> & (BRepFill_ApproxSeewing::*)() const) static_cast<const opencascade::handle<Geom2d_Curve> & (BRepFill_ApproxSeewing::*)() const>(&BRepFill_ApproxSeewing::CurveOnF2),
             R"#(returns the approximation of the PCurve on the first face of the MultiLine)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_CompatibleWires , shared_ptr<BRepFill_CompatibleWires>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init<  const NCollection_Sequence<TopoDS_Shape> & >()  , py::arg("Sections") )
    // custom constructors
    // methods
        .def("Init",
             (void (BRepFill_CompatibleWires::*)(  const NCollection_Sequence<TopoDS_Shape> &  ) ) static_cast<void (BRepFill_CompatibleWires::*)(  const NCollection_Sequence<TopoDS_Shape> &  ) >(&BRepFill_CompatibleWires::Init),
             R"#(None)#"  , py::arg("Sections")
          )
        .def("SetPercent",
             (void (BRepFill_CompatibleWires::*)( const Standard_Real  ) ) static_cast<void (BRepFill_CompatibleWires::*)( const Standard_Real  ) >(&BRepFill_CompatibleWires::SetPercent),
             R"#(None)#"  , py::arg("percent")=static_cast<const Standard_Real>(0.01)
          )
        .def("Perform",
             (void (BRepFill_CompatibleWires::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_CompatibleWires::*)( const Standard_Boolean  ) >(&BRepFill_CompatibleWires::Perform),
             R"#(Performs CompatibleWires According to the orientation and the origin of each other)#"  , py::arg("WithRotation")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_CompatibleWires::*)() const) static_cast<Standard_Boolean (BRepFill_CompatibleWires::*)() const>(&BRepFill_CompatibleWires::IsDone),
             R"#(None)#" 
          )
        .def("GetStatus",
             (BRepFill_ThruSectionErrorStatus (BRepFill_CompatibleWires::*)() const) static_cast<BRepFill_ThruSectionErrorStatus (BRepFill_CompatibleWires::*)() const>(&BRepFill_CompatibleWires::GetStatus),
             R"#(None)#" 
          )
        .def("GeneratedShapes",
             (const TopTools_ListOfShape & (BRepFill_CompatibleWires::*)( const TopoDS_Edge &  ) const) static_cast<const TopTools_ListOfShape & (BRepFill_CompatibleWires::*)( const TopoDS_Edge &  ) const>(&BRepFill_CompatibleWires::GeneratedShapes),
             R"#(Returns the shapes created from a subshape <SubSection> of a section.)#"  , py::arg("SubSection")
          )
        .def("IsDegeneratedFirstSection",
             (Standard_Boolean (BRepFill_CompatibleWires::*)() const) static_cast<Standard_Boolean (BRepFill_CompatibleWires::*)() const>(&BRepFill_CompatibleWires::IsDegeneratedFirstSection),
             R"#(None)#" 
          )
        .def("IsDegeneratedLastSection",
             (Standard_Boolean (BRepFill_CompatibleWires::*)() const) static_cast<Standard_Boolean (BRepFill_CompatibleWires::*)() const>(&BRepFill_CompatibleWires::IsDegeneratedLastSection),
             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("Shape",
             (const TopTools_SequenceOfShape & (BRepFill_CompatibleWires::*)() const) static_cast<const TopTools_SequenceOfShape & (BRepFill_CompatibleWires::*)() const>(&BRepFill_CompatibleWires::Shape),
             R"#(returns the generated sequence.)#"
             
         )
       .def("Generated",
             (const TopTools_DataMapOfShapeListOfShape & (BRepFill_CompatibleWires::*)() const) static_cast<const TopTools_DataMapOfShapeListOfShape & (BRepFill_CompatibleWires::*)() const>(&BRepFill_CompatibleWires::Generated),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_ComputeCLine , shared_ptr<BRepFill_ComputeCLine>  >>(klass)
    // constructors
        .def(py::init< const BRepFill_MultiLine &,const Standard_Integer,const Standard_Integer,const Standard_Real,const Standard_Real,const Standard_Boolean,const AppParCurves_Constraint,const AppParCurves_Constraint >()  , py::arg("Line"),  py::arg("degreemin")=static_cast<const Standard_Integer>(3),  py::arg("degreemax")=static_cast<const Standard_Integer>(8),  py::arg("Tolerance3d")=static_cast<const Standard_Real>(1.0e-5),  py::arg("Tolerance2d")=static_cast<const Standard_Real>(1.0e-5),  py::arg("cutting")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("FirstC")=static_cast<const AppParCurves_Constraint>(AppParCurves_TangencyPoint),  py::arg("LastC")=static_cast<const AppParCurves_Constraint>(AppParCurves_TangencyPoint) )
        .def(py::init< const Standard_Integer,const Standard_Integer,const Standard_Real,const Standard_Real,const Standard_Boolean,const AppParCurves_Constraint,const AppParCurves_Constraint >()  , py::arg("degreemin")=static_cast<const Standard_Integer>(3),  py::arg("degreemax")=static_cast<const Standard_Integer>(8),  py::arg("Tolerance3d")=static_cast<const Standard_Real>(1.0e-05),  py::arg("Tolerance2d")=static_cast<const Standard_Real>(1.0e-05),  py::arg("cutting")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("FirstC")=static_cast<const AppParCurves_Constraint>(AppParCurves_TangencyPoint),  py::arg("LastC")=static_cast<const AppParCurves_Constraint>(AppParCurves_TangencyPoint) )
    // custom constructors
    // methods
        .def("Perform",
             (void (BRepFill_ComputeCLine::*)( const BRepFill_MultiLine &  ) ) static_cast<void (BRepFill_ComputeCLine::*)( const BRepFill_MultiLine &  ) >(&BRepFill_ComputeCLine::Perform),
             R"#(runs the algorithm after having initialized the fields.)#"  , py::arg("Line")
          )
        .def("SetDegrees",
             (void (BRepFill_ComputeCLine::*)( const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (BRepFill_ComputeCLine::*)( const Standard_Integer ,  const Standard_Integer  ) >(&BRepFill_ComputeCLine::SetDegrees),
             R"#(changes the degrees of the approximation.)#"  , py::arg("degreemin"),  py::arg("degreemax")
          )
        .def("SetTolerances",
             (void (BRepFill_ComputeCLine::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_ComputeCLine::*)( const Standard_Real ,  const Standard_Real  ) >(&BRepFill_ComputeCLine::SetTolerances),
             R"#(Changes the tolerances of the approximation.)#"  , py::arg("Tolerance3d"),  py::arg("Tolerance2d")
          )
        .def("SetConstraints",
             (void (BRepFill_ComputeCLine::*)( const AppParCurves_Constraint ,  const AppParCurves_Constraint  ) ) static_cast<void (BRepFill_ComputeCLine::*)( const AppParCurves_Constraint ,  const AppParCurves_Constraint  ) >(&BRepFill_ComputeCLine::SetConstraints),
             R"#(Changes the constraints of the approximation.)#"  , py::arg("FirstC"),  py::arg("LastC")
          )
        .def("SetMaxSegments",
             (void (BRepFill_ComputeCLine::*)( const Standard_Integer  ) ) static_cast<void (BRepFill_ComputeCLine::*)( const Standard_Integer  ) >(&BRepFill_ComputeCLine::SetMaxSegments),
             R"#(Changes the max number of segments, which is allowed for cutting.)#"  , py::arg("theMaxSegments")
          )
        .def("SetInvOrder",
             (void (BRepFill_ComputeCLine::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_ComputeCLine::*)( const Standard_Boolean  ) >(&BRepFill_ComputeCLine::SetInvOrder),
             R"#(Set inverse order of degree selection: if theInvOrdr = true, current degree is chosen by inverse order - from maxdegree to mindegree. By default inverse order is used.)#"  , py::arg("theInvOrder")
          )
        .def("SetHangChecking",
             (void (BRepFill_ComputeCLine::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_ComputeCLine::*)( const Standard_Boolean  ) >(&BRepFill_ComputeCLine::SetHangChecking),
             R"#(Set value of hang checking flag if this flag = true, possible hang of algorithm is checked and algorithm is forced to stop. By default hang checking is used.)#"  , py::arg("theHangChecking")
          )
        .def("IsAllApproximated",
             (Standard_Boolean (BRepFill_ComputeCLine::*)() const) static_cast<Standard_Boolean (BRepFill_ComputeCLine::*)() const>(&BRepFill_ComputeCLine::IsAllApproximated),
             R"#(returns False if at a moment of the approximation, the status NoApproximation has been sent by the user when more points were needed.)#" 
          )
        .def("IsToleranceReached",
             (Standard_Boolean (BRepFill_ComputeCLine::*)() const) static_cast<Standard_Boolean (BRepFill_ComputeCLine::*)() const>(&BRepFill_ComputeCLine::IsToleranceReached),
             R"#(returns False if the status NoPointsAdded has been sent.)#" 
          )
        .def("NbMultiCurves",
             (Standard_Integer (BRepFill_ComputeCLine::*)() const) static_cast<Standard_Integer (BRepFill_ComputeCLine::*)() const>(&BRepFill_ComputeCLine::NbMultiCurves),
             R"#(Returns the number of MultiCurve doing the approximation of the MultiLine.)#" 
          )
        .def("Value",
             (AppParCurves_MultiCurve (BRepFill_ComputeCLine::*)( const Standard_Integer  ) const) static_cast<AppParCurves_MultiCurve (BRepFill_ComputeCLine::*)( const Standard_Integer  ) const>(&BRepFill_ComputeCLine::Value),
             R"#(returns the approximation MultiCurve of range <Index>.)#"  , py::arg("Index")=static_cast<const Standard_Integer>(1)
          )
    // methods using call by reference i.s.o. return
        .def("Error",
             []( BRepFill_ComputeCLine &self , const Standard_Integer Index ){
                 Standard_Real  tol3d;
                Standard_Real  tol2d;

                 self.Error(Index,tol3d,tol2d);
                 
                 return std::make_tuple(tol3d,tol2d); },
             R"#(returns the tolerances 2d and 3d of the <Index> MultiCurve.)#"  , py::arg("Index")
          )
        .def("Parameters",
             []( BRepFill_ComputeCLine &self , const Standard_Integer Index ){
                 Standard_Real  firstp;
                Standard_Real  lastp;

                 self.Parameters(Index,firstp,lastp);
                 
                 return std::make_tuple(firstp,lastp); },
             R"#(None)#"  , py::arg("Index")
          )
    // 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 BRepFill_CurveConstraint from ./opencascade/BRepFill_CurveConstraint.hxx
    klass = m.attr("BRepFill_CurveConstraint");


    // nested enums

    static_cast<py::class_<BRepFill_CurveConstraint ,opencascade::handle<BRepFill_CurveConstraint>  , GeomPlate_CurveConstraint >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_CurveOnSurface> &,const Standard_Integer,const Standard_Integer,const Standard_Real,const Standard_Real,const Standard_Real >()  , py::arg("Boundary"),  py::arg("Order"),  py::arg("NPt")=static_cast<const Standard_Integer>(10),  py::arg("TolDist")=static_cast<const Standard_Real>(0.0001),  py::arg("TolAng")=static_cast<const Standard_Real>(0.01),  py::arg("TolCurv")=static_cast<const Standard_Real>(0.1) )
        .def(py::init< const opencascade::handle<Adaptor3d_Curve> &,const Standard_Integer,const Standard_Integer,const Standard_Real >()  , py::arg("Boundary"),  py::arg("Tang"),  py::arg("NPt")=static_cast<const Standard_Integer>(10),  py::arg("TolDist")=static_cast<const Standard_Real>(0.0001) )
    // 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 * (*)() >(&BRepFill_CurveConstraint::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_CurveConstraint::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> & (BRepFill_CurveConstraint::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_CurveConstraint::*)() const>(&BRepFill_CurveConstraint::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_Draft , shared_ptr<BRepFill_Draft>  >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape &,const gp_Dir &,const Standard_Real >()  , py::arg("Shape"),  py::arg("Dir"),  py::arg("Angle") )
    // custom constructors
    // methods
        .def("SetOptions",
             (void (BRepFill_Draft::*)( const BRepFill_TransitionStyle ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_Draft::*)( const BRepFill_TransitionStyle ,  const Standard_Real ,  const Standard_Real  ) >(&BRepFill_Draft::SetOptions),
             R"#(None)#"  , py::arg("Style")=static_cast<const BRepFill_TransitionStyle>(BRepFill_Right),  py::arg("AngleMin")=static_cast<const Standard_Real>(0.01),  py::arg("AngleMax")=static_cast<const Standard_Real>(3.0)
          )
        .def("SetDraft",
             (void (BRepFill_Draft::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_Draft::*)( const Standard_Boolean  ) >(&BRepFill_Draft::SetDraft),
             R"#(None)#"  , py::arg("IsInternal")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("Perform",
             (void (BRepFill_Draft::*)( const Standard_Real  ) ) static_cast<void (BRepFill_Draft::*)( const Standard_Real  ) >(&BRepFill_Draft::Perform),
             R"#(None)#"  , py::arg("LengthMax")
          )
        .def("Perform",
             (void (BRepFill_Draft::*)( const opencascade::handle<Geom_Surface> & ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_Draft::*)( const opencascade::handle<Geom_Surface> & ,  const Standard_Boolean  ) >(&BRepFill_Draft::Perform),
             R"#(None)#"  , py::arg("Surface"),  py::arg("KeepInsideSurface")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Perform",
             (void (BRepFill_Draft::*)( const TopoDS_Shape & ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_Draft::*)( const TopoDS_Shape & ,  const Standard_Boolean  ) >(&BRepFill_Draft::Perform),
             R"#(None)#"  , py::arg("StopShape"),  py::arg("KeepOutSide")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_Draft::*)() const) static_cast<Standard_Boolean (BRepFill_Draft::*)() const>(&BRepFill_Draft::IsDone),
             R"#(None)#" 
          )
        .def("Shell",
             (TopoDS_Shell (BRepFill_Draft::*)() const) static_cast<TopoDS_Shell (BRepFill_Draft::*)() const>(&BRepFill_Draft::Shell),
             R"#(Returns the draft surface To have the complete shape you have to use the Shape() methode.)#" 
          )
        .def("Generated",
             (const TopTools_ListOfShape & (BRepFill_Draft::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BRepFill_Draft::*)( const TopoDS_Shape &  ) >(&BRepFill_Draft::Generated),
             R"#(Returns the list of shapes generated from the shape <S>.)#"  , py::arg("S")
          )
        .def("Shape",
             (TopoDS_Shape (BRepFill_Draft::*)() const) static_cast<TopoDS_Shape (BRepFill_Draft::*)() const>(&BRepFill_Draft::Shape),
             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
;

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


    // nested enums

    static_cast<py::class_<BRepFill_EdgeFaceAndOrder , shared_ptr<BRepFill_EdgeFaceAndOrder>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Edge &,const TopoDS_Face &,const GeomAbs_Shape >()  , py::arg("anEdge"),  py::arg("aFace"),  py::arg("anOrder") )
    // 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 BRepFill_Evolved from ./opencascade/BRepFill_Evolved.hxx
    klass = m.attr("BRepFill_Evolved");


    // nested enums

    static_cast<py::class_<BRepFill_Evolved , shared_ptr<BRepFill_Evolved>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Wire &,const TopoDS_Wire &,const gp_Ax3 &,const GeomAbs_JoinType,const Standard_Boolean >()  , py::arg("Spine"),  py::arg("Profile"),  py::arg("AxeProf"),  py::arg("Join")=static_cast<const GeomAbs_JoinType>(GeomAbs_Arc),  py::arg("Solid")=static_cast<const Standard_Boolean>(Standard_False) )
        .def(py::init< const TopoDS_Face &,const TopoDS_Wire &,const gp_Ax3 &,const GeomAbs_JoinType,const Standard_Boolean >()  , py::arg("Spine"),  py::arg("Profile"),  py::arg("AxeProf"),  py::arg("Join")=static_cast<const GeomAbs_JoinType>(GeomAbs_Arc),  py::arg("Solid")=static_cast<const Standard_Boolean>(Standard_False) )
    // custom constructors
    // methods
        .def("Perform",
             (void (BRepFill_Evolved::*)( const TopoDS_Wire & ,  const TopoDS_Wire & ,  const gp_Ax3 & ,  const GeomAbs_JoinType ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_Evolved::*)( const TopoDS_Wire & ,  const TopoDS_Wire & ,  const gp_Ax3 & ,  const GeomAbs_JoinType ,  const Standard_Boolean  ) >(&BRepFill_Evolved::Perform),
             R"#(Performs an evolved shape by sweeping the <Profile> along the <Spine>)#"  , py::arg("Spine"),  py::arg("Profile"),  py::arg("AxeProf"),  py::arg("Join")=static_cast<const GeomAbs_JoinType>(GeomAbs_Arc),  py::arg("Solid")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("Perform",
             (void (BRepFill_Evolved::*)( const TopoDS_Face & ,  const TopoDS_Wire & ,  const gp_Ax3 & ,  const GeomAbs_JoinType ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_Evolved::*)( const TopoDS_Face & ,  const TopoDS_Wire & ,  const gp_Ax3 & ,  const GeomAbs_JoinType ,  const Standard_Boolean  ) >(&BRepFill_Evolved::Perform),
             R"#(Performs an evolved shape by sweeping the <Profile> along the <Spine>)#"  , py::arg("Spine"),  py::arg("Profile"),  py::arg("AxeProf"),  py::arg("Join")=static_cast<const GeomAbs_JoinType>(GeomAbs_Arc),  py::arg("Solid")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_Evolved::*)() const) static_cast<Standard_Boolean (BRepFill_Evolved::*)() const>(&BRepFill_Evolved::IsDone),
             R"#(None)#" 
          )
        .def("GeneratedShapes",
             (const TopTools_ListOfShape & (BRepFill_Evolved::*)( const TopoDS_Shape & ,  const TopoDS_Shape &  ) const) static_cast<const TopTools_ListOfShape & (BRepFill_Evolved::*)( const TopoDS_Shape & ,  const TopoDS_Shape &  ) const>(&BRepFill_Evolved::GeneratedShapes),
             R"#(Returns the shapes created from a subshape <SpineShape> of the spine and a subshape <ProfShape> on the profile.)#"  , py::arg("SpineShape"),  py::arg("ProfShape")
          )
        .def("JoinType",
             (GeomAbs_JoinType (BRepFill_Evolved::*)() const) static_cast<GeomAbs_JoinType (BRepFill_Evolved::*)() const>(&BRepFill_Evolved::JoinType),
             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("Shape",
             (const TopoDS_Shape & (BRepFill_Evolved::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Evolved::*)() const>(&BRepFill_Evolved::Shape),
             R"#(returns the generated shape.)#"
             
         )
       .def("Top",
             (const TopoDS_Shape & (BRepFill_Evolved::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Evolved::*)() const>(&BRepFill_Evolved::Top),
             R"#(Return the face Top if <Solid> is True in the constructor.)#"
             
         )
       .def("Bottom",
             (const TopoDS_Shape & (BRepFill_Evolved::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Evolved::*)() const>(&BRepFill_Evolved::Bottom),
             R"#(Return the face Bottom if <Solid> is True in the constructor.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_FaceAndOrder , shared_ptr<BRepFill_FaceAndOrder>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Face &,const GeomAbs_Shape >()  , py::arg("aFace"),  py::arg("anOrder") )
    // 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 BRepFill_Filling from ./opencascade/BRepFill_Filling.hxx
    klass = m.attr("BRepFill_Filling");


    // nested enums

    static_cast<py::class_<BRepFill_Filling , shared_ptr<BRepFill_Filling>  >>(klass)
    // constructors
        .def(py::init< const Standard_Integer,const Standard_Integer,const Standard_Integer,const Standard_Boolean,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Integer,const Standard_Integer >()  , py::arg("Degree")=static_cast<const Standard_Integer>(3),  py::arg("NbPtsOnCur")=static_cast<const Standard_Integer>(15),  py::arg("NbIter")=static_cast<const Standard_Integer>(2),  py::arg("Anisotropie")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("Tol2d")=static_cast<const Standard_Real>(0.00001),  py::arg("Tol3d")=static_cast<const Standard_Real>(0.0001),  py::arg("TolAng")=static_cast<const Standard_Real>(0.01),  py::arg("TolCurv")=static_cast<const Standard_Real>(0.1),  py::arg("MaxDeg")=static_cast<const Standard_Integer>(8),  py::arg("MaxSegments")=static_cast<const Standard_Integer>(9) )
    // custom constructors
    // methods
        .def("SetConstrParam",
             (void (BRepFill_Filling::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_Filling::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&BRepFill_Filling::SetConstrParam),
             R"#(Sets the values of Tolerances used to control the constraint. Tol2d: Tol3d: it is the maximum distance allowed between the support surface and the constraints TolAng: it is the maximum angle allowed between the normal of the surface and the constraints TolCurv: it is the maximum difference of curvature allowed between the surface and the constraint)#"  , py::arg("Tol2d")=static_cast<const Standard_Real>(0.00001),  py::arg("Tol3d")=static_cast<const Standard_Real>(0.0001),  py::arg("TolAng")=static_cast<const Standard_Real>(0.01),  py::arg("TolCurv")=static_cast<const Standard_Real>(0.1)
          )
        .def("SetResolParam",
             (void (BRepFill_Filling::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_Filling::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Boolean  ) >(&BRepFill_Filling::SetResolParam),
             R"#(Sets the parameters used for resolution. The default values of these parameters have been chosen for a good ratio quality/performance. Degree: it is the order of energy criterion to minimize for computing the deformation of the surface. The default value is 3 The recommended value is i+2 where i is the maximum order of the constraints. NbPtsOnCur: it is the average number of points for discretisation of the edges. NbIter: it is the maximum number of iterations of the process. For each iteration the number of discretisation points is increased. Anisotropie:)#"  , py::arg("Degree")=static_cast<const Standard_Integer>(3),  py::arg("NbPtsOnCur")=static_cast<const Standard_Integer>(15),  py::arg("NbIter")=static_cast<const Standard_Integer>(2),  py::arg("Anisotropie")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("SetApproxParam",
             (void (BRepFill_Filling::*)( const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (BRepFill_Filling::*)( const Standard_Integer ,  const Standard_Integer  ) >(&BRepFill_Filling::SetApproxParam),
             R"#(Sets the parameters used for approximation of the surface)#"  , py::arg("MaxDeg")=static_cast<const Standard_Integer>(8),  py::arg("MaxSegments")=static_cast<const Standard_Integer>(9)
          )
        .def("LoadInitSurface",
             (void (BRepFill_Filling::*)( const TopoDS_Face &  ) ) static_cast<void (BRepFill_Filling::*)( const TopoDS_Face &  ) >(&BRepFill_Filling::LoadInitSurface),
             R"#(Loads the initial Surface The initial surface must have orthogonal local coordinates, i.e. partial derivatives dS/du and dS/dv must be orthogonal at each point of surface. If this condition breaks, distortions of resulting surface are possible.)#"  , py::arg("aFace")
          )
        .def("Add",
             (Standard_Integer (BRepFill_Filling::*)( const TopoDS_Edge & ,  const GeomAbs_Shape ,  const Standard_Boolean  ) ) static_cast<Standard_Integer (BRepFill_Filling::*)( const TopoDS_Edge & ,  const GeomAbs_Shape ,  const Standard_Boolean  ) >(&BRepFill_Filling::Add),
             R"#(Adds a new constraint which also defines an edge of the wire of the face Order: Order of the constraint: GeomAbs_C0 : the surface has to pass by 3D representation of the edge GeomAbs_G1 : the surface has to pass by 3D representation of the edge and to respect tangency with the first face of the edge GeomAbs_G2 : the surface has to pass by 3D representation of the edge and to respect tangency and curvature with the first face of the edge.)#"  , py::arg("anEdge"),  py::arg("Order"),  py::arg("IsBound")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Add",
             (Standard_Integer (BRepFill_Filling::*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const GeomAbs_Shape ,  const Standard_Boolean  ) ) static_cast<Standard_Integer (BRepFill_Filling::*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const GeomAbs_Shape ,  const Standard_Boolean  ) >(&BRepFill_Filling::Add),
             R"#(Adds a new constraint which also defines an edge of the wire of the face Order: Order of the constraint: GeomAbs_C0 : the surface has to pass by 3D representation of the edge GeomAbs_G1 : the surface has to pass by 3D representation of the edge and to respect tangency with the given face GeomAbs_G2 : the surface has to pass by 3D representation of the edge and to respect tangency and curvature with the given face.)#"  , py::arg("anEdge"),  py::arg("Support"),  py::arg("Order"),  py::arg("IsBound")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Add",
             (Standard_Integer (BRepFill_Filling::*)( const TopoDS_Face & ,  const GeomAbs_Shape  ) ) static_cast<Standard_Integer (BRepFill_Filling::*)( const TopoDS_Face & ,  const GeomAbs_Shape  ) >(&BRepFill_Filling::Add),
             R"#(Adds a free constraint on a face. The corresponding edge has to be automatically recomputed. It is always a bound.)#"  , py::arg("Support"),  py::arg("Order")
          )
        .def("Add",
             (Standard_Integer (BRepFill_Filling::*)( const gp_Pnt &  ) ) static_cast<Standard_Integer (BRepFill_Filling::*)( const gp_Pnt &  ) >(&BRepFill_Filling::Add),
             R"#(Adds a punctual constraint)#"  , py::arg("Point")
          )
        .def("Add",
             (Standard_Integer (BRepFill_Filling::*)( const Standard_Real ,  const Standard_Real ,  const TopoDS_Face & ,  const GeomAbs_Shape  ) ) static_cast<Standard_Integer (BRepFill_Filling::*)( const Standard_Real ,  const Standard_Real ,  const TopoDS_Face & ,  const GeomAbs_Shape  ) >(&BRepFill_Filling::Add),
             R"#(Adds a punctual constraint.)#"  , py::arg("U"),  py::arg("V"),  py::arg("Support"),  py::arg("Order")
          )
        .def("Build",
             (void (BRepFill_Filling::*)() ) static_cast<void (BRepFill_Filling::*)() >(&BRepFill_Filling::Build),
             R"#(Builds the resulting faces)#" 
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_Filling::*)() const) static_cast<Standard_Boolean (BRepFill_Filling::*)() const>(&BRepFill_Filling::IsDone),
             R"#(None)#" 
          )
        .def("Face",
             (TopoDS_Face (BRepFill_Filling::*)() const) static_cast<TopoDS_Face (BRepFill_Filling::*)() const>(&BRepFill_Filling::Face),
             R"#(None)#" 
          )
        .def("Generated",
             (const TopTools_ListOfShape & (BRepFill_Filling::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BRepFill_Filling::*)( const TopoDS_Shape &  ) >(&BRepFill_Filling::Generated),
             R"#(Returns the list of shapes generated from the shape <S>.)#"  , py::arg("S")
          )
        .def("G0Error",
             (Standard_Real (BRepFill_Filling::*)() const) static_cast<Standard_Real (BRepFill_Filling::*)() const>(&BRepFill_Filling::G0Error),
             R"#(None)#" 
          )
        .def("G1Error",
             (Standard_Real (BRepFill_Filling::*)() const) static_cast<Standard_Real (BRepFill_Filling::*)() const>(&BRepFill_Filling::G1Error),
             R"#(None)#" 
          )
        .def("G2Error",
             (Standard_Real (BRepFill_Filling::*)() const) static_cast<Standard_Real (BRepFill_Filling::*)() const>(&BRepFill_Filling::G2Error),
             R"#(None)#" 
          )
        .def("G0Error",
             (Standard_Real (BRepFill_Filling::*)( const Standard_Integer  ) ) static_cast<Standard_Real (BRepFill_Filling::*)( const Standard_Integer  ) >(&BRepFill_Filling::G0Error),
             R"#(None)#"  , py::arg("Index")
          )
        .def("G1Error",
             (Standard_Real (BRepFill_Filling::*)( const Standard_Integer  ) ) static_cast<Standard_Real (BRepFill_Filling::*)( const Standard_Integer  ) >(&BRepFill_Filling::G1Error),
             R"#(None)#"  , py::arg("Index")
          )
        .def("G2Error",
             (Standard_Real (BRepFill_Filling::*)( const Standard_Integer  ) ) static_cast<Standard_Real (BRepFill_Filling::*)( const Standard_Integer  ) >(&BRepFill_Filling::G2Error),
             R"#(None)#"  , py::arg("Index")
          )
    // 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 BRepFill_Generator from ./opencascade/BRepFill_Generator.hxx
    klass = m.attr("BRepFill_Generator");


    // nested enums

    static_cast<py::class_<BRepFill_Generator , shared_ptr<BRepFill_Generator>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("AddWire",
             (void (BRepFill_Generator::*)( const TopoDS_Wire &  ) ) static_cast<void (BRepFill_Generator::*)( const TopoDS_Wire &  ) >(&BRepFill_Generator::AddWire),
             R"#(None)#"  , py::arg("Wire")
          )
        .def("Perform",
             (void (BRepFill_Generator::*)() ) static_cast<void (BRepFill_Generator::*)() >(&BRepFill_Generator::Perform),
             R"#(Compute the shell.)#" 
          )
        .def("GeneratedShapes",
             (const TopTools_ListOfShape & (BRepFill_Generator::*)( const TopoDS_Shape &  ) const) static_cast<const TopTools_ListOfShape & (BRepFill_Generator::*)( const TopoDS_Shape &  ) const>(&BRepFill_Generator::GeneratedShapes),
             R"#(Returns the shapes created from a subshape <SSection> of a section.)#"  , py::arg("SSection")
          )
        .def("ResultShape",
             (TopoDS_Shape (BRepFill_Generator::*)( const TopoDS_Shape &  ) const) static_cast<TopoDS_Shape (BRepFill_Generator::*)( const TopoDS_Shape &  ) const>(&BRepFill_Generator::ResultShape),
             R"#(Returns a modified shape in the constructed shell, If shape is not changed (replaced) during operation => returns the same shape)#"  , py::arg("theShape")
          )
        .def("SetMutableInput",
             (void (BRepFill_Generator::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_Generator::*)( const Standard_Boolean  ) >(&BRepFill_Generator::SetMutableInput),
             R"#(Sets the mutable input state If true then the input profile can be modified inside the operation. Default value is true.)#"  , py::arg("theIsMutableInput")
          )
        .def("IsMutableInput",
             (Standard_Boolean (BRepFill_Generator::*)() const) static_cast<Standard_Boolean (BRepFill_Generator::*)() const>(&BRepFill_Generator::IsMutableInput),
             R"#(Returns the current mutable input state)#" 
          )
        .def("GetStatus",
             (BRepFill_ThruSectionErrorStatus (BRepFill_Generator::*)() const) static_cast<BRepFill_ThruSectionErrorStatus (BRepFill_Generator::*)() const>(&BRepFill_Generator::GetStatus),
             R"#(Returns status of the operation)#" 
          )
    // 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("Shell",
             (const TopoDS_Shell & (BRepFill_Generator::*)() const) static_cast<const TopoDS_Shell & (BRepFill_Generator::*)() const>(&BRepFill_Generator::Shell),
             R"#(None)#"
             
         )
       .def("Generated",
             (const TopTools_DataMapOfShapeListOfShape & (BRepFill_Generator::*)() const) static_cast<const TopTools_DataMapOfShapeListOfShape & (BRepFill_Generator::*)() const>(&BRepFill_Generator::Generated),
             R"#(Returns all the shapes created)#"
             
         )
       .def("Shell",
             (const TopoDS_Shell & (BRepFill_Generator::*)() const) static_cast<const TopoDS_Shell & (BRepFill_Generator::*)() const>(&BRepFill_Generator::Shell),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<BRepFill_LocationLaw ,opencascade::handle<BRepFill_LocationLaw>  , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("GetStatus",
             (GeomFill_PipeError (BRepFill_LocationLaw::*)() const) static_cast<GeomFill_PipeError (BRepFill_LocationLaw::*)() const>(&BRepFill_LocationLaw::GetStatus),
             R"#(Return a error status, if the status is not PipeOk then it exist a parameter tlike the law is not valuable for t.)#" 
          )
        .def("TransformInG0Law",
             (void (BRepFill_LocationLaw::*)() ) static_cast<void (BRepFill_LocationLaw::*)() >(&BRepFill_LocationLaw::TransformInG0Law),
             R"#(Apply a linear transformation on each law, to have continuity of the global law between the edges.)#" 
          )
        .def("TransformInCompatibleLaw",
             (void (BRepFill_LocationLaw::*)( const Standard_Real  ) ) static_cast<void (BRepFill_LocationLaw::*)( const Standard_Real  ) >(&BRepFill_LocationLaw::TransformInCompatibleLaw),
             R"#(Apply a linear transformation on each law, to reduce the dicontinuities of law at one rotation.)#"  , py::arg("AngularTolerance")
          )
        .def("DeleteTransform",
             (void (BRepFill_LocationLaw::*)() ) static_cast<void (BRepFill_LocationLaw::*)() >(&BRepFill_LocationLaw::DeleteTransform),
             R"#(None)#" 
          )
        .def("NbHoles",
             (Standard_Integer (BRepFill_LocationLaw::*)( const Standard_Real  ) ) static_cast<Standard_Integer (BRepFill_LocationLaw::*)( const Standard_Real  ) >(&BRepFill_LocationLaw::NbHoles),
             R"#(None)#"  , py::arg("Tol")=static_cast<const Standard_Real>(1.0e-7)
          )
        .def("Holes",
             (void (BRepFill_LocationLaw::*)( NCollection_Array1<Standard_Integer> &  ) const) static_cast<void (BRepFill_LocationLaw::*)( NCollection_Array1<Standard_Integer> &  ) const>(&BRepFill_LocationLaw::Holes),
             R"#(None)#"  , py::arg("Interval")
          )
        .def("NbLaw",
             (Standard_Integer (BRepFill_LocationLaw::*)() const) static_cast<Standard_Integer (BRepFill_LocationLaw::*)() const>(&BRepFill_LocationLaw::NbLaw),
             R"#(Return the number of elementary Law)#" 
          )
        .def("Law",
             (const opencascade::handle<GeomFill_LocationLaw> & (BRepFill_LocationLaw::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<GeomFill_LocationLaw> & (BRepFill_LocationLaw::*)( const Standard_Integer  ) const>(&BRepFill_LocationLaw::Law),
             R"#(Return the elementary Law of rank <Index> <Index> have to be in [1, NbLaw()])#"  , py::arg("Index")
          )
        .def("Edge",
             (const TopoDS_Edge & (BRepFill_LocationLaw::*)( const Standard_Integer  ) const) static_cast<const TopoDS_Edge & (BRepFill_LocationLaw::*)( const Standard_Integer  ) const>(&BRepFill_LocationLaw::Edge),
             R"#(Return the Edge of rank <Index> in the path <Index> have to be in [1, NbLaw()])#"  , py::arg("Index")
          )
        .def("Vertex",
             (TopoDS_Vertex (BRepFill_LocationLaw::*)( const Standard_Integer  ) const) static_cast<TopoDS_Vertex (BRepFill_LocationLaw::*)( const Standard_Integer  ) const>(&BRepFill_LocationLaw::Vertex),
             R"#(Return the vertex of rank <Index> in the path <Index> have to be in [0, NbLaw()])#"  , py::arg("Index")
          )
        .def("PerformVertex",
             (void (BRepFill_LocationLaw::*)( const Standard_Integer ,  const TopoDS_Vertex & ,  const Standard_Real ,  TopoDS_Vertex & ,  const Standard_Integer  ) const) static_cast<void (BRepFill_LocationLaw::*)( const Standard_Integer ,  const TopoDS_Vertex & ,  const Standard_Real ,  TopoDS_Vertex & ,  const Standard_Integer  ) const>(&BRepFill_LocationLaw::PerformVertex),
             R"#(Compute <OutputVertex> like a transformation of <InputVertex> the transformation is given by evaluation of the location law in the vertex of rank <Index>. <Location> is used to manage discontinuities : - -1 : The law before the vertex is used. - 1 : The law after the vertex is used. - 0 : Average of the both laws is used.)#"  , py::arg("Index"),  py::arg("InputVertex"),  py::arg("TolMin"),  py::arg("OutputVertex"),  py::arg("Location")=static_cast<const Standard_Integer>(0)
          )
        .def("IsClosed",
             (Standard_Boolean (BRepFill_LocationLaw::*)() const) static_cast<Standard_Boolean (BRepFill_LocationLaw::*)() const>(&BRepFill_LocationLaw::IsClosed),
             R"#(None)#" 
          )
        .def("IsG1",
             (Standard_Integer (BRepFill_LocationLaw::*)( const Standard_Integer ,  const Standard_Real ,  const Standard_Real  ) const) static_cast<Standard_Integer (BRepFill_LocationLaw::*)( const Standard_Integer ,  const Standard_Real ,  const Standard_Real  ) const>(&BRepFill_LocationLaw::IsG1),
             R"#(Compute the Law's continuity between 2 edges of the path The result can be : -1 : Case Not connex 0 : It is connex (G0) 1 : It is tangent (G1))#"  , py::arg("Index"),  py::arg("SpatialTolerance")=static_cast<const Standard_Real>(1.0e-7),  py::arg("AngularTolerance")=static_cast<const Standard_Real>(1.0e-4)
          )
        .def("D0",
             (void (BRepFill_LocationLaw::*)( const Standard_Real ,  TopoDS_Shape &  ) ) static_cast<void (BRepFill_LocationLaw::*)( const Standard_Real ,  TopoDS_Shape &  ) >(&BRepFill_LocationLaw::D0),
             R"#(Apply the Law to a shape, for a given Curvilinear abscissa)#"  , py::arg("Abscissa"),  py::arg("Section")
          )
        .def("Abscissa",
             (Standard_Real (BRepFill_LocationLaw::*)( const Standard_Integer ,  const Standard_Real  ) ) static_cast<Standard_Real (BRepFill_LocationLaw::*)( const Standard_Integer ,  const Standard_Real  ) >(&BRepFill_LocationLaw::Abscissa),
             R"#(Return the curvilinear abscissa corresponding to a point of the path, defined by <Index> of Edge and a parameter on the edge.)#"  , py::arg("Index"),  py::arg("Param")
          )
    // methods using call by reference i.s.o. return
        .def("CurvilinearBounds",
             []( BRepFill_LocationLaw &self , const Standard_Integer Index ){
                 Standard_Real  First;
                Standard_Real  Last;

                 self.CurvilinearBounds(Index,First,Last);
                 
                 return std::make_tuple(First,Last); },
             R"#(Return the Curvilinear Bounds of the <Index> Law)#"  , py::arg("Index")
          )
        .def("Parameter",
             []( BRepFill_LocationLaw &self , const Standard_Real Abscissa ){
                 Standard_Integer  Index;
                Standard_Real  Param;

                 self.Parameter(Abscissa,Index,Param);
                 
                 return std::make_tuple(Index,Param); },
             R"#(Find the index Law and the parameter, for a given Curvilinear abscissa)#"  , py::arg("Abscissa")
          )
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepFill_LocationLaw::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_LocationLaw::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("Wire",
             (const TopoDS_Wire & (BRepFill_LocationLaw::*)() const) static_cast<const TopoDS_Wire & (BRepFill_LocationLaw::*)() const>(&BRepFill_LocationLaw::Wire),
             R"#(return the path)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepFill_LocationLaw::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_LocationLaw::*)() const>(&BRepFill_LocationLaw::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_MultiLine , shared_ptr<BRepFill_MultiLine>  , AppCont_Function >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Face &,const TopoDS_Face &,const TopoDS_Edge &,const TopoDS_Edge &,const Standard_Boolean,const Standard_Boolean,const opencascade::handle<Geom2d_Curve> & >()  , py::arg("Face1"),  py::arg("Face2"),  py::arg("Edge1"),  py::arg("Edge2"),  py::arg("Inv1"),  py::arg("Inv2"),  py::arg("Bissec") )
    // custom constructors
    // methods
        .def("IsParticularCase",
             (Standard_Boolean (BRepFill_MultiLine::*)() const) static_cast<Standard_Boolean (BRepFill_MultiLine::*)() const>(&BRepFill_MultiLine::IsParticularCase),
             R"#(Search if the Projection of the Bissectrice on the faces needs an approximation or not. Returns true if the approximation is not needed.)#" 
          )
        .def("Continuity",
             (GeomAbs_Shape (BRepFill_MultiLine::*)() const) static_cast<GeomAbs_Shape (BRepFill_MultiLine::*)() const>(&BRepFill_MultiLine::Continuity),
             R"#(Returns the continuity betwwen the two faces seShape from GeomAbsparated by myBis.)#" 
          )
        .def("FirstParameter",
             (Standard_Real (BRepFill_MultiLine::*)() const) static_cast<Standard_Real (BRepFill_MultiLine::*)() const>(&BRepFill_MultiLine::FirstParameter),
             R"#(returns the first parameter of the Bissectrice.)#" 
          )
        .def("LastParameter",
             (Standard_Real (BRepFill_MultiLine::*)() const) static_cast<Standard_Real (BRepFill_MultiLine::*)() const>(&BRepFill_MultiLine::LastParameter),
             R"#(returns the last parameter of the Bissectrice.)#" 
          )
        .def("Value",
             (gp_Pnt (BRepFill_MultiLine::*)( const Standard_Real  ) const) static_cast<gp_Pnt (BRepFill_MultiLine::*)( const Standard_Real  ) const>(&BRepFill_MultiLine::Value),
             R"#(Returns the current point on the 3d curve)#"  , py::arg("U")
          )
        .def("ValueOnF1",
             (gp_Pnt2d (BRepFill_MultiLine::*)( const Standard_Real  ) const) static_cast<gp_Pnt2d (BRepFill_MultiLine::*)( const Standard_Real  ) const>(&BRepFill_MultiLine::ValueOnF1),
             R"#(returns the current point on the PCurve of the first face)#"  , py::arg("U")
          )
        .def("ValueOnF2",
             (gp_Pnt2d (BRepFill_MultiLine::*)( const Standard_Real  ) const) static_cast<gp_Pnt2d (BRepFill_MultiLine::*)( const Standard_Real  ) const>(&BRepFill_MultiLine::ValueOnF2),
             R"#(returns the current point on the PCurve of the first face)#"  , py::arg("U")
          )
        .def("Value3dOnF1OnF2",
             (void (BRepFill_MultiLine::*)( const Standard_Real ,  gp_Pnt & ,  gp_Pnt2d & ,  gp_Pnt2d &  ) const) static_cast<void (BRepFill_MultiLine::*)( const Standard_Real ,  gp_Pnt & ,  gp_Pnt2d & ,  gp_Pnt2d &  ) const>(&BRepFill_MultiLine::Value3dOnF1OnF2),
             R"#(None)#"  , py::arg("U"),  py::arg("P3d"),  py::arg("PF1"),  py::arg("PF2")
          )
        .def("Value",
             (Standard_Boolean (BRepFill_MultiLine::*)( const Standard_Real ,  NCollection_Array1<gp_Pnt2d> & ,  NCollection_Array1<gp_Pnt> &  ) const) static_cast<Standard_Boolean (BRepFill_MultiLine::*)( const Standard_Real ,  NCollection_Array1<gp_Pnt2d> & ,  NCollection_Array1<gp_Pnt> &  ) const>(&BRepFill_MultiLine::Value),
             R"#(Returns the point at parameter <theU>.)#"  , py::arg("theU"),  py::arg("thePnt2d"),  py::arg("thePnt")
          )
        .def("D1",
             (Standard_Boolean (BRepFill_MultiLine::*)( const Standard_Real ,  NCollection_Array1<gp_Vec2d> & ,  NCollection_Array1<gp_Vec> &  ) const) static_cast<Standard_Boolean (BRepFill_MultiLine::*)( const Standard_Real ,  NCollection_Array1<gp_Vec2d> & ,  NCollection_Array1<gp_Vec> &  ) const>(&BRepFill_MultiLine::D1),
             R"#(Returns the derivative at parameter <theU>.)#"  , py::arg("theU"),  py::arg("theVec2d"),  py::arg("theVec")
          )
    // methods using call by reference i.s.o. return
        .def("Curves",
             []( BRepFill_MultiLine &self , Geom_Curve& Curve,Geom2d_Curve& PCurve1,Geom2d_Curve& PCurve2 ){
                 opencascade::handle<Geom_Curve>  Curve_ptr; Curve_ptr = &Curve;
                opencascade::handle<Geom2d_Curve>  PCurve1_ptr; PCurve1_ptr = &PCurve1;
                opencascade::handle<Geom2d_Curve>  PCurve2_ptr; PCurve2_ptr = &PCurve2;

                 self.Curves(Curve_ptr,PCurve1_ptr,PCurve2_ptr);
                 if ( Curve_ptr.get() != &Curve ) copy_if_copy_constructible(Curve, *Curve_ptr);
                if ( PCurve1_ptr.get() != &PCurve1 ) copy_if_copy_constructible(PCurve1, *PCurve1_ptr);
                if ( PCurve2_ptr.get() != &PCurve2 ) copy_if_copy_constructible(PCurve2, *PCurve2_ptr);

                 return std::make_tuple(); },
             R"#(raises if IsParticularCase is <False>.)#"  , py::arg("Curve"),  py::arg("PCurve1"),  py::arg("PCurve2")
          )
    // 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 BRepFill_OffsetAncestors from ./opencascade/BRepFill_OffsetAncestors.hxx
    klass = m.attr("BRepFill_OffsetAncestors");


    // nested enums

    static_cast<py::class_<BRepFill_OffsetAncestors , shared_ptr<BRepFill_OffsetAncestors>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< BRepFill_OffsetWire & >()  , py::arg("Paral") )
    // custom constructors
    // methods
        .def("Perform",
             (void (BRepFill_OffsetAncestors::*)( BRepFill_OffsetWire &  ) ) static_cast<void (BRepFill_OffsetAncestors::*)( BRepFill_OffsetWire &  ) >(&BRepFill_OffsetAncestors::Perform),
             R"#(None)#"  , py::arg("Paral")
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_OffsetAncestors::*)() const) static_cast<Standard_Boolean (BRepFill_OffsetAncestors::*)() const>(&BRepFill_OffsetAncestors::IsDone),
             R"#(None)#" 
          )
        .def("HasAncestor",
             (Standard_Boolean (BRepFill_OffsetAncestors::*)( const TopoDS_Edge &  ) const) static_cast<Standard_Boolean (BRepFill_OffsetAncestors::*)( const TopoDS_Edge &  ) const>(&BRepFill_OffsetAncestors::HasAncestor),
             R"#(None)#"  , py::arg("S1")
          )
        .def("Ancestor",
             (const TopoDS_Shape & (BRepFill_OffsetAncestors::*)( const TopoDS_Edge &  ) const) static_cast<const TopoDS_Shape & (BRepFill_OffsetAncestors::*)( const TopoDS_Edge &  ) const>(&BRepFill_OffsetAncestors::Ancestor),
             R"#(may return a Null Shape if S1 is not a subShape of <Paral>; if Perform is not done.)#"  , py::arg("S1")
          )
    // 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 BRepFill_OffsetWire from ./opencascade/BRepFill_OffsetWire.hxx
    klass = m.attr("BRepFill_OffsetWire");


    // nested enums

    static_cast<py::class_<BRepFill_OffsetWire , shared_ptr<BRepFill_OffsetWire>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Face &,const GeomAbs_JoinType,const Standard_Boolean >()  , py::arg("Spine"),  py::arg("Join")=static_cast<const GeomAbs_JoinType>(GeomAbs_Arc),  py::arg("IsOpenResult")=static_cast<const Standard_Boolean>(Standard_False) )
    // custom constructors
    // methods
        .def("Init",
             (void (BRepFill_OffsetWire::*)( const TopoDS_Face & ,  const GeomAbs_JoinType ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_OffsetWire::*)( const TopoDS_Face & ,  const GeomAbs_JoinType ,  const Standard_Boolean  ) >(&BRepFill_OffsetWire::Init),
             R"#(Initialize the evaluation of Offsetting.)#"  , py::arg("Spine"),  py::arg("Join")=static_cast<const GeomAbs_JoinType>(GeomAbs_Arc),  py::arg("IsOpenResult")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("Perform",
             (void (BRepFill_OffsetWire::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_OffsetWire::*)( const Standard_Real ,  const Standard_Real  ) >(&BRepFill_OffsetWire::Perform),
             R"#(Performs an OffsetWire at an altitude <Alt> from the face ( According to the orientation of the face))#"  , py::arg("Offset"),  py::arg("Alt")=static_cast<const Standard_Real>(0.0)
          )
        .def("PerformWithBiLo",
             (void (BRepFill_OffsetWire::*)( const TopoDS_Face & ,  const Standard_Real ,  const BRepMAT2d_BisectingLocus & ,  BRepMAT2d_LinkTopoBilo & ,  const GeomAbs_JoinType ,  const Standard_Real  ) ) static_cast<void (BRepFill_OffsetWire::*)( const TopoDS_Face & ,  const Standard_Real ,  const BRepMAT2d_BisectingLocus & ,  BRepMAT2d_LinkTopoBilo & ,  const GeomAbs_JoinType ,  const Standard_Real  ) >(&BRepFill_OffsetWire::PerformWithBiLo),
             R"#(Performs an OffsetWire)#"  , py::arg("WSP"),  py::arg("Offset"),  py::arg("Locus"),  py::arg("Link"),  py::arg("Join")=static_cast<const GeomAbs_JoinType>(GeomAbs_Arc),  py::arg("Alt")=static_cast<const Standard_Real>(0.0)
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_OffsetWire::*)() const) static_cast<Standard_Boolean (BRepFill_OffsetWire::*)() const>(&BRepFill_OffsetWire::IsDone),
             R"#(None)#" 
          )
        .def("GeneratedShapes",
             (const TopTools_ListOfShape & (BRepFill_OffsetWire::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (BRepFill_OffsetWire::*)( const TopoDS_Shape &  ) >(&BRepFill_OffsetWire::GeneratedShapes),
             R"#(Returns the shapes created from a subshape <SpineShape> of the spine. Returns the last computed Offset.)#"  , py::arg("SpineShape")
          )
        .def("JoinType",
             (GeomAbs_JoinType (BRepFill_OffsetWire::*)() const) static_cast<GeomAbs_JoinType (BRepFill_OffsetWire::*)() const>(&BRepFill_OffsetWire::JoinType),
             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("Spine",
             (const TopoDS_Face & (BRepFill_OffsetWire::*)() const) static_cast<const TopoDS_Face & (BRepFill_OffsetWire::*)() const>(&BRepFill_OffsetWire::Spine),
             R"#(None)#"
             
         )
       .def("Shape",
             (const TopoDS_Shape & (BRepFill_OffsetWire::*)() const) static_cast<const TopoDS_Shape & (BRepFill_OffsetWire::*)() const>(&BRepFill_OffsetWire::Shape),
             R"#(returns the generated shape.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_Pipe , shared_ptr<BRepFill_Pipe>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Wire &,const TopoDS_Shape &,const GeomFill_Trihedron,const Standard_Boolean,const Standard_Boolean >()  , py::arg("Spine"),  py::arg("Profile"),  py::arg("aMode")=static_cast<const GeomFill_Trihedron>(GeomFill_IsCorrectedFrenet),  py::arg("ForceApproxC1")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("GeneratePartCase")=static_cast<const Standard_Boolean>(Standard_False) )
    // custom constructors
    // methods
        .def("Perform",
             (void (BRepFill_Pipe::*)( const TopoDS_Wire & ,  const TopoDS_Shape & ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_Pipe::*)( const TopoDS_Wire & ,  const TopoDS_Shape & ,  const Standard_Boolean  ) >(&BRepFill_Pipe::Perform),
             R"#(None)#"  , py::arg("Spine"),  py::arg("Profile"),  py::arg("GeneratePartCase")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("ErrorOnSurface",
             (Standard_Real (BRepFill_Pipe::*)() const) static_cast<Standard_Real (BRepFill_Pipe::*)() const>(&BRepFill_Pipe::ErrorOnSurface),
             R"#(None)#" 
          )
        .def("Generated",
             (void (BRepFill_Pipe::*)( const TopoDS_Shape & ,  NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BRepFill_Pipe::*)( const TopoDS_Shape & ,  NCollection_List<TopoDS_Shape> &  ) >(&BRepFill_Pipe::Generated),
             R"#(Returns the list of shapes generated from the shape <S>.)#"  , py::arg("S"),  py::arg("L")
          )
        .def("Face",
             (TopoDS_Face (BRepFill_Pipe::*)( const TopoDS_Edge & ,  const TopoDS_Edge &  ) ) static_cast<TopoDS_Face (BRepFill_Pipe::*)( const TopoDS_Edge & ,  const TopoDS_Edge &  ) >(&BRepFill_Pipe::Face),
             R"#(Returns the face created from an edge of the spine and an edge of the profile. if the edges are not in the spine or the profile)#"  , py::arg("ESpine"),  py::arg("EProfile")
          )
        .def("Edge",
             (TopoDS_Edge (BRepFill_Pipe::*)( const TopoDS_Edge & ,  const TopoDS_Vertex &  ) ) static_cast<TopoDS_Edge (BRepFill_Pipe::*)( const TopoDS_Edge & ,  const TopoDS_Vertex &  ) >(&BRepFill_Pipe::Edge),
             R"#(Returns the edge created from an edge of the spine and a vertex of the profile. if the edge or the vertex are not in the spine or the profile.)#"  , py::arg("ESpine"),  py::arg("VProfile")
          )
        .def("Section",
             (TopoDS_Shape (BRepFill_Pipe::*)( const TopoDS_Vertex &  ) const) static_cast<TopoDS_Shape (BRepFill_Pipe::*)( const TopoDS_Vertex &  ) const>(&BRepFill_Pipe::Section),
             R"#(Returns the shape created from the profile at the position of the vertex VSpine. if the vertex is not in the Spine)#"  , py::arg("VSpine")
          )
        .def("PipeLine",
             (TopoDS_Wire (BRepFill_Pipe::*)( const gp_Pnt &  ) ) static_cast<TopoDS_Wire (BRepFill_Pipe::*)( const gp_Pnt &  ) >(&BRepFill_Pipe::PipeLine),
             R"#(Create a Wire by sweeping the Point along the <spine> if the <Spine> is undefined)#"  , py::arg("Point")
          )
    // 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("Spine",
             (const TopoDS_Shape & (BRepFill_Pipe::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Pipe::*)() const>(&BRepFill_Pipe::Spine),
             R"#(None)#"
             
         )
       .def("Profile",
             (const TopoDS_Shape & (BRepFill_Pipe::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Pipe::*)() const>(&BRepFill_Pipe::Profile),
             R"#(None)#"
             
         )
       .def("Shape",
             (const TopoDS_Shape & (BRepFill_Pipe::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Pipe::*)() const>(&BRepFill_Pipe::Shape),
             R"#(None)#"
             
         )
       .def("FirstShape",
             (const TopoDS_Shape & (BRepFill_Pipe::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Pipe::*)() const>(&BRepFill_Pipe::FirstShape),
             R"#(None)#"
             
         )
       .def("LastShape",
             (const TopoDS_Shape & (BRepFill_Pipe::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Pipe::*)() const>(&BRepFill_Pipe::LastShape),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_PipeShell ,opencascade::handle<BRepFill_PipeShell>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init< const TopoDS_Wire & >()  , py::arg("Spine") )
    // custom constructors
    // methods
        .def("Set",
             (void (BRepFill_PipeShell::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_PipeShell::*)( const Standard_Boolean  ) >(&BRepFill_PipeShell::Set),
             R"#(Set an Frenet or an CorrectedFrenet trihedron to perform the sweeping)#"  , py::arg("Frenet")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("SetDiscrete",
             (void (BRepFill_PipeShell::*)() ) static_cast<void (BRepFill_PipeShell::*)() >(&BRepFill_PipeShell::SetDiscrete),
             R"#(Set a Discrete trihedron to perform the sweeping)#" 
          )
        .def("Set",
             (void (BRepFill_PipeShell::*)( const gp_Ax2 &  ) ) static_cast<void (BRepFill_PipeShell::*)( const gp_Ax2 &  ) >(&BRepFill_PipeShell::Set),
             R"#(Set an fixed trihedron to perform the sweeping all sections will be parallel.)#"  , py::arg("Axe")
          )
        .def("Set",
             (void (BRepFill_PipeShell::*)( const gp_Dir &  ) ) static_cast<void (BRepFill_PipeShell::*)( const gp_Dir &  ) >(&BRepFill_PipeShell::Set),
             R"#(Set an fixed BiNormal direction to perform the sweeping)#"  , py::arg("BiNormal")
          )
        .def("Set",
             (Standard_Boolean (BRepFill_PipeShell::*)( const TopoDS_Shape &  ) ) static_cast<Standard_Boolean (BRepFill_PipeShell::*)( const TopoDS_Shape &  ) >(&BRepFill_PipeShell::Set),
             R"#(Set support to the spine to define the BiNormal at the spine, like the normal the surfaces. Warning: To be effective, Each edge of the <spine> must have an representation on one face of<SpineSupport>)#"  , py::arg("SpineSupport")
          )
        .def("Set",
             (void (BRepFill_PipeShell::*)( const TopoDS_Wire & ,  const Standard_Boolean ,  const BRepFill_TypeOfContact  ) ) static_cast<void (BRepFill_PipeShell::*)( const TopoDS_Wire & ,  const Standard_Boolean ,  const BRepFill_TypeOfContact  ) >(&BRepFill_PipeShell::Set),
             R"#(Set an auxiliary spine to define the Normal For each Point of the Spine P, an Point Q is evalued on <AuxiliarySpine> If <CurvilinearEquivalence> Q split <AuxiliarySpine> with the same length ratio than P split <Spline>. Else the plan define by P and the tangent to the <Spine> intersect <AuxiliarySpine> in Q. If <KeepContact> equals BRepFill_NoContact: The Normal is defined by the vector PQ. If <KeepContact> equals BRepFill_Contact: The Normal is defined to achieve that the sweeped section is in contact to the auxiliarySpine. The width of section is constant all along the path. In other words, the auxiliary spine lies on the swept surface, but not necessarily is a boundary of this surface. However, the auxiliary spine has to be close enough to the main spine to provide intersection with any section all along the path. If <KeepContact> equals BRepFill_ContactOnBorder: The auxiliary spine becomes a boundary of the swept surface and the width of section varies along the path.)#"  , py::arg("AuxiliarySpine"),  py::arg("CurvilinearEquivalence")=static_cast<const Standard_Boolean>(Standard_True),  py::arg("KeepContact")=static_cast<const BRepFill_TypeOfContact>(BRepFill_NoContact)
          )
        .def("SetMaxDegree",
             (void (BRepFill_PipeShell::*)( const Standard_Integer  ) ) static_cast<void (BRepFill_PipeShell::*)( const Standard_Integer  ) >(&BRepFill_PipeShell::SetMaxDegree),
             R"#(Define the maximum V degree of resulting surface)#"  , py::arg("NewMaxDegree")
          )
        .def("SetMaxSegments",
             (void (BRepFill_PipeShell::*)( const Standard_Integer  ) ) static_cast<void (BRepFill_PipeShell::*)( const Standard_Integer  ) >(&BRepFill_PipeShell::SetMaxSegments),
             R"#(Define the maximum number of spans in V-direction on resulting surface)#"  , py::arg("NewMaxSegments")
          )
        .def("SetForceApproxC1",
             (void (BRepFill_PipeShell::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_PipeShell::*)( const Standard_Boolean  ) >(&BRepFill_PipeShell::SetForceApproxC1),
             R"#(Set the flag that indicates attempt to approximate a C1-continuous surface if a swept surface proved to be C0. Give section to sweep. Possibilities are : - Give one or sevral profile - Give one profile and an homotetic law. - Automatic compute of correspondence between profile, and section on the sweeped shape - correspondence between profile, and section on the sweeped shape defined by a vertex of the spine)#"  , py::arg("ForceApproxC1")
          )
        .def("Add",
             (void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&BRepFill_PipeShell::Add),
             R"#(Set an section. The correspondence with the spine, will be automatically performed.)#"  , py::arg("Profile"),  py::arg("WithContact")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("WithCorrection")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("Add",
             (void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const TopoDS_Vertex & ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const TopoDS_Vertex & ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&BRepFill_PipeShell::Add),
             R"#(Set an section. The correspondence with the spine, is given by Location.)#"  , py::arg("Profile"),  py::arg("Location"),  py::arg("WithContact")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("WithCorrection")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("SetLaw",
             (void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const opencascade::handle<Law_Function> & ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const opencascade::handle<Law_Function> & ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&BRepFill_PipeShell::SetLaw),
             R"#(Set an section and an homotetic law. The homotetie's centers is given by point on the <Spine>.)#"  , py::arg("Profile"),  py::arg("L"),  py::arg("WithContact")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("WithCorrection")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("SetLaw",
             (void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const opencascade::handle<Law_Function> & ,  const TopoDS_Vertex & ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  const opencascade::handle<Law_Function> & ,  const TopoDS_Vertex & ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&BRepFill_PipeShell::SetLaw),
             R"#(Set an section and an homotetic law. The homotetie center is given by point on the <Spine>)#"  , py::arg("Profile"),  py::arg("L"),  py::arg("Location"),  py::arg("WithContact")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("WithCorrection")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("DeleteProfile",
             (void (BRepFill_PipeShell::*)( const TopoDS_Shape &  ) ) static_cast<void (BRepFill_PipeShell::*)( const TopoDS_Shape &  ) >(&BRepFill_PipeShell::DeleteProfile),
             R"#(Delete an section.)#"  , py::arg("Profile")
          )
        .def("IsReady",
             (Standard_Boolean (BRepFill_PipeShell::*)() const) static_cast<Standard_Boolean (BRepFill_PipeShell::*)() const>(&BRepFill_PipeShell::IsReady),
             R"#(Say if <me> is ready to build the shape return False if <me> do not have section definition)#" 
          )
        .def("GetStatus",
             (GeomFill_PipeError (BRepFill_PipeShell::*)() const) static_cast<GeomFill_PipeError (BRepFill_PipeShell::*)() const>(&BRepFill_PipeShell::GetStatus),
             R"#(Get a status, when Simulate or Build failed.)#" 
          )
        .def("SetTolerance",
             (void (BRepFill_PipeShell::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_PipeShell::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&BRepFill_PipeShell::SetTolerance),
             R"#(None)#"  , py::arg("Tol3d")=static_cast<const Standard_Real>(1.0e-4),  py::arg("BoundTol")=static_cast<const Standard_Real>(1.0e-4),  py::arg("TolAngular")=static_cast<const Standard_Real>(1.0e-2)
          )
        .def("SetTransition",
             (void (BRepFill_PipeShell::*)( const BRepFill_TransitionStyle ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_PipeShell::*)( const BRepFill_TransitionStyle ,  const Standard_Real ,  const Standard_Real  ) >(&BRepFill_PipeShell::SetTransition),
             R"#(Set the Transition Mode to manage discontinuities on the sweep.)#"  , py::arg("Mode")=static_cast<const BRepFill_TransitionStyle>(BRepFill_Modified),  py::arg("Angmin")=static_cast<const Standard_Real>(1.0e-2),  py::arg("Angmax")=static_cast<const Standard_Real>(6.0)
          )
        .def("Simulate",
             (void (BRepFill_PipeShell::*)( const Standard_Integer ,  NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BRepFill_PipeShell::*)( const Standard_Integer ,  NCollection_List<TopoDS_Shape> &  ) >(&BRepFill_PipeShell::Simulate),
             R"#(Perform simulation of the sweep : Somes Section are returned.)#"  , py::arg("NumberOfSection"),  py::arg("Sections")
          )
        .def("Build",
             (Standard_Boolean (BRepFill_PipeShell::*)() ) static_cast<Standard_Boolean (BRepFill_PipeShell::*)() >(&BRepFill_PipeShell::Build),
             R"#(Builds the resulting shape (redefined from MakeShape).)#" 
          )
        .def("MakeSolid",
             (Standard_Boolean (BRepFill_PipeShell::*)() ) static_cast<Standard_Boolean (BRepFill_PipeShell::*)() >(&BRepFill_PipeShell::MakeSolid),
             R"#(Transform the sweeping Shell in Solid. If the section are not closed returns False)#" 
          )
        .def("ErrorOnSurface",
             (Standard_Real (BRepFill_PipeShell::*)() const) static_cast<Standard_Real (BRepFill_PipeShell::*)() const>(&BRepFill_PipeShell::ErrorOnSurface),
             R"#(None)#" 
          )
        .def("Profiles",
             (void (BRepFill_PipeShell::*)( NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BRepFill_PipeShell::*)( NCollection_List<TopoDS_Shape> &  ) >(&BRepFill_PipeShell::Profiles),
             R"#(Returns the list of original profiles)#"  , py::arg("theProfiles")
          )
        .def("Generated",
             (void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BRepFill_PipeShell::*)( const TopoDS_Shape & ,  NCollection_List<TopoDS_Shape> &  ) >(&BRepFill_PipeShell::Generated),
             R"#(Returns the list of shapes generated from the shape <S>.)#"  , py::arg("S"),  py::arg("L")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepFill_PipeShell::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_PipeShell::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Shape",
             (const TopoDS_Shape & (BRepFill_PipeShell::*)() const) static_cast<const TopoDS_Shape & (BRepFill_PipeShell::*)() const>(&BRepFill_PipeShell::Shape),
             R"#(Returns the result Shape.)#"
             
         )
       .def("FirstShape",
             (const TopoDS_Shape & (BRepFill_PipeShell::*)() const) static_cast<const TopoDS_Shape & (BRepFill_PipeShell::*)() const>(&BRepFill_PipeShell::FirstShape),
             R"#(Returns the TopoDS Shape of the bottom of the sweep.)#"
             
         )
       .def("LastShape",
             (const TopoDS_Shape & (BRepFill_PipeShell::*)() const) static_cast<const TopoDS_Shape & (BRepFill_PipeShell::*)() const>(&BRepFill_PipeShell::LastShape),
             R"#(Returns the TopoDS Shape of the top of the sweep.)#"
             
         )
       .def("Spine",
             (const TopoDS_Wire & (BRepFill_PipeShell::*)() ) static_cast<const TopoDS_Wire & (BRepFill_PipeShell::*)() >(&BRepFill_PipeShell::Spine),
             R"#(Returns the spine)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepFill_PipeShell::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_PipeShell::*)() const>(&BRepFill_PipeShell::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_Section , shared_ptr<BRepFill_Section>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Shape &,const TopoDS_Vertex &,const Standard_Boolean,const Standard_Boolean >()  , py::arg("Profile"),  py::arg("V"),  py::arg("WithContact"),  py::arg("WithCorrection") )
    // custom constructors
    // methods
        .def("Set",
             (void (BRepFill_Section::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_Section::*)( const Standard_Boolean  ) >(&BRepFill_Section::Set),
             R"#(None)#"  , py::arg("IsLaw")
          )
        .def("ModifiedShape",
             (TopoDS_Shape (BRepFill_Section::*)( const TopoDS_Shape &  ) const) static_cast<TopoDS_Shape (BRepFill_Section::*)( const TopoDS_Shape &  ) const>(&BRepFill_Section::ModifiedShape),
             R"#(None)#"  , py::arg("theShape")
          )
        .def("IsLaw",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::IsLaw),
             R"#(None)#" 
          )
        .def("IsPunctual",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::IsPunctual),
             R"#(None)#" 
          )
        .def("WithContact",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::WithContact),
             R"#(None)#" 
          )
        .def("WithCorrection",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::WithCorrection),
             R"#(None)#" 
          )
        .def("IsLaw",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::IsLaw),
             R"#(None)#" 
          )
        .def("IsPunctual",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::IsPunctual),
             R"#(None)#" 
          )
        .def("WithContact",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::WithContact),
             R"#(None)#" 
          )
        .def("WithCorrection",
             (Standard_Boolean (BRepFill_Section::*)() const) static_cast<Standard_Boolean (BRepFill_Section::*)() const>(&BRepFill_Section::WithCorrection),
             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("OriginalShape",
             (const TopoDS_Shape & (BRepFill_Section::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Section::*)() const>(&BRepFill_Section::OriginalShape),
             R"#(None)#"
             
         )
       .def("Wire",
             (const TopoDS_Wire & (BRepFill_Section::*)() const) static_cast<const TopoDS_Wire & (BRepFill_Section::*)() const>(&BRepFill_Section::Wire),
             R"#(None)#"
             
         )
       .def("Vertex",
             (const TopoDS_Vertex & (BRepFill_Section::*)() const) static_cast<const TopoDS_Vertex & (BRepFill_Section::*)() const>(&BRepFill_Section::Vertex),
             R"#(None)#"
             
         )
       .def("OriginalShape",
             (const TopoDS_Shape & (BRepFill_Section::*)() const) static_cast<const TopoDS_Shape & (BRepFill_Section::*)() const>(&BRepFill_Section::OriginalShape),
             R"#(None)#"
             
         )
       .def("Wire",
             (const TopoDS_Wire & (BRepFill_Section::*)() const) static_cast<const TopoDS_Wire & (BRepFill_Section::*)() const>(&BRepFill_Section::Wire),
             R"#(None)#"
             
         )
       .def("Vertex",
             (const TopoDS_Vertex & (BRepFill_Section::*)() const) static_cast<const TopoDS_Vertex & (BRepFill_Section::*)() const>(&BRepFill_Section::Vertex),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_SectionLaw ,opencascade::handle<BRepFill_SectionLaw> ,Py_BRepFill_SectionLaw , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("NbLaw",
             (Standard_Integer (BRepFill_SectionLaw::*)() const) static_cast<Standard_Integer (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::NbLaw),
             R"#(None)#" 
          )
        .def("Law",
             (const opencascade::handle<GeomFill_SectionLaw> & (BRepFill_SectionLaw::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<GeomFill_SectionLaw> & (BRepFill_SectionLaw::*)( const Standard_Integer  ) const>(&BRepFill_SectionLaw::Law),
             R"#(None)#"  , py::arg("Index")
          )
        .def("IndexOfEdge",
             (Standard_Integer (BRepFill_SectionLaw::*)( const TopoDS_Shape &  ) const) static_cast<Standard_Integer (BRepFill_SectionLaw::*)( const TopoDS_Shape &  ) const>(&BRepFill_SectionLaw::IndexOfEdge),
             R"#(None)#"  , py::arg("anEdge")
          )
        .def("IsConstant",
             (Standard_Boolean (BRepFill_SectionLaw::*)() const) static_cast<Standard_Boolean (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::IsConstant),
             R"#(None)#" 
          )
        .def("IsUClosed",
             (Standard_Boolean (BRepFill_SectionLaw::*)() const) static_cast<Standard_Boolean (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::IsUClosed),
             R"#(None)#" 
          )
        .def("IsVClosed",
             (Standard_Boolean (BRepFill_SectionLaw::*)() const) static_cast<Standard_Boolean (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::IsVClosed),
             R"#(None)#" 
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_SectionLaw::*)() const) static_cast<Standard_Boolean (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::IsDone),
             R"#(None)#" 
          )
        .def("IsVertex",
             (Standard_Boolean (BRepFill_SectionLaw::*)() const) static_cast<Standard_Boolean (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::IsVertex),
             R"#(Say if the input shape is a vertex.)#" 
          )
        .def("ConcatenedLaw",
             (opencascade::handle<GeomFill_SectionLaw> (BRepFill_SectionLaw::*)() const) static_cast<opencascade::handle<GeomFill_SectionLaw> (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::ConcatenedLaw),
             R"#(None)#" 
          )
        .def("Continuity",
             (GeomAbs_Shape (BRepFill_SectionLaw::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<GeomAbs_Shape (BRepFill_SectionLaw::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_SectionLaw::Continuity),
             R"#(None)#"  , py::arg("Index"),  py::arg("TolAngular")
          )
        .def("VertexTol",
             (Standard_Real (BRepFill_SectionLaw::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<Standard_Real (BRepFill_SectionLaw::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_SectionLaw::VertexTol),
             R"#(None)#"  , py::arg("Index"),  py::arg("Param")
          )
        .def("Vertex",
             (TopoDS_Vertex (BRepFill_SectionLaw::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<TopoDS_Vertex (BRepFill_SectionLaw::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_SectionLaw::Vertex),
             R"#(None)#"  , py::arg("Index"),  py::arg("Param")
          )
        .def("D0",
             (void (BRepFill_SectionLaw::*)( const Standard_Real ,  TopoDS_Shape &  ) ) static_cast<void (BRepFill_SectionLaw::*)( const Standard_Real ,  TopoDS_Shape &  ) >(&BRepFill_SectionLaw::D0),
             R"#(None)#"  , py::arg("U"),  py::arg("S")
          )
        .def("Init",
             (void (BRepFill_SectionLaw::*)( const TopoDS_Wire &  ) ) static_cast<void (BRepFill_SectionLaw::*)( const TopoDS_Wire &  ) >(&BRepFill_SectionLaw::Init),
             R"#(None)#"  , py::arg("W")
          )
        .def("CurrentEdge",
             (TopoDS_Edge (BRepFill_SectionLaw::*)() ) static_cast<TopoDS_Edge (BRepFill_SectionLaw::*)() >(&BRepFill_SectionLaw::CurrentEdge),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepFill_SectionLaw::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_SectionLaw::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> & (BRepFill_SectionLaw::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_SectionLaw::*)() const>(&BRepFill_SectionLaw::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_SectionPlacement , shared_ptr<BRepFill_SectionPlacement>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<BRepFill_LocationLaw> &,const TopoDS_Shape &,const Standard_Boolean,const Standard_Boolean >()  , py::arg("Law"),  py::arg("Section"),  py::arg("WithContact")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("WithCorrection")=static_cast<const Standard_Boolean>(Standard_False) )
        .def(py::init< const opencascade::handle<BRepFill_LocationLaw> &,const TopoDS_Shape &,const TopoDS_Shape &,const Standard_Boolean,const Standard_Boolean >()  , py::arg("Law"),  py::arg("Section"),  py::arg("Vertex"),  py::arg("WithContact")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("WithCorrection")=static_cast<const Standard_Boolean>(Standard_False) )
    // custom constructors
    // methods
        .def("AbscissaOnPath",
             (Standard_Real (BRepFill_SectionPlacement::*)() ) static_cast<Standard_Real (BRepFill_SectionPlacement::*)() >(&BRepFill_SectionPlacement::AbscissaOnPath),
             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("Transformation",
             (const gp_Trsf & (BRepFill_SectionPlacement::*)() const) static_cast<const gp_Trsf & (BRepFill_SectionPlacement::*)() const>(&BRepFill_SectionPlacement::Transformation),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_Sweep , shared_ptr<BRepFill_Sweep>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<BRepFill_SectionLaw> &,const opencascade::handle<BRepFill_LocationLaw> &,const Standard_Boolean >()  , py::arg("Section"),  py::arg("Location"),  py::arg("WithKPart") )
    // custom constructors
    // methods
        .def("SetBounds",
             (void (BRepFill_Sweep::*)( const TopoDS_Wire & ,  const TopoDS_Wire &  ) ) static_cast<void (BRepFill_Sweep::*)( const TopoDS_Wire & ,  const TopoDS_Wire &  ) >(&BRepFill_Sweep::SetBounds),
             R"#(None)#"  , py::arg("FirstShape"),  py::arg("LastShape")
          )
        .def("SetTolerance",
             (void (BRepFill_Sweep::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_Sweep::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&BRepFill_Sweep::SetTolerance),
             R"#(Set Approximation Tolerance Tol3d : Tolerance to surface approximation Tol2d : Tolerance used to perform curve approximation Normally the 2d curve are approximated with a tolerance given by the resolution on support surfaces, but if this tolerance is too large Tol2d is used. TolAngular : Tolerance (in radian) to control the angle between tangents on the section law and tangent of iso-v on approximated surface)#"  , py::arg("Tol3d"),  py::arg("BoundTol")=static_cast<const Standard_Real>(1.0),  py::arg("Tol2d")=static_cast<const Standard_Real>(1.0e-5),  py::arg("TolAngular")=static_cast<const Standard_Real>(1.0e-2)
          )
        .def("SetAngularControl",
             (void (BRepFill_Sweep::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (BRepFill_Sweep::*)( const Standard_Real ,  const Standard_Real  ) >(&BRepFill_Sweep::SetAngularControl),
             R"#(Tolerance To controle Corner management.)#"  , py::arg("AngleMin")=static_cast<const Standard_Real>(0.01),  py::arg("AngleMax")=static_cast<const Standard_Real>(6.0)
          )
        .def("SetForceApproxC1",
             (void (BRepFill_Sweep::*)( const Standard_Boolean  ) ) static_cast<void (BRepFill_Sweep::*)( const Standard_Boolean  ) >(&BRepFill_Sweep::SetForceApproxC1),
             R"#(Set the flag that indicates attempt to approximate a C1-continuous surface if a swept surface proved to be C0.)#"  , py::arg("ForceApproxC1")
          )
        .def("Build",
             (void (BRepFill_Sweep::*)( NCollection_Map<TopoDS_Shape, TopTools_ShapeMapHasher> & ,  NCollection_DataMap<TopoDS_Shape, opencascade::handle<TopTools_HArray2OfShape>, TopTools_ShapeMapHasher> & ,  NCollection_DataMap<TopoDS_Shape, opencascade::handle<TopTools_HArray2OfShape>, TopTools_ShapeMapHasher> & ,  const BRepFill_TransitionStyle ,  const GeomAbs_Shape ,  const GeomFill_ApproxStyle ,  const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (BRepFill_Sweep::*)( NCollection_Map<TopoDS_Shape, TopTools_ShapeMapHasher> & ,  NCollection_DataMap<TopoDS_Shape, opencascade::handle<TopTools_HArray2OfShape>, TopTools_ShapeMapHasher> & ,  NCollection_DataMap<TopoDS_Shape, opencascade::handle<TopTools_HArray2OfShape>, TopTools_ShapeMapHasher> & ,  const BRepFill_TransitionStyle ,  const GeomAbs_Shape ,  const GeomFill_ApproxStyle ,  const Standard_Integer ,  const Standard_Integer  ) >(&BRepFill_Sweep::Build),
             R"#(Build the Sweep Surface Transition define Transition strategy Approx define Approximation Strategy - GeomFill_Section : The composed Function Location X Section is directly approximated. - GeomFill_Location : The location law is approximated, and the SweepSurface is bulid algebric composition of approximated location law and section law This option is Ok, if Section.Surface() methode is effective. Continuity : The continuity in v waiting on the surface Degmax : The maximum degree in v required on the surface Segmax : The maximum number of span in v required on the surface.)#"  , py::arg("ReversedEdges"),  py::arg("Tapes"),  py::arg("Rails"),  py::arg("Transition")=static_cast<const BRepFill_TransitionStyle>(BRepFill_Modified),  py::arg("Continuity")=static_cast<const GeomAbs_Shape>(GeomAbs_C2),  py::arg("Approx")=static_cast<const GeomFill_ApproxStyle>(GeomFill_Location),  py::arg("Degmax")=static_cast<const Standard_Integer>(11),  py::arg("Segmax")=static_cast<const Standard_Integer>(30)
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_Sweep::*)() const) static_cast<Standard_Boolean (BRepFill_Sweep::*)() const>(&BRepFill_Sweep::IsDone),
             R"#(Say if the Shape is Build.)#" 
          )
        .def("Shape",
             (TopoDS_Shape (BRepFill_Sweep::*)() const) static_cast<TopoDS_Shape (BRepFill_Sweep::*)() const>(&BRepFill_Sweep::Shape),
             R"#(returns the Sweeping Shape)#" 
          )
        .def("ErrorOnSurface",
             (Standard_Real (BRepFill_Sweep::*)() const) static_cast<Standard_Real (BRepFill_Sweep::*)() const>(&BRepFill_Sweep::ErrorOnSurface),
             R"#(Get the Approximation error.)#" 
          )
        .def("SubShape",
             (opencascade::handle<TopTools_HArray2OfShape> (BRepFill_Sweep::*)() const) static_cast<opencascade::handle<TopTools_HArray2OfShape> (BRepFill_Sweep::*)() const>(&BRepFill_Sweep::SubShape),
             R"#(None)#" 
          )
        .def("InterFaces",
             (opencascade::handle<TopTools_HArray2OfShape> (BRepFill_Sweep::*)() const) static_cast<opencascade::handle<TopTools_HArray2OfShape> (BRepFill_Sweep::*)() const>(&BRepFill_Sweep::InterFaces),
             R"#(None)#" 
          )
        .def("Sections",
             (opencascade::handle<TopTools_HArray2OfShape> (BRepFill_Sweep::*)() const) static_cast<opencascade::handle<TopTools_HArray2OfShape> (BRepFill_Sweep::*)() const>(&BRepFill_Sweep::Sections),
             R"#(None)#" 
          )
        .def("Tape",
             (TopoDS_Shape (BRepFill_Sweep::*)( const Standard_Integer  ) const) static_cast<TopoDS_Shape (BRepFill_Sweep::*)( const Standard_Integer  ) const>(&BRepFill_Sweep::Tape),
             R"#(returns the Tape corresponding to Index-th edge of section)#"  , py::arg("Index")
          )
    // 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 BRepFill_TrimEdgeTool from ./opencascade/BRepFill_TrimEdgeTool.hxx
    klass = m.attr("BRepFill_TrimEdgeTool");


    // nested enums

    static_cast<py::class_<BRepFill_TrimEdgeTool , shared_ptr<BRepFill_TrimEdgeTool>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const Bisector_Bisec &,const opencascade::handle<Geom2d_Geometry> &,const opencascade::handle<Geom2d_Geometry> &,const Standard_Real >()  , py::arg("Bisec"),  py::arg("S1"),  py::arg("S2"),  py::arg("Offset") )
    // custom constructors
    // methods
        .def("IntersectWith",
             (void (BRepFill_TrimEdgeTool::*)( const TopoDS_Edge & ,  const TopoDS_Edge & ,  const TopoDS_Shape & ,  const TopoDS_Shape & ,  const TopoDS_Vertex & ,  const TopoDS_Vertex & ,  const GeomAbs_JoinType ,  const Standard_Boolean ,  NCollection_Sequence<gp_Pnt> &  ) ) static_cast<void (BRepFill_TrimEdgeTool::*)( const TopoDS_Edge & ,  const TopoDS_Edge & ,  const TopoDS_Shape & ,  const TopoDS_Shape & ,  const TopoDS_Vertex & ,  const TopoDS_Vertex & ,  const GeomAbs_JoinType ,  const Standard_Boolean ,  NCollection_Sequence<gp_Pnt> &  ) >(&BRepFill_TrimEdgeTool::IntersectWith),
             R"#(None)#"  , py::arg("Edge1"),  py::arg("Edge2"),  py::arg("InitShape1"),  py::arg("InitShape2"),  py::arg("End1"),  py::arg("End2"),  py::arg("theJoinType"),  py::arg("IsOpenResult"),  py::arg("Params")
          )
        .def("AddOrConfuse",
             (void (BRepFill_TrimEdgeTool::*)( const Standard_Boolean ,  const TopoDS_Edge & ,  const TopoDS_Edge & ,  NCollection_Sequence<gp_Pnt> &  ) const) static_cast<void (BRepFill_TrimEdgeTool::*)( const Standard_Boolean ,  const TopoDS_Edge & ,  const TopoDS_Edge & ,  NCollection_Sequence<gp_Pnt> &  ) const>(&BRepFill_TrimEdgeTool::AddOrConfuse),
             R"#(None)#"  , py::arg("Start"),  py::arg("Edge1"),  py::arg("Edge2"),  py::arg("Params")
          )
        .def("IsInside",
             (Standard_Boolean (BRepFill_TrimEdgeTool::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (BRepFill_TrimEdgeTool::*)( const gp_Pnt2d &  ) const>(&BRepFill_TrimEdgeTool::IsInside),
             R"#(None)#"  , py::arg("P")
          )
    // 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 BRepFill_TrimShellCorner from ./opencascade/BRepFill_TrimShellCorner.hxx
    klass = m.attr("BRepFill_TrimShellCorner");


    // nested enums

    static_cast<py::class_<BRepFill_TrimShellCorner , shared_ptr<BRepFill_TrimShellCorner>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<TopTools_HArray2OfShape> &,const BRepFill_TransitionStyle,const gp_Ax2 &,const gp_Vec & >()  , py::arg("theFaces"),  py::arg("theTransition"),  py::arg("theAxeOfBisPlane"),  py::arg("theIntPointCrossDir") )
    // custom constructors
    // methods
        .def("AddBounds",
             (void (BRepFill_TrimShellCorner::*)( const opencascade::handle<TopTools_HArray2OfShape> &  ) ) static_cast<void (BRepFill_TrimShellCorner::*)( const opencascade::handle<TopTools_HArray2OfShape> &  ) >(&BRepFill_TrimShellCorner::AddBounds),
             R"#(None)#"  , py::arg("Bounds")
          )
        .def("AddUEdges",
             (void (BRepFill_TrimShellCorner::*)( const opencascade::handle<TopTools_HArray2OfShape> &  ) ) static_cast<void (BRepFill_TrimShellCorner::*)( const opencascade::handle<TopTools_HArray2OfShape> &  ) >(&BRepFill_TrimShellCorner::AddUEdges),
             R"#(None)#"  , py::arg("theUEdges")
          )
        .def("AddVEdges",
             (void (BRepFill_TrimShellCorner::*)( const opencascade::handle<TopTools_HArray2OfShape> & ,  const Standard_Integer  ) ) static_cast<void (BRepFill_TrimShellCorner::*)( const opencascade::handle<TopTools_HArray2OfShape> & ,  const Standard_Integer  ) >(&BRepFill_TrimShellCorner::AddVEdges),
             R"#(None)#"  , py::arg("theVEdges"),  py::arg("theIndex")
          )
        .def("Perform",
             (void (BRepFill_TrimShellCorner::*)() ) static_cast<void (BRepFill_TrimShellCorner::*)() >(&BRepFill_TrimShellCorner::Perform),
             R"#(None)#" 
          )
        .def("IsDone",
             (Standard_Boolean (BRepFill_TrimShellCorner::*)() const) static_cast<Standard_Boolean (BRepFill_TrimShellCorner::*)() const>(&BRepFill_TrimShellCorner::IsDone),
             R"#(None)#" 
          )
        .def("HasSection",
             (Standard_Boolean (BRepFill_TrimShellCorner::*)() const) static_cast<Standard_Boolean (BRepFill_TrimShellCorner::*)() const>(&BRepFill_TrimShellCorner::HasSection),
             R"#(None)#" 
          )
        .def("Modified",
             (void (BRepFill_TrimShellCorner::*)( const TopoDS_Shape & ,  NCollection_List<TopoDS_Shape> &  ) ) static_cast<void (BRepFill_TrimShellCorner::*)( const TopoDS_Shape & ,  NCollection_List<TopoDS_Shape> &  ) >(&BRepFill_TrimShellCorner::Modified),
             R"#(None)#"  , py::arg("S"),  py::arg("theModified")
          )
    // 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 BRepFill_TrimSurfaceTool from ./opencascade/BRepFill_TrimSurfaceTool.hxx
    klass = m.attr("BRepFill_TrimSurfaceTool");


    // nested enums

    static_cast<py::class_<BRepFill_TrimSurfaceTool , shared_ptr<BRepFill_TrimSurfaceTool>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Geom2d_Curve> &,const TopoDS_Face &,const TopoDS_Face &,const TopoDS_Edge &,const TopoDS_Edge &,const Standard_Boolean,const Standard_Boolean >()  , py::arg("Bis"),  py::arg("Face1"),  py::arg("Face2"),  py::arg("Edge1"),  py::arg("Edge2"),  py::arg("Inv1"),  py::arg("Inv2") )
    // custom constructors
    // methods
        .def("IntersectWith",
             (void (BRepFill_TrimSurfaceTool::*)( const TopoDS_Edge & ,  const TopoDS_Edge & ,  NCollection_Sequence<gp_Pnt> &  ) const) static_cast<void (BRepFill_TrimSurfaceTool::*)( const TopoDS_Edge & ,  const TopoDS_Edge & ,  NCollection_Sequence<gp_Pnt> &  ) const>(&BRepFill_TrimSurfaceTool::IntersectWith),
             R"#(Intersect <Bis> with the projection of the edges <EdgeOnFi> and returns the intersecting parameters on Bis and on the edges P.X() : Parameter on Bis P.Y() : Parameter on EdgeOnF1 P.Z() : Parameter on EdgeOnF2 raises if <Edge> is not a edge of Face1 or Face2.)#"  , py::arg("EdgeOnF1"),  py::arg("EdgeOnF2"),  py::arg("Points")
          )
        .def("IsOnFace",
             (Standard_Boolean (BRepFill_TrimSurfaceTool::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (BRepFill_TrimSurfaceTool::*)( const gp_Pnt2d &  ) const>(&BRepFill_TrimSurfaceTool::IsOnFace),
             R"#(returns True if the Line (P, DZ) intersect the Faces)#"  , py::arg("Point")
          )
        .def("ProjOn",
             (Standard_Real (BRepFill_TrimSurfaceTool::*)( const gp_Pnt2d & ,  const TopoDS_Edge &  ) const) static_cast<Standard_Real (BRepFill_TrimSurfaceTool::*)( const gp_Pnt2d & ,  const TopoDS_Edge &  ) const>(&BRepFill_TrimSurfaceTool::ProjOn),
             R"#(returns the parameter of the point <Point> on the Edge <Edge>, assuming that the point is on the edge.)#"  , py::arg("Point"),  py::arg("Edge")
          )
    // methods using call by reference i.s.o. return
        .def("Project",
             []( BRepFill_TrimSurfaceTool &self , const Standard_Real U1,const Standard_Real U2,Geom_Curve& Curve,Geom2d_Curve& PCurve1,Geom2d_Curve& PCurve2,GeomAbs_Shape & myCont ){
                 opencascade::handle<Geom_Curve>  Curve_ptr; Curve_ptr = &Curve;
                opencascade::handle<Geom2d_Curve>  PCurve1_ptr; PCurve1_ptr = &PCurve1;
                opencascade::handle<Geom2d_Curve>  PCurve2_ptr; PCurve2_ptr = &PCurve2;

                 self.Project(U1,U2,Curve_ptr,PCurve1_ptr,PCurve2_ptr,myCont);
                 if ( Curve_ptr.get() != &Curve ) copy_if_copy_constructible(Curve, *Curve_ptr);
                if ( PCurve1_ptr.get() != &PCurve1 ) copy_if_copy_constructible(PCurve1, *PCurve1_ptr);
                if ( PCurve2_ptr.get() != &PCurve2 ) copy_if_copy_constructible(PCurve2, *PCurve2_ptr);

                 return std::make_tuple(); },
             R"#(None)#"  , py::arg("U1"),  py::arg("U2"),  py::arg("Curve"),  py::arg("PCurve1"),  py::arg("PCurve2"),  py::arg("myCont")
          )
    // 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 BRepFill_ACRLaw from ./opencascade/BRepFill_ACRLaw.hxx
    klass = m.attr("BRepFill_ACRLaw");


    // nested enums

    static_cast<py::class_<BRepFill_ACRLaw ,opencascade::handle<BRepFill_ACRLaw>  , BRepFill_LocationLaw >>(klass)
    // constructors
        .def(py::init< const TopoDS_Wire &,const opencascade::handle<GeomFill_LocationGuide> & >()  , py::arg("Path"),  py::arg("Law") )
    // 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 * (*)() >(&BRepFill_ACRLaw::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_ACRLaw::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> & (BRepFill_ACRLaw::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_ACRLaw::*)() const>(&BRepFill_ACRLaw::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_Edge3DLaw ,opencascade::handle<BRepFill_Edge3DLaw>  , BRepFill_LocationLaw >>(klass)
    // constructors
        .def(py::init< const TopoDS_Wire &,const opencascade::handle<GeomFill_LocationLaw> & >()  , py::arg("Path"),  py::arg("Law") )
    // 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 * (*)() >(&BRepFill_Edge3DLaw::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_Edge3DLaw::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> & (BRepFill_Edge3DLaw::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_Edge3DLaw::*)() const>(&BRepFill_Edge3DLaw::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_EdgeOnSurfLaw ,opencascade::handle<BRepFill_EdgeOnSurfLaw>  , BRepFill_LocationLaw >>(klass)
    // constructors
        .def(py::init< const TopoDS_Wire &,const TopoDS_Shape & >()  , py::arg("Path"),  py::arg("Surf") )
    // custom constructors
    // methods
        .def("HasResult",
             (Standard_Boolean (BRepFill_EdgeOnSurfLaw::*)() const) static_cast<Standard_Boolean (BRepFill_EdgeOnSurfLaw::*)() const>(&BRepFill_EdgeOnSurfLaw::HasResult),
             R"#(returns <False> if one Edge of <Path> do not have representation on <Surf>. In this case it is impossible to use this object.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepFill_EdgeOnSurfLaw::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_EdgeOnSurfLaw::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> & (BRepFill_EdgeOnSurfLaw::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_EdgeOnSurfLaw::*)() const>(&BRepFill_EdgeOnSurfLaw::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_NSections ,opencascade::handle<BRepFill_NSections>  , BRepFill_SectionLaw >>(klass)
    // constructors
        .def(py::init<  const NCollection_Sequence<TopoDS_Shape> &,const Standard_Boolean >()  , py::arg("S"),  py::arg("Build")=static_cast<const Standard_Boolean>(Standard_True) )
        .def(py::init<  const NCollection_Sequence<TopoDS_Shape> &, const NCollection_Sequence<gp_Trsf> &, const NCollection_Sequence<Standard_Real> &,const Standard_Real,const Standard_Real,const Standard_Boolean >()  , py::arg("S"),  py::arg("Trsfs"),  py::arg("P"),  py::arg("VF"),  py::arg("VL"),  py::arg("Build")=static_cast<const Standard_Boolean>(Standard_True) )
    // custom constructors
    // methods
        .def("IsVertex",
             (Standard_Boolean (BRepFill_NSections::*)() const) static_cast<Standard_Boolean (BRepFill_NSections::*)() const>(&BRepFill_NSections::IsVertex),
             R"#(Say if the input shape is a vertex.)#" 
          )
        .def("IsConstant",
             (Standard_Boolean (BRepFill_NSections::*)() const) static_cast<Standard_Boolean (BRepFill_NSections::*)() const>(&BRepFill_NSections::IsConstant),
             R"#(Say if the Law is Constant.)#" 
          )
        .def("ConcatenedLaw",
             (opencascade::handle<GeomFill_SectionLaw> (BRepFill_NSections::*)() const) static_cast<opencascade::handle<GeomFill_SectionLaw> (BRepFill_NSections::*)() const>(&BRepFill_NSections::ConcatenedLaw),
             R"#(Give the law build on a concatenated section)#" 
          )
        .def("Continuity",
             (GeomAbs_Shape (BRepFill_NSections::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<GeomAbs_Shape (BRepFill_NSections::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_NSections::Continuity),
             R"#(None)#"  , py::arg("Index"),  py::arg("TolAngular")
          )
        .def("VertexTol",
             (Standard_Real (BRepFill_NSections::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<Standard_Real (BRepFill_NSections::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_NSections::VertexTol),
             R"#(None)#"  , py::arg("Index"),  py::arg("Param")
          )
        .def("Vertex",
             (TopoDS_Vertex (BRepFill_NSections::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<TopoDS_Vertex (BRepFill_NSections::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_NSections::Vertex),
             R"#(None)#"  , py::arg("Index"),  py::arg("Param")
          )
        .def("D0",
             (void (BRepFill_NSections::*)( const Standard_Real ,  TopoDS_Shape &  ) ) static_cast<void (BRepFill_NSections::*)( const Standard_Real ,  TopoDS_Shape &  ) >(&BRepFill_NSections::D0),
             R"#(None)#"  , py::arg("Param"),  py::arg("S")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepFill_NSections::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_NSections::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> & (BRepFill_NSections::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_NSections::*)() const>(&BRepFill_NSections::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_ShapeLaw ,opencascade::handle<BRepFill_ShapeLaw>  , BRepFill_SectionLaw >>(klass)
    // constructors
        .def(py::init< const TopoDS_Vertex &,const Standard_Boolean >()  , py::arg("V"),  py::arg("Build")=static_cast<const Standard_Boolean>(Standard_True) )
        .def(py::init< const TopoDS_Wire &,const Standard_Boolean >()  , py::arg("W"),  py::arg("Build")=static_cast<const Standard_Boolean>(Standard_True) )
        .def(py::init< const TopoDS_Wire &,const opencascade::handle<Law_Function> &,const Standard_Boolean >()  , py::arg("W"),  py::arg("L"),  py::arg("Build")=static_cast<const Standard_Boolean>(Standard_True) )
    // custom constructors
    // methods
        .def("IsVertex",
             (Standard_Boolean (BRepFill_ShapeLaw::*)() const) static_cast<Standard_Boolean (BRepFill_ShapeLaw::*)() const>(&BRepFill_ShapeLaw::IsVertex),
             R"#(Say if the input shape is a vertex.)#" 
          )
        .def("IsConstant",
             (Standard_Boolean (BRepFill_ShapeLaw::*)() const) static_cast<Standard_Boolean (BRepFill_ShapeLaw::*)() const>(&BRepFill_ShapeLaw::IsConstant),
             R"#(Say if the Law is Constant.)#" 
          )
        .def("ConcatenedLaw",
             (opencascade::handle<GeomFill_SectionLaw> (BRepFill_ShapeLaw::*)() const) static_cast<opencascade::handle<GeomFill_SectionLaw> (BRepFill_ShapeLaw::*)() const>(&BRepFill_ShapeLaw::ConcatenedLaw),
             R"#(Give the law build on a concatenated section)#" 
          )
        .def("Continuity",
             (GeomAbs_Shape (BRepFill_ShapeLaw::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<GeomAbs_Shape (BRepFill_ShapeLaw::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_ShapeLaw::Continuity),
             R"#(None)#"  , py::arg("Index"),  py::arg("TolAngular")
          )
        .def("VertexTol",
             (Standard_Real (BRepFill_ShapeLaw::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<Standard_Real (BRepFill_ShapeLaw::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_ShapeLaw::VertexTol),
             R"#(None)#"  , py::arg("Index"),  py::arg("Param")
          )
        .def("Vertex",
             (TopoDS_Vertex (BRepFill_ShapeLaw::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<TopoDS_Vertex (BRepFill_ShapeLaw::*)( const Standard_Integer ,  const Standard_Real  ) const>(&BRepFill_ShapeLaw::Vertex),
             R"#(None)#"  , py::arg("Index"),  py::arg("Param")
          )
        .def("D0",
             (void (BRepFill_ShapeLaw::*)( const Standard_Real ,  TopoDS_Shape &  ) ) static_cast<void (BRepFill_ShapeLaw::*)( const Standard_Real ,  TopoDS_Shape &  ) >(&BRepFill_ShapeLaw::D0),
             R"#(None)#"  , py::arg("Param"),  py::arg("S")
          )
        .def("Edge",
             (const TopoDS_Edge & (BRepFill_ShapeLaw::*)( const Standard_Integer  ) const) static_cast<const TopoDS_Edge & (BRepFill_ShapeLaw::*)( const Standard_Integer  ) const>(&BRepFill_ShapeLaw::Edge),
             R"#(None)#"  , py::arg("Index")
          )
        .def("Edge",
             (const TopoDS_Edge & (BRepFill_ShapeLaw::*)( const Standard_Integer  ) const) static_cast<const TopoDS_Edge & (BRepFill_ShapeLaw::*)( const Standard_Integer  ) const>(&BRepFill_ShapeLaw::Edge),
             R"#(None)#"  , py::arg("Index")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepFill_ShapeLaw::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_ShapeLaw::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> & (BRepFill_ShapeLaw::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_ShapeLaw::*)() const>(&BRepFill_ShapeLaw::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BRepFill_DraftLaw ,opencascade::handle<BRepFill_DraftLaw>  , BRepFill_Edge3DLaw >>(klass)
    // constructors
        .def(py::init< const TopoDS_Wire &,const opencascade::handle<GeomFill_LocationDraft> & >()  , py::arg("Path"),  py::arg("Law") )
    // custom constructors
    // methods
        .def("CleanLaw",
             (void (BRepFill_DraftLaw::*)( const Standard_Real  ) ) static_cast<void (BRepFill_DraftLaw::*)( const Standard_Real  ) >(&BRepFill_DraftLaw::CleanLaw),
             R"#(To clean the little discontinuities.)#"  , py::arg("TolAngular")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepFill_DraftLaw::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepFill_DraftLaw::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> & (BRepFill_DraftLaw::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepFill_DraftLaw::*)() const>(&BRepFill_DraftLaw::DynamicType),
             R"#(None)#"
             
         )
;

// functions
// ./opencascade/BRepFill.hxx
// ./opencascade/BRepFill_ACRLaw.hxx
// ./opencascade/BRepFill_AdvancedEvolved.hxx
// ./opencascade/BRepFill_ApproxSeewing.hxx
// ./opencascade/BRepFill_CompatibleWires.hxx
// ./opencascade/BRepFill_ComputeCLine.hxx
// ./opencascade/BRepFill_CurveConstraint.hxx
// ./opencascade/BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx
// ./opencascade/BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx
// ./opencascade/BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx
// ./opencascade/BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx
// ./opencascade/BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx
// ./opencascade/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx
// ./opencascade/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx
// ./opencascade/BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx
// ./opencascade/BRepFill_DataMapOfNodeShape.hxx
// ./opencascade/BRepFill_DataMapOfOrientedShapeListOfShape.hxx
// ./opencascade/BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx
// ./opencascade/BRepFill_DataMapOfShapeHArray2OfShape.hxx
// ./opencascade/BRepFill_DataMapOfShapeSequenceOfPnt.hxx
// ./opencascade/BRepFill_DataMapOfShapeSequenceOfReal.hxx
// ./opencascade/BRepFill_Draft.hxx
// ./opencascade/BRepFill_DraftLaw.hxx
// ./opencascade/BRepFill_Edge3DLaw.hxx
// ./opencascade/BRepFill_EdgeFaceAndOrder.hxx
// ./opencascade/BRepFill_EdgeOnSurfLaw.hxx
// ./opencascade/BRepFill_Evolved.hxx
// ./opencascade/BRepFill_FaceAndOrder.hxx
// ./opencascade/BRepFill_Filling.hxx
// ./opencascade/BRepFill_Generator.hxx
// ./opencascade/BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx
// ./opencascade/BRepFill_ListIteratorOfListOfOffsetWire.hxx
// ./opencascade/BRepFill_ListOfOffsetWire.hxx
// ./opencascade/BRepFill_LocationLaw.hxx
// ./opencascade/BRepFill_MultiLine.hxx
// ./opencascade/BRepFill_NSections.hxx
// ./opencascade/BRepFill_OffsetAncestors.hxx
// ./opencascade/BRepFill_OffsetWire.hxx
// ./opencascade/BRepFill_Pipe.hxx
// ./opencascade/BRepFill_PipeShell.hxx
// ./opencascade/BRepFill_Section.hxx
// ./opencascade/BRepFill_SectionLaw.hxx
// ./opencascade/BRepFill_SectionPlacement.hxx
// ./opencascade/BRepFill_SequenceOfEdgeFaceAndOrder.hxx
// ./opencascade/BRepFill_SequenceOfFaceAndOrder.hxx
// ./opencascade/BRepFill_SequenceOfSection.hxx
// ./opencascade/BRepFill_ShapeLaw.hxx
// ./opencascade/BRepFill_Sweep.hxx
// ./opencascade/BRepFill_ThruSectionErrorStatus.hxx
// ./opencascade/BRepFill_TransitionStyle.hxx
// ./opencascade/BRepFill_TrimEdgeTool.hxx
// ./opencascade/BRepFill_TrimShellCorner.hxx
// ./opencascade/BRepFill_TrimSurfaceTool.hxx
// ./opencascade/BRepFill_TypeOfContact.hxx

// Additional functions

// operators

// register typdefs
    register_template_NCollection_DataMap<opencascade::handle<MAT_Node>, TopTools_DataMapOfShapeShape>(m,"BRepFill_DataMapOfNodeDataMapOfShapeShape");
    register_template_NCollection_DataMap<opencascade::handle<MAT_Node>, TopoDS_Shape>(m,"BRepFill_DataMapOfNodeShape");
    register_template_NCollection_DataMap<TopoDS_Shape, TopTools_ListOfShape>(m,"BRepFill_DataMapOfOrientedShapeListOfShape");
    register_template_NCollection_DataMap<TopoDS_Shape, TopTools_DataMapOfShapeListOfShape, TopTools_ShapeMapHasher>(m,"BRepFill_DataMapOfShapeDataMapOfShapeListOfShape");
    register_template_NCollection_DataMap<TopoDS_Shape, TColgp_SequenceOfPnt, TopTools_ShapeMapHasher>(m,"BRepFill_DataMapOfShapeSequenceOfPnt");
    register_template_NCollection_DataMap<TopoDS_Shape, TColStd_SequenceOfReal, TopTools_ShapeMapHasher>(m,"BRepFill_DataMapOfShapeSequenceOfReal");
    register_template_NCollection_IndexedDataMap<TopoDS_Shape, TopTools_ListOfShape>(m,"BRepFill_IndexedDataMapOfOrientedShapeListOfShape");
    register_template_NCollection_List<BRepFill_OffsetWire>(m,"BRepFill_ListOfOffsetWire");
    register_template_NCollection_Sequence<BRepFill_EdgeFaceAndOrder>(m,"BRepFill_SequenceOfEdgeFaceAndOrder");
    register_template_NCollection_Sequence<BRepFill_FaceAndOrder>(m,"BRepFill_SequenceOfFaceAndOrder");
    register_template_NCollection_Sequence<BRepFill_Section>(m,"BRepFill_SequenceOfSection");


// exceptions

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

};

// user-defined post-inclusion per module

// user-defined post