File: IntPatch.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 (3751 lines) | stat: -rw-r--r-- 281,865 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751

// 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 <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <IntPatch_ALine.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <IntPatch_HCurve2dTool.hxx>
#include <math_FunctionSetRoot.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_HVertex.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntPatch_Polyhedron.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_HVertex.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <IntSurf_PntOn2S.hxx>
#include <IntSurf_LineOn2S.hxx>
#include <IntPatch_Point.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 <IntPatch_WLine.hxx>
#include <IntPatch_RLine.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <IntPatch_Polyhedron.hxx>
#include <IntPatch_PrmPrmIntersection_T3Bits.hxx>
#include <IntSurf_LineOn2S.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <IntPatch_Line.hxx>
#include <Adaptor3d_TopolTool.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 <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.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 <IntPatch_Point.hxx>
#include <IntSurf_PntOn2S.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <IntSurf_PathPointTool.hxx>
#include <IntSurf_InteriorPointTool.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <IntPatch_TheSurfFunction.hxx>
#include <math_FunctionSetRoot.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_HVertex.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_HVertex.hxx>
#include <IntPatch_HCurve2dTool.hxx>
#include <IntPatch_HInterTool.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <IntPatch_ArcFunction.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <IntPatch_HInterTool.hxx>
#include <IntPatch_TheSurfFunction.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_HVertex.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <IntSurf_Quadric.hxx>
#include <IntSurf_QuadricTool.hxx>
#include <Adaptor3d_TopolTool.hxx>

// module includes
#include <IntPatch_ALine.hxx>
#include <IntPatch_ALineToWLine.hxx>
#include <IntPatch_ArcFunction.hxx>
#include <IntPatch_CSFunction.hxx>
#include <IntPatch_CurvIntSurf.hxx>
#include <IntPatch_GLine.hxx>
#include <IntPatch_HCurve2dTool.hxx>
#include <IntPatch_HInterTool.hxx>
#include <IntPatch_ImpImpIntersection.hxx>
#include <IntPatch_ImpPrmIntersection.hxx>
#include <IntPatch_InterferencePolyhedron.hxx>
#include <IntPatch_Intersection.hxx>
#include <IntPatch_IType.hxx>
#include <IntPatch_Line.hxx>
#include <IntPatch_LineConstructor.hxx>
#include <IntPatch_Point.hxx>
#include <IntPatch_PointLine.hxx>
#include <IntPatch_PolyArc.hxx>
#include <IntPatch_Polygo.hxx>
#include <IntPatch_Polyhedron.hxx>
#include <IntPatch_PolyhedronTool.hxx>
#include <IntPatch_PolyLine.hxx>
#include <IntPatch_PrmPrmIntersection.hxx>
#include <IntPatch_PrmPrmIntersection_T3Bits.hxx>
#include <IntPatch_RLine.hxx>
#include <IntPatch_RstInt.hxx>
#include <IntPatch_SearchPnt.hxx>
#include <IntPatch_SequenceOfIWLineOfTheIWalking.hxx>
#include <IntPatch_SequenceOfLine.hxx>
#include <IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx>
#include <IntPatch_SequenceOfPoint.hxx>
#include <IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx>
#include <IntPatch_SpecialPoints.hxx>
#include <IntPatch_SpecPntType.hxx>
#include <IntPatch_TheIWalking.hxx>
#include <IntPatch_TheIWLineOfTheIWalking.hxx>
#include <IntPatch_ThePathPointOfTheSOnBounds.hxx>
#include <IntPatch_TheSearchInside.hxx>
#include <IntPatch_TheSegmentOfTheSOnBounds.hxx>
#include <IntPatch_TheSOnBounds.hxx>
#include <IntPatch_TheSurfFunction.hxx>
#include <IntPatch_WLine.hxx>
#include <IntPatch_WLineTool.hxx>

// template related includes

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

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

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

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

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


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

// user-defined inclusion per module

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


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

//Python trampoline classes
    class Py_IntPatch_Polygo : public IntPatch_Polygo{
    public:
        using IntPatch_Polygo::IntPatch_Polygo;


        // public pure virtual
        Standard_Integer NbPoints() const  override { PYBIND11_OVERLOAD_PURE(Standard_Integer,IntPatch_Polygo,NbPoints,) };
        gp_Pnt2d Point(const Standard_Integer Index) const  override { PYBIND11_OVERLOAD_PURE(gp_Pnt2d,IntPatch_Polygo,Point,Index) };


        // protected pure virtual


        // private pure virtual

    };
    class Py_IntPatch_PointLine : public IntPatch_PointLine{
    public:
        using IntPatch_PointLine::IntPatch_PointLine;


        // public pure virtual
        void AddVertex(const IntPatch_Point & Pnt,const Standard_Boolean theIsPrepend) override { PYBIND11_OVERLOAD_PURE(void,IntPatch_PointLine,AddVertex,Pnt,theIsPrepend) };
        Standard_Integer NbPnts() const  override { PYBIND11_OVERLOAD_PURE(Standard_Integer,IntPatch_PointLine,NbPnts,) };
        Standard_Integer NbVertex() const  override { PYBIND11_OVERLOAD_PURE(Standard_Integer,IntPatch_PointLine,NbVertex,) };
        const IntSurf_PntOn2S & Point(const Standard_Integer Index) const  override { PYBIND11_OVERLOAD_PURE(const IntSurf_PntOn2S &,IntPatch_PointLine,Point,Index) };
        const IntPatch_Point & Vertex(const Standard_Integer Index) const  override { PYBIND11_OVERLOAD_PURE(const IntPatch_Point &,IntPatch_PointLine,Vertex,Index) };
        IntPatch_Point & ChangeVertex(const Standard_Integer Index) override { PYBIND11_OVERLOAD_PURE(IntPatch_Point &,IntPatch_PointLine,ChangeVertex,Index) };
        void ClearVertexes() override { PYBIND11_OVERLOAD_PURE(void,IntPatch_PointLine,ClearVertexes,) };
        void RemoveVertex(const Standard_Integer theIndex) override { PYBIND11_OVERLOAD_PURE(void,IntPatch_PointLine,RemoveVertex,theIndex) };
        opencascade::handle<IntSurf_LineOn2S> Curve() const  override { PYBIND11_OVERLOAD_PURE(opencascade::handle<IntSurf_LineOn2S>,IntPatch_PointLine,Curve,) };
        Standard_Boolean IsOutSurf1Box(const gp_Pnt2d & P1) const  override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,IntPatch_PointLine,IsOutSurf1Box,P1) };
        Standard_Boolean IsOutSurf2Box(const gp_Pnt2d & P2) const  override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,IntPatch_PointLine,IsOutSurf2Box,P2) };
        Standard_Boolean IsOutBox(const gp_Pnt & P) const  override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,IntPatch_PointLine,IsOutBox,P) };


        // protected pure virtual


        // private pure virtual

    };

// classes

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


    // nested enums

    static_cast<py::class_<IntPatch_ALineToWLine , shared_ptr<IntPatch_ALineToWLine>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_Surface> &,const Standard_Integer >()  , py::arg("theS1"),  py::arg("theS2"),  py::arg("theNbPoints")=static_cast<const Standard_Integer>(200) )
    // custom constructors
    // methods
        .def("SetTolOpenDomain",
             (void (IntPatch_ALineToWLine::*)( const Standard_Real  ) ) static_cast<void (IntPatch_ALineToWLine::*)( const Standard_Real  ) >(&IntPatch_ALineToWLine::SetTolOpenDomain),
             R"#(None)#"  , py::arg("aT")
          )
        .def("TolOpenDomain",
             (Standard_Real (IntPatch_ALineToWLine::*)() const) static_cast<Standard_Real (IntPatch_ALineToWLine::*)() const>(&IntPatch_ALineToWLine::TolOpenDomain),
             R"#(None)#" 
          )
        .def("SetTolTransition",
             (void (IntPatch_ALineToWLine::*)( const Standard_Real  ) ) static_cast<void (IntPatch_ALineToWLine::*)( const Standard_Real  ) >(&IntPatch_ALineToWLine::SetTolTransition),
             R"#(None)#"  , py::arg("aT")
          )
        .def("TolTransition",
             (Standard_Real (IntPatch_ALineToWLine::*)() const) static_cast<Standard_Real (IntPatch_ALineToWLine::*)() const>(&IntPatch_ALineToWLine::TolTransition),
             R"#(None)#" 
          )
        .def("SetTol3D",
             (void (IntPatch_ALineToWLine::*)( const Standard_Real  ) ) static_cast<void (IntPatch_ALineToWLine::*)( const Standard_Real  ) >(&IntPatch_ALineToWLine::SetTol3D),
             R"#(None)#"  , py::arg("aT")
          )
        .def("Tol3D",
             (Standard_Real (IntPatch_ALineToWLine::*)() const) static_cast<Standard_Real (IntPatch_ALineToWLine::*)() const>(&IntPatch_ALineToWLine::Tol3D),
             R"#(None)#" 
          )
        .def("MakeWLine",
             (void (IntPatch_ALineToWLine::*)( const opencascade::handle<IntPatch_ALine> & ,  NCollection_Sequence<opencascade::handle<IntPatch_Line>> &  ) const) static_cast<void (IntPatch_ALineToWLine::*)( const opencascade::handle<IntPatch_ALine> & ,  NCollection_Sequence<opencascade::handle<IntPatch_Line>> &  ) const>(&IntPatch_ALineToWLine::MakeWLine),
             R"#(Converts aline to the set of Walking-lines and adds them in theLines.)#"  , py::arg("aline"),  py::arg("theLines")
          )
        .def("MakeWLine",
             (void (IntPatch_ALineToWLine::*)( const opencascade::handle<IntPatch_ALine> & ,  const Standard_Real ,  const Standard_Real ,  NCollection_Sequence<opencascade::handle<IntPatch_Line>> &  ) const) static_cast<void (IntPatch_ALineToWLine::*)( const opencascade::handle<IntPatch_ALine> & ,  const Standard_Real ,  const Standard_Real ,  NCollection_Sequence<opencascade::handle<IntPatch_Line>> &  ) const>(&IntPatch_ALineToWLine::MakeWLine),
             R"#(Converts aline (limited by paraminf and paramsup) to the set of Walking-lines and adds them in theLines.)#"  , py::arg("aline"),  py::arg("paraminf"),  py::arg("paramsup"),  py::arg("theLines")
          )
    // 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 IntPatch_ArcFunction from ./opencascade/IntPatch_ArcFunction.hxx
    klass = m.attr("IntPatch_ArcFunction");


    // nested enums

    static_cast<py::class_<IntPatch_ArcFunction , shared_ptr<IntPatch_ArcFunction>  , math_FunctionWithDerivative >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetQuadric",
             (void (IntPatch_ArcFunction::*)( const IntSurf_Quadric &  ) ) static_cast<void (IntPatch_ArcFunction::*)( const IntSurf_Quadric &  ) >(&IntPatch_ArcFunction::SetQuadric),
             R"#(None)#"  , py::arg("Q")
          )
        .def("Set",
             (void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_ArcFunction::Set),
             R"#(None)#"  , py::arg("A")
          )
        .def("Set",
             (void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_ArcFunction::Set),
             R"#(None)#"  , py::arg("S")
          )
        .def("Value",
             (Standard_Boolean (IntPatch_ArcFunction::*)( const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (IntPatch_ArcFunction::*)( const Standard_Real ,  Standard_Real &  ) >(&IntPatch_ArcFunction::Value),
             R"#(None)#"  , py::arg("X"),  py::arg("F")
          )
        .def("Derivative",
             (Standard_Boolean (IntPatch_ArcFunction::*)( const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (IntPatch_ArcFunction::*)( const Standard_Real ,  Standard_Real &  ) >(&IntPatch_ArcFunction::Derivative),
             R"#(None)#"  , py::arg("X"),  py::arg("D")
          )
        .def("Values",
             (Standard_Boolean (IntPatch_ArcFunction::*)( const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) ) static_cast<Standard_Boolean (IntPatch_ArcFunction::*)( const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) >(&IntPatch_ArcFunction::Values),
             R"#(None)#"  , py::arg("X"),  py::arg("F"),  py::arg("D")
          )
        .def("NbSamples",
             (Standard_Integer (IntPatch_ArcFunction::*)() const) static_cast<Standard_Integer (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::NbSamples),
             R"#(None)#" 
          )
        .def("GetStateNumber",
             (Standard_Integer (IntPatch_ArcFunction::*)() ) static_cast<Standard_Integer (IntPatch_ArcFunction::*)() >(&IntPatch_ArcFunction::GetStateNumber),
             R"#(None)#" 
          )
        .def("Valpoint",
             (const gp_Pnt & (IntPatch_ArcFunction::*)( const Standard_Integer  ) const) static_cast<const gp_Pnt & (IntPatch_ArcFunction::*)( const Standard_Integer  ) const>(&IntPatch_ArcFunction::Valpoint),
             R"#(None)#"  , py::arg("Index")
          )
        .def("Valpoint",
             (const gp_Pnt & (IntPatch_ArcFunction::*)( const Standard_Integer  ) const) static_cast<const gp_Pnt & (IntPatch_ArcFunction::*)( const Standard_Integer  ) const>(&IntPatch_ArcFunction::Valpoint),
             R"#(None)#"  , py::arg("Index")
          )
        .def("Set",
             (void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_ArcFunction::Set),
             R"#(None)#"  , py::arg("A")
          )
        .def("Set",
             (void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<void (IntPatch_ArcFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_ArcFunction::Set),
             R"#(None)#"  , py::arg("S")
          )
        .def("SetQuadric",
             (void (IntPatch_ArcFunction::*)( const IntSurf_Quadric &  ) ) static_cast<void (IntPatch_ArcFunction::*)( const IntSurf_Quadric &  ) >(&IntPatch_ArcFunction::SetQuadric),
             R"#(None)#"  , py::arg("Q")
          )
    // 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("Quadric",
             (const IntSurf_Quadric & (IntPatch_ArcFunction::*)() const) static_cast<const IntSurf_Quadric & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::Quadric),
             R"#(None)#"
             
         )
       .def("Arc",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_ArcFunction::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::Arc),
             R"#(None)#"
             
         )
       .def("Surface",
             (const opencascade::handle<Adaptor3d_Surface> & (IntPatch_ArcFunction::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::Surface),
             R"#(None)#"
             
         )
       .def("LastComputedPoint",
             (const gp_Pnt & (IntPatch_ArcFunction::*)() const) static_cast<const gp_Pnt & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::LastComputedPoint),
             R"#(Returns the point, which has been computed while the last calling Value() method)#"
             
         )
       .def("Quadric",
             (const IntSurf_Quadric & (IntPatch_ArcFunction::*)() const) static_cast<const IntSurf_Quadric & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::Quadric),
             R"#(None)#"
             
         )
       .def("Arc",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_ArcFunction::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::Arc),
             R"#(None)#"
             
         )
       .def("Surface",
             (const opencascade::handle<Adaptor3d_Surface> & (IntPatch_ArcFunction::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::Surface),
             R"#(None)#"
             
         )
       .def("LastComputedPoint",
             (const gp_Pnt & (IntPatch_ArcFunction::*)() const) static_cast<const gp_Pnt & (IntPatch_ArcFunction::*)() const>(&IntPatch_ArcFunction::LastComputedPoint),
             R"#(Returns the point, which has been computed while the last calling Value() method)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_CSFunction , shared_ptr<IntPatch_CSFunction>  , math_FunctionSetWithDerivatives >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor2d_Curve2d> &,const opencascade::handle<Adaptor3d_Surface> & >()  , py::arg("S1"),  py::arg("C"),  py::arg("S2") )
    // custom constructors
    // methods
        .def("NbVariables",
             (Standard_Integer (IntPatch_CSFunction::*)() const) static_cast<Standard_Integer (IntPatch_CSFunction::*)() const>(&IntPatch_CSFunction::NbVariables),
             R"#(None)#" 
          )
        .def("NbEquations",
             (Standard_Integer (IntPatch_CSFunction::*)() const) static_cast<Standard_Integer (IntPatch_CSFunction::*)() const>(&IntPatch_CSFunction::NbEquations),
             R"#(None)#" 
          )
        .def("Value",
             (Standard_Boolean (IntPatch_CSFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) ) static_cast<Standard_Boolean (IntPatch_CSFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) >(&IntPatch_CSFunction::Value),
             R"#(None)#"  , py::arg("X"),  py::arg("F")
          )
        .def("Derivatives",
             (Standard_Boolean (IntPatch_CSFunction::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (IntPatch_CSFunction::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) >(&IntPatch_CSFunction::Derivatives),
             R"#(None)#"  , py::arg("X"),  py::arg("D")
          )
        .def("Values",
             (Standard_Boolean (IntPatch_CSFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (IntPatch_CSFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) >(&IntPatch_CSFunction::Values),
             R"#(None)#"  , py::arg("X"),  py::arg("F"),  py::arg("D")
          )
        .def("Root",
             (Standard_Real (IntPatch_CSFunction::*)() const) static_cast<Standard_Real (IntPatch_CSFunction::*)() const>(&IntPatch_CSFunction::Root),
             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("Point",
             (const gp_Pnt & (IntPatch_CSFunction::*)() const) static_cast<const gp_Pnt & (IntPatch_CSFunction::*)() const>(&IntPatch_CSFunction::Point),
             R"#(None)#"
             
         )
       .def("AuxillarSurface",
             (const opencascade::handle<Adaptor3d_Surface> & (IntPatch_CSFunction::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (IntPatch_CSFunction::*)() const>(&IntPatch_CSFunction::AuxillarSurface),
             R"#(None)#"
             
         )
       .def("AuxillarCurve",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_CSFunction::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_CSFunction::*)() const>(&IntPatch_CSFunction::AuxillarCurve),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_CurvIntSurf , shared_ptr<IntPatch_CurvIntSurf>  >>(klass)
    // constructors
        .def(py::init< const Standard_Real,const Standard_Real,const Standard_Real,const IntPatch_CSFunction &,const Standard_Real,const Standard_Real >()  , py::arg("U"),  py::arg("V"),  py::arg("W"),  py::arg("F"),  py::arg("TolTangency"),  py::arg("MarginCoef")=static_cast<const Standard_Real>(0.0) )
        .def(py::init< const IntPatch_CSFunction &,const Standard_Real >()  , py::arg("F"),  py::arg("TolTangency") )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntPatch_CurvIntSurf::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  math_FunctionSetRoot & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_CurvIntSurf::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  math_FunctionSetRoot & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_CurvIntSurf::Perform),
             R"#(compute the solution it's possible to write to optimize: IntImp_IntCS inter(S1,C1,Toltangency) math_FunctionSetRoot rsnld(Inter.function()) while ...{ u=... v=... w=... inter.Perform(u,v,w,rsnld) } or IntImp_IntCS inter(Toltangency) inter.SetSurface(S); math_FunctionSetRoot rsnld(Inter.function()) while ...{ C=... inter.SetCurve(C); u=... v=... w=... inter.Perform(u,v,w,rsnld) })#"  , py::arg("U"),  py::arg("V"),  py::arg("W"),  py::arg("Rsnld"),  py::arg("u0"),  py::arg("v0"),  py::arg("u1"),  py::arg("v1"),  py::arg("w0"),  py::arg("w1")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_CurvIntSurf::*)() const) static_cast<Standard_Boolean (IntPatch_CurvIntSurf::*)() const>(&IntPatch_CurvIntSurf::IsDone),
             R"#(Returns TRUE if the creation completed without failure.)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_CurvIntSurf::*)() const) static_cast<Standard_Boolean (IntPatch_CurvIntSurf::*)() const>(&IntPatch_CurvIntSurf::IsEmpty),
             R"#(None)#" 
          )
        .def("ParameterOnCurve",
             (Standard_Real (IntPatch_CurvIntSurf::*)() const) static_cast<Standard_Real (IntPatch_CurvIntSurf::*)() const>(&IntPatch_CurvIntSurf::ParameterOnCurve),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
        .def("ParameterOnSurface",
             []( IntPatch_CurvIntSurf &self   ){
                 Standard_Real  U;
                Standard_Real  V;

                 self.ParameterOnSurface(U,V);
                 
                 return std::make_tuple(U,V); },
             R"#(None)#" 
          )
    // 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("Point",
             (const gp_Pnt & (IntPatch_CurvIntSurf::*)() const) static_cast<const gp_Pnt & (IntPatch_CurvIntSurf::*)() const>(&IntPatch_CurvIntSurf::Point),
             R"#(returns the intersection point The exception NotDone is raised if IsDone is false. The exception DomainError is raised if IsEmpty is true.)#"
             
         )
       .def("Function",
             (IntPatch_CSFunction & (IntPatch_CurvIntSurf::*)() ) static_cast<IntPatch_CSFunction & (IntPatch_CurvIntSurf::*)() >(&IntPatch_CurvIntSurf::Function),
             R"#(return the math function which is used to compute the intersection)#"
             
             , py::return_value_policy::reference_internal
         )
;

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

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

    // nested enums

    static_cast<py::class_<IntPatch_HCurve2dTool , shared_ptr<IntPatch_HCurve2dTool>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("FirstParameter_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::FirstParameter),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("LastParameter_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::LastParameter),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Continuity_s",
                    (GeomAbs_Shape (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<GeomAbs_Shape (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Continuity),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("NbIntervals_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const GeomAbs_Shape  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const GeomAbs_Shape  ) >(&IntPatch_HCurve2dTool::NbIntervals),
                    R"#(Returns the number of intervals for continuity <S>. May be one if Continuity(myclass) >= <S>)#"  , py::arg("C"),  py::arg("S")
          )
        .def_static("Intervals_s",
                    (void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  NCollection_Array1<Standard_Real> & ,  const GeomAbs_Shape  ) ) static_cast<void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  NCollection_Array1<Standard_Real> & ,  const GeomAbs_Shape  ) >(&IntPatch_HCurve2dTool::Intervals),
                    R"#(Stores in <T> the parameters bounding the intervals of continuity <S>.)#"  , py::arg("C"),  py::arg("T"),  py::arg("S")
          )
        .def_static("IsClosed_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::IsClosed),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("IsPeriodic_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::IsPeriodic),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Period_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Period),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Value_s",
                    (gp_Pnt2d (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) ) static_cast<gp_Pnt2d (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) >(&IntPatch_HCurve2dTool::Value),
                    R"#(Computes the point of parameter U on the curve.)#"  , py::arg("C"),  py::arg("U")
          )
        .def_static("D0_s",
                    (void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d &  ) >(&IntPatch_HCurve2dTool::D0),
                    R"#(Computes the point of parameter U on the curve.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P")
          )
        .def_static("D1_s",
                    (void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d & ,  gp_Vec2d &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d & ,  gp_Vec2d &  ) >(&IntPatch_HCurve2dTool::D1),
                    R"#(Computes the point of parameter U on the curve with its first derivative. Raised if the continuity of the current interval is not C1.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P"),  py::arg("V")
          )
        .def_static("D2_s",
                    (void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d & ,  gp_Vec2d & ,  gp_Vec2d &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d & ,  gp_Vec2d & ,  gp_Vec2d &  ) >(&IntPatch_HCurve2dTool::D2),
                    R"#(Returns the point P of parameter U, the first and second derivatives V1 and V2. Raised if the continuity of the current interval is not C2.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P"),  py::arg("V1"),  py::arg("V2")
          )
        .def_static("D3_s",
                    (void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d & ,  gp_Vec2d & ,  gp_Vec2d & ,  gp_Vec2d &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  gp_Pnt2d & ,  gp_Vec2d & ,  gp_Vec2d & ,  gp_Vec2d &  ) >(&IntPatch_HCurve2dTool::D3),
                    R"#(Returns the point P of parameter U, the first, the second and the third derivative. Raised if the continuity of the current interval is not C3.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P"),  py::arg("V1"),  py::arg("V2"),  py::arg("V3")
          )
        .def_static("DN_s",
                    (gp_Vec2d (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const Standard_Integer  ) ) static_cast<gp_Vec2d (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const Standard_Integer  ) >(&IntPatch_HCurve2dTool::DN),
                    R"#(The returned vector gives the value of the derivative for the order of derivation N. Raised if the continuity of the current interval is not CN. Raised if N < 1.)#"  , py::arg("C"),  py::arg("U"),  py::arg("N")
          )
        .def_static("Resolution_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) >(&IntPatch_HCurve2dTool::Resolution),
                    R"#(Returns the parametric resolution corresponding to the real space resolution <R3d>.)#"  , py::arg("C"),  py::arg("R3d")
          )
        .def_static("GetType_s",
                    (GeomAbs_CurveType (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<GeomAbs_CurveType (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::GetType),
                    R"#(Returns the type of the curve in the current interval : Line, Circle, Ellipse, Hyperbola, Parabola, BezierCurve, BSplineCurve, OtherCurve.)#"  , py::arg("C")
          )
        .def_static("Line_s",
                    (gp_Lin2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<gp_Lin2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Line),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Circle_s",
                    (gp_Circ2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<gp_Circ2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Circle),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Ellipse_s",
                    (gp_Elips2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<gp_Elips2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Ellipse),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Hyperbola_s",
                    (gp_Hypr2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<gp_Hypr2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Hyperbola),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Parabola_s",
                    (gp_Parab2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<gp_Parab2d (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Parabola),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Bezier_s",
                    (opencascade::handle<Geom2d_BezierCurve> (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<opencascade::handle<Geom2d_BezierCurve> (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::Bezier),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("BSpline_s",
                    (opencascade::handle<Geom2d_BSplineCurve> (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<opencascade::handle<Geom2d_BSplineCurve> (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HCurve2dTool::BSpline),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("NbSamples_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_HCurve2dTool::NbSamples),
                    R"#(None)#"  , py::arg("C"),  py::arg("U0"),  py::arg("U1")
          )
    // 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 IntPatch_HInterTool from ./opencascade/IntPatch_HInterTool.hxx
    klass = m.attr("IntPatch_HInterTool");


    // nested enums

    static_cast<py::class_<IntPatch_HInterTool , shared_ptr<IntPatch_HInterTool>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("NbSamplePoints",
             (Standard_Integer (IntPatch_HInterTool::*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<Standard_Integer (IntPatch_HInterTool::*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_HInterTool::NbSamplePoints),
             R"#(None)#"  , py::arg("S")
          )
    // methods using call by reference i.s.o. return
        .def("SamplePoint",
             []( IntPatch_HInterTool &self , const opencascade::handle<Adaptor3d_Surface> & S,const Standard_Integer Index ){
                 Standard_Real  U;
                Standard_Real  V;

                 self.SamplePoint(S,Index,U,V);
                 
                 return std::make_tuple(U,V); },
             R"#(None)#"  , py::arg("S"),  py::arg("Index")
          )
    // static methods
        .def_static("SingularOnUMin_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_HInterTool::SingularOnUMin),
                    R"#(None)#"  , py::arg("S")
          )
        .def_static("SingularOnUMax_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_HInterTool::SingularOnUMax),
                    R"#(None)#"  , py::arg("S")
          )
        .def_static("SingularOnVMin_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_HInterTool::SingularOnVMin),
                    R"#(None)#"  , py::arg("S")
          )
        .def_static("SingularOnVMax_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_HInterTool::SingularOnVMax),
                    R"#(None)#"  , py::arg("S")
          )
        .def_static("NbSamplesU_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_HInterTool::NbSamplesU),
                    R"#(None)#"  , py::arg("S"),  py::arg("u1"),  py::arg("u2")
          )
        .def_static("NbSamplesV_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_HInterTool::NbSamplesV),
                    R"#(None)#"  , py::arg("S"),  py::arg("v1"),  py::arg("v2")
          )
        .def_static("HasBeenSeen_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HInterTool::HasBeenSeen),
                    R"#(Returns True if all the intersection point and edges are known on the Arc. The intersection point are given as vertices. The intersection edges are given as intervals between two vertices.)#"  , py::arg("C")
          )
        .def_static("NbSamplesOnArc_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HInterTool::NbSamplesOnArc),
                    R"#(returns the number of points which is used to make a sample on the arc. this number is a function of the Surface and the CurveOnSurface complexity.)#"  , py::arg("A")
          )
        .def_static("Project_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const gp_Pnt2d & ,  Standard_Real & ,  gp_Pnt2d &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const gp_Pnt2d & ,  Standard_Real & ,  gp_Pnt2d &  ) >(&IntPatch_HInterTool::Project),
                    R"#(Projects the point P on the arc C. If the methods returns Standard_True, the projection is successful, and Paramproj is the parameter on the arc of the projected point, Ptproj is the projected Point. If the method returns Standard_False, Param proj and Ptproj are not significant.)#"  , py::arg("C"),  py::arg("P"),  py::arg("Paramproj"),  py::arg("Ptproj")
          )
        .def_static("Tolerance_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_HVertex> & ,  const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_HVertex> & ,  const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HInterTool::Tolerance),
                    R"#(Returns the parametric tolerance used to consider that the vertex and another point meet, i-e if Abs(parameter(Vertex) - parameter(OtherPnt))<= Tolerance, the points are "merged".)#"  , py::arg("V"),  py::arg("C")
          )
        .def_static("Parameter_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_HVertex> & ,  const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_HVertex> & ,  const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HInterTool::Parameter),
                    R"#(Returns the parameter of the vertex V on the arc A.)#"  , py::arg("V"),  py::arg("C")
          )
        .def_static("NbPoints_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HInterTool::NbPoints),
                    R"#(Returns the number of intersection points on the arc A.)#"  , py::arg("C")
          )
        .def_static("IsVertex_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Integer  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Integer  ) >(&IntPatch_HInterTool::IsVertex),
                    R"#(Returns True if the intersection point of range Index corresponds with a vertex on the arc A.)#"  , py::arg("C"),  py::arg("Index")
          )
        .def_static("NbSegments_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HInterTool::NbSegments),
                    R"#(returns the number of part of A solution of the of intersection problem.)#"  , py::arg("C")
          )
        .def_static("HasFirstPoint_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Integer ,  Standard_Integer &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Integer ,  Standard_Integer &  ) >(&IntPatch_HInterTool::HasFirstPoint),
                    R"#(Returns True when the segment of range Index is not open at the left side. In that case, IndFirst is the range in the list intersection points (see NbPoints) of the one which defines the left bound of the segment. Otherwise, the method has to return False, and IndFirst has no meaning.)#"  , py::arg("C"),  py::arg("Index"),  py::arg("IndFirst")
          )
        .def_static("HasLastPoint_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Integer ,  Standard_Integer &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Integer ,  Standard_Integer &  ) >(&IntPatch_HInterTool::HasLastPoint),
                    R"#(Returns True when the segment of range Index is not open at the right side. In that case, IndLast is the range in the list intersection points (see NbPoints) of the one which defines the right bound of the segment. Otherwise, the method has to return False, and IndLast has no meaning.)#"  , py::arg("C"),  py::arg("Index"),  py::arg("IndLast")
          )
        .def_static("IsAllSolution_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_HInterTool::IsAllSolution),
                    R"#(Returns True when the whole restriction is solution of the intersection problem.)#"  , py::arg("C")
          )
    // static methods using call by reference i.s.o. return
        .def_static("Bounds_s",
            [](const opencascade::handle<Adaptor2d_Curve2d> & C ){
                Standard_Real  Ufirst;
                Standard_Real  Ulast;

                IntPatch_HInterTool::Bounds(C,Ufirst,Ulast);
                
return std::make_tuple(Ufirst,Ulast); },
            R"#(Returns the parametric limits on the arc C. These limits must be finite : they are either the real limits of the arc, for a finite arc, or a bounding box for an infinite arc.)#"  , py::arg("C")
          )
        .def_static("Value_s",
            [](const opencascade::handle<Adaptor2d_Curve2d> & C,const Standard_Integer Index,gp_Pnt & Pt ){
                Standard_Real  Tol;
                Standard_Real  U;

                IntPatch_HInterTool::Value(C,Index,Pt,Tol,U);
                
return std::make_tuple(Tol,U); },
            R"#(Returns the value (Pt), the tolerance (Tol), and the parameter (U) on the arc A , of the intersection point of range Index.)#"  , py::arg("C"),  py::arg("Index"),  py::arg("Pt")
          )
        .def_static("Vertex_s",
            [](const opencascade::handle<Adaptor2d_Curve2d> & C,const Standard_Integer Index,Adaptor3d_HVertex& V ){
                opencascade::handle<Adaptor3d_HVertex>  V_ptr; V_ptr = &V;

                IntPatch_HInterTool::Vertex(C,Index,V_ptr);
                if ( V_ptr.get() != &V ) copy_if_copy_constructible(V, *V_ptr);

 },
            R"#(When IsVertex returns True, this method returns the vertex on the arc A.)#"  , py::arg("C"),  py::arg("Index"),  py::arg("V")
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums
        py::enum_<IntPatch_ImpImpIntersection::IntStatus>(klass, "IntStatus_e", R"#(None)#")
            .value("IntStatus_OK", IntPatch_ImpImpIntersection::IntStatus::IntStatus_OK)
            .value("IntStatus_InfiniteSectionCurve", IntPatch_ImpImpIntersection::IntStatus::IntStatus_InfiniteSectionCurve)
            .value("IntStatus_Fail", IntPatch_ImpImpIntersection::IntStatus::IntStatus_Fail).export_values();

    static_cast<py::class_<IntPatch_ImpImpIntersection , shared_ptr<IntPatch_ImpImpIntersection>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const Standard_Real,const Standard_Real,const Standard_Boolean >()  , py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2"),  py::arg("TolArc"),  py::arg("TolTang"),  py::arg("theIsReqToKeepRLine")=static_cast<const Standard_Boolean>(Standard_False) )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntPatch_ImpImpIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_ImpImpIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) >(&IntPatch_ImpImpIntersection::Perform),
             R"#(Flag theIsReqToKeepRLine has been entered only for compatibility with TopOpeBRep package. It shall be deleted after deleting TopOpeBRep. When intersection result returns IntPatch_RLine and another IntPatch_Line (not restriction) we (in case of theIsReqToKeepRLine==TRUE) will always keep both lines even if they are coincided.)#"  , py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2"),  py::arg("TolArc"),  py::arg("TolTang"),  py::arg("theIsReqToKeepRLine")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::IsDone),
             R"#(Returns True if the calculus was successful.)#" 
          )
        .def("GetStatus",
             (IntPatch_ImpImpIntersection::IntStatus (IntPatch_ImpImpIntersection::*)() const) static_cast<IntPatch_ImpImpIntersection::IntStatus (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::GetStatus),
             R"#(Returns status)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("TangentFaces",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::TangentFaces),
             R"#(Returns True if the two patches are considered as entirely tangent, i.e every restriction arc of one patch is inside the geometric base of the other patch.)#" 
          )
        .def("OppositeFaces",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::OppositeFaces),
             R"#(Returns True when the TangentFaces returns True and the normal vectors evaluated at a point on the first and the second surface are opposite. The exception DomainError is raised if TangentFaces returns False.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::NbPnts),
             R"#(Returns the number of "single" points.)#" 
          )
        .def("Point",
             (const IntPatch_Point & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpImpIntersection::Point),
             R"#(Returns the point of range Index. An exception is raised if Index<=0 or Index>NbPnt.)#"  , py::arg("Index")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpImpIntersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , py::arg("Index")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::IsDone),
             R"#(Returns True if the calculus was successful.)#" 
          )
        .def("GetStatus",
             (IntPatch_ImpImpIntersection::IntStatus (IntPatch_ImpImpIntersection::*)() const) static_cast<IntPatch_ImpImpIntersection::IntStatus (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::GetStatus),
             R"#(Returns status)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("TangentFaces",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::TangentFaces),
             R"#(Returns True if the two patches are considered as entirely tangent, i.e every restriction arc of one patch is inside the geometric base of the other patch.)#" 
          )
        .def("OppositeFaces",
             (Standard_Boolean (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::OppositeFaces),
             R"#(Returns True when the TangentFaces returns True and the normal vectors evaluated at a point on the first and the second surface are opposite. The exception DomainError is raised if TangentFaces returns False.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::NbPnts),
             R"#(Returns the number of "single" points.)#" 
          )
        .def("Point",
             (const IntPatch_Point & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpImpIntersection::Point),
             R"#(Returns the point of range Index. An exception is raised if Index<=0 or Index>NbPnt.)#"  , py::arg("Index")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_ImpImpIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpImpIntersection::*)() const>(&IntPatch_ImpImpIntersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_ImpImpIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpImpIntersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , 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 IntPatch_ImpPrmIntersection from ./opencascade/IntPatch_ImpPrmIntersection.hxx
    klass = m.attr("IntPatch_ImpPrmIntersection");


    // nested enums

    static_cast<py::class_<IntPatch_ImpPrmIntersection , shared_ptr<IntPatch_ImpPrmIntersection>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Real >()  , py::arg("Surf1"),  py::arg("D1"),  py::arg("Surf2"),  py::arg("D2"),  py::arg("TolArc"),  py::arg("TolTang"),  py::arg("Fleche"),  py::arg("Pas") )
    // custom constructors
    // methods
        .def("SetStartPoint",
             (void (IntPatch_ImpPrmIntersection::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_ImpPrmIntersection::*)( const Standard_Real ,  const Standard_Real  ) >(&IntPatch_ImpPrmIntersection::SetStartPoint),
             R"#(to search for solution from the given point)#"  , py::arg("U"),  py::arg("V")
          )
        .def("Perform",
             (void (IntPatch_ImpPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_ImpPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_ImpPrmIntersection::Perform),
             R"#(None)#"  , py::arg("Surf1"),  py::arg("D1"),  py::arg("Surf2"),  py::arg("D2"),  py::arg("TolArc"),  py::arg("TolTang"),  py::arg("Fleche"),  py::arg("Pas")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::IsDone),
             R"#(Returns true if the calculus was successful.)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::NbPnts),
             R"#(Returns the number of "single" points.)#" 
          )
        .def("Point",
             (const IntPatch_Point & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpPrmIntersection::Point),
             R"#(Returns the point of range Index. An exception is raised if Index<=0 or Index>NbPnt.)#"  , py::arg("Index")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpPrmIntersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , py::arg("Index")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::IsDone),
             R"#(Returns true if the calculus was successful.)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::NbPnts),
             R"#(Returns the number of "single" points.)#" 
          )
        .def("Point",
             (const IntPatch_Point & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpPrmIntersection::Point),
             R"#(Returns the point of range Index. An exception is raised if Index<=0 or Index>NbPnt.)#"  , py::arg("Index")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_ImpPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_ImpPrmIntersection::*)() const>(&IntPatch_ImpPrmIntersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_ImpPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_ImpPrmIntersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , 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 IntPatch_InterferencePolyhedron from ./opencascade/IntPatch_InterferencePolyhedron.hxx
    klass = m.attr("IntPatch_InterferencePolyhedron");


    // nested enums

    static_cast<py::class_<IntPatch_InterferencePolyhedron , shared_ptr<IntPatch_InterferencePolyhedron>  , Intf_Interference >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const IntPatch_Polyhedron &,const IntPatch_Polyhedron & >()  , py::arg("Obje1"),  py::arg("Obje2") )
        .def(py::init< const IntPatch_Polyhedron & >()  , py::arg("Obje") )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntPatch_InterferencePolyhedron::*)( const IntPatch_Polyhedron & ,  const IntPatch_Polyhedron &  ) ) static_cast<void (IntPatch_InterferencePolyhedron::*)( const IntPatch_Polyhedron & ,  const IntPatch_Polyhedron &  ) >(&IntPatch_InterferencePolyhedron::Perform),
             R"#(Computes the interference between the two Polyhedra.)#"  , py::arg("Obje1"),  py::arg("Obje2")
          )
        .def("Perform",
             (void (IntPatch_InterferencePolyhedron::*)( const IntPatch_Polyhedron &  ) ) static_cast<void (IntPatch_InterferencePolyhedron::*)( const IntPatch_Polyhedron &  ) >(&IntPatch_InterferencePolyhedron::Perform),
             R"#(Computes the self interference of a Polyhedron.)#"  , py::arg("Obje")
          )
    // 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 IntPatch_Intersection from ./opencascade/IntPatch_Intersection.hxx
    klass = m.attr("IntPatch_Intersection");


    // nested enums

    static_cast<py::class_<IntPatch_Intersection , shared_ptr<IntPatch_Intersection>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const Standard_Real,const Standard_Real >()  , py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2"),  py::arg("TolArc"),  py::arg("TolTang") )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const Standard_Real,const Standard_Real >()  , py::arg("S1"),  py::arg("D1"),  py::arg("TolArc"),  py::arg("TolTang") )
    // custom constructors
    // methods
        .def("SetTolerances",
             (void (IntPatch_Intersection::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_Intersection::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_Intersection::SetTolerances),
             R"#(Set the tolerances used by the algorithms: --- Implicit - Parametric --- Parametric - Parametric --- Implicit - Implicit)#"  , py::arg("TolArc"),  py::arg("TolTang"),  py::arg("UVMaxStep"),  py::arg("Fleche")
          )
        .def("Perform",
             (void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&IntPatch_Intersection::Perform),
             R"#(Flag theIsReqToKeepRLine has been entered only for compatibility with TopOpeBRep package. It shall be deleted after deleting TopOpeBRep. When intersection result returns IntPatch_RLine and another IntPatch_Line (not restriction) we (in case of theIsReqToKeepRLine==TRUE) will always keep both lines even if they are coincided. Flag theIsReqToPostWLProc has been entered only for compatibility with TopOpeBRep package. It shall be deleted after deleting TopOpeBRep. If theIsReqToPostWLProc == FALSE, then we will work with Walking-line obtained after intersection algorithm directly (without any post-processing).)#"  , py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2"),  py::arg("TolArc"),  py::arg("TolTang"),  py::arg("isGeomInt")=static_cast<const Standard_Boolean>(Standard_True),  py::arg("theIsReqToKeepRLine")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("theIsReqToPostWLProc")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Perform",
             (void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  NCollection_List<IntSurf_PntOn2S> & ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  NCollection_List<IntSurf_PntOn2S> & ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&IntPatch_Intersection::Perform),
             R"#(If isGeomInt == Standard_False, then method Param-Param intersection will be used. Flag theIsReqToKeepRLine has been entered only for compatibility with TopOpeBRep package. It shall be deleted after deleting TopOpeBRep. When intersection result returns IntPatch_RLine and another IntPatch_Line (not restriction) we (in case of theIsReqToKeepRLine==TRUE) will always keep both lines even if they are coincided. Flag theIsReqToPostWLProc has been entered only for compatibility with TopOpeBRep package. It shall be deleted after deleting TopOpeBRep. If theIsReqToPostWLProc == FALSE, then we will work with Walking-line obtained after intersection algorithm directly (without any post-processing).)#"  , py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2"),  py::arg("TolArc"),  py::arg("TolTang"),  py::arg("LOfPnts"),  py::arg("isGeomInt")=static_cast<const Standard_Boolean>(Standard_True),  py::arg("theIsReqToKeepRLine")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("theIsReqToPostWLProc")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Perform",
             (void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_Intersection::Perform),
             R"#(Perform with start point)#"  , py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2"),  py::arg("U1"),  py::arg("V1"),  py::arg("U2"),  py::arg("V2"),  py::arg("TolArc"),  py::arg("TolTang")
          )
        .def("Perform",
             (void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_Intersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_Intersection::Perform),
             R"#(Uses for finding self-intersected surfaces.)#"  , py::arg("S1"),  py::arg("D1"),  py::arg("TolArc"),  py::arg("TolTang")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::IsDone),
             R"#(Returns True if the calculus was successful.)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("TangentFaces",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::TangentFaces),
             R"#(Returns True if the two patches are considered as entirely tangent, i-e every restriction arc of one patch is inside the geometric base of the other patch.)#" 
          )
        .def("OppositeFaces",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::OppositeFaces),
             R"#(Returns True when the TangentFaces returns True and the normal vectors evaluated at a point on the first and the second surface are opposite. The exception DomainError is raised if TangentFaces returns False.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_Intersection::*)() const) static_cast<Standard_Integer (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::NbPnts),
             R"#(Returns the number of "single" points.)#" 
          )
        .def("Point",
             (const IntPatch_Point & (IntPatch_Intersection::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_Intersection::*)( const Standard_Integer  ) const>(&IntPatch_Intersection::Point),
             R"#(Returns the point of range Index. An exception is raised if Index<=0 or Index>NbPnt.)#"  , py::arg("Index")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_Intersection::*)() const) static_cast<Standard_Integer (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_Intersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_Intersection::*)( const Standard_Integer  ) const>(&IntPatch_Intersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , py::arg("Index")
          )
        .def("Dump",
             (void (IntPatch_Intersection::*)( const Standard_Integer ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) const) static_cast<void (IntPatch_Intersection::*)( const Standard_Integer ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) const>(&IntPatch_Intersection::Dump),
             R"#(Dump of each result line. Mode for more accurate dumps.)#"  , py::arg("Mode"),  py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::IsDone),
             R"#(Returns True if the calculus was successful.)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("TangentFaces",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::TangentFaces),
             R"#(Returns True if the two patches are considered as entirely tangent, i-e every restriction arc of one patch is inside the geometric base of the other patch.)#" 
          )
        .def("OppositeFaces",
             (Standard_Boolean (IntPatch_Intersection::*)() const) static_cast<Standard_Boolean (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::OppositeFaces),
             R"#(Returns True when the TangentFaces returns True and the normal vectors evaluated at a point on the first and the second surface are opposite. The exception DomainError is raised if TangentFaces returns False.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_Intersection::*)() const) static_cast<Standard_Integer (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::NbPnts),
             R"#(Returns the number of "single" points.)#" 
          )
        .def("Point",
             (const IntPatch_Point & (IntPatch_Intersection::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_Intersection::*)( const Standard_Integer  ) const>(&IntPatch_Intersection::Point),
             R"#(Returns the point of range Index. An exception is raised if Index<=0 or Index>NbPnt.)#"  , py::arg("Index")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_Intersection::*)() const) static_cast<Standard_Integer (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_Intersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_Intersection::*)( const Standard_Integer  ) const>(&IntPatch_Intersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , py::arg("Index")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("CheckSingularPoints_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  Standard_Real &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  Standard_Real &  ) >(&IntPatch_Intersection::CheckSingularPoints),
                    R"#(Checks if surface theS1 has degenerated boundary (dS/du or dS/dv = 0) and calculates minimal distance between corresponding singular points and surface theS2 If singular point exists the method returns "true" and stores minimal distance in theDist.)#"  , py::arg("theS1"),  py::arg("theD1"),  py::arg("theS2"),  py::arg("theDist")
          )
        .def_static("DefineUVMaxStep_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) >(&IntPatch_Intersection::DefineUVMaxStep),
                    R"#(Calculates recommended value for myUVMaxStep depending on surfaces and their domains)#"  , py::arg("theS1"),  py::arg("theD1"),  py::arg("theS2"),  py::arg("theD2")
          )
        .def_static("PrepareSurfaces_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  NCollection_Vector<opencascade::handle<Adaptor3d_Surface>> & ,  NCollection_Vector<opencascade::handle<Adaptor3d_Surface>> &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  NCollection_Vector<opencascade::handle<Adaptor3d_Surface>> & ,  NCollection_Vector<opencascade::handle<Adaptor3d_Surface>> &  ) >(&IntPatch_Intersection::PrepareSurfaces),
                    R"#(Prepares surfaces for intersection)#"  , py::arg("theS1"),  py::arg("theD1"),  py::arg("theS2"),  py::arg("theD2"),  py::arg("Tol"),  py::arg("theSeqHS1"),  py::arg("theSeqHS2")
          )
    // 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("SequenceOfLine",
             (const IntPatch_SequenceOfLine & (IntPatch_Intersection::*)() const) static_cast<const IntPatch_SequenceOfLine & (IntPatch_Intersection::*)() const>(&IntPatch_Intersection::SequenceOfLine),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_Line ,opencascade::handle<IntPatch_Line>  , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("SetValue",
             (void (IntPatch_Line::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_Line::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&IntPatch_Line::SetValue),
             R"#(To set the values returned by IsUIsoS1,.... The default values are False.)#"  , py::arg("Uiso1"),  py::arg("Viso1"),  py::arg("Uiso2"),  py::arg("Viso2")
          )
        .def("ArcType",
             (IntPatch_IType (IntPatch_Line::*)() const) static_cast<IntPatch_IType (IntPatch_Line::*)() const>(&IntPatch_Line::ArcType),
             R"#(Returns the type of geometry 3d (Line, Circle, Parabola, Hyperbola, Ellipse, Analytic, Walking, Restriction))#" 
          )
        .def("IsTangent",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsTangent),
             R"#(Returns TRUE if the intersection is a line of tangency between the 2 patches.)#" 
          )
        .def("TransitionOnS1",
             (IntSurf_TypeTrans (IntPatch_Line::*)() const) static_cast<IntSurf_TypeTrans (IntPatch_Line::*)() const>(&IntPatch_Line::TransitionOnS1),
             R"#(Returns the type of the transition of the line for the first surface. The transition is "constant" along the line. The transition is IN if the line is oriented in such a way that the system of vector (N1,N2,T) is right-handed, where N1 is the normal to the first surface at a point P, N2 is the normal to the second surface at a point P, T is the tangent to the intersection line at P. If the system of vector is left-handed, the transition is OUT. When N1 and N2 are colinear all along the intersection line, the transition will be - TOUCH, if it is possible to use the 2nd derivatives to determine the position of one surafce compared to the other (see Situation) - UNDECIDED otherwise.)#" 
          )
        .def("TransitionOnS2",
             (IntSurf_TypeTrans (IntPatch_Line::*)() const) static_cast<IntSurf_TypeTrans (IntPatch_Line::*)() const>(&IntPatch_Line::TransitionOnS2),
             R"#(Returns the type of the transition of the line for the second surface. The transition is "constant" along the line.)#" 
          )
        .def("SituationS1",
             (IntSurf_Situation (IntPatch_Line::*)() const) static_cast<IntSurf_Situation (IntPatch_Line::*)() const>(&IntPatch_Line::SituationS1),
             R"#(Returns the situation (INSIDE/OUTSIDE/UNKNOWN) of the first patch compared to the second one, when TransitionOnS1 or TransitionOnS2 returns TOUCH. Otherwise, an exception is raised.)#" 
          )
        .def("SituationS2",
             (IntSurf_Situation (IntPatch_Line::*)() const) static_cast<IntSurf_Situation (IntPatch_Line::*)() const>(&IntPatch_Line::SituationS2),
             R"#(Returns the situation (INSIDE/OUTSIDE/UNKNOWN) of the second patch compared to the first one, when TransitionOnS1 or TransitionOnS2 returns TOUCH. Otherwise, an exception is raised.)#" 
          )
        .def("IsUIsoOnS1",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsUIsoOnS1),
             R"#(Returns TRUE if the intersection is a U isoparametric curve on the first patch.)#" 
          )
        .def("IsVIsoOnS1",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsVIsoOnS1),
             R"#(Returns TRUE if the intersection is a V isoparametric curve on the first patch.)#" 
          )
        .def("IsUIsoOnS2",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsUIsoOnS2),
             R"#(Returns TRUE if the intersection is a U isoparametric curve on the second patch.)#" 
          )
        .def("IsVIsoOnS2",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsVIsoOnS2),
             R"#(Returns TRUE if the intersection is a V isoparametric curve on the second patch.)#" 
          )
        .def("SetValue",
             (void (IntPatch_Line::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_Line::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&IntPatch_Line::SetValue),
             R"#(To set the values returned by IsUIsoS1,.... The default values are False.)#"  , py::arg("Uiso1"),  py::arg("Viso1"),  py::arg("Uiso2"),  py::arg("Viso2")
          )
        .def("ArcType",
             (IntPatch_IType (IntPatch_Line::*)() const) static_cast<IntPatch_IType (IntPatch_Line::*)() const>(&IntPatch_Line::ArcType),
             R"#(Returns the type of geometry 3d (Line, Circle, Parabola, Hyperbola, Ellipse, Analytic, Walking, Restriction))#" 
          )
        .def("IsTangent",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsTangent),
             R"#(Returns TRUE if the intersection is a line of tangency between the 2 patches.)#" 
          )
        .def("TransitionOnS1",
             (IntSurf_TypeTrans (IntPatch_Line::*)() const) static_cast<IntSurf_TypeTrans (IntPatch_Line::*)() const>(&IntPatch_Line::TransitionOnS1),
             R"#(Returns the type of the transition of the line for the first surface. The transition is "constant" along the line. The transition is IN if the line is oriented in such a way that the system of vector (N1,N2,T) is right-handed, where N1 is the normal to the first surface at a point P, N2 is the normal to the second surface at a point P, T is the tangent to the intersection line at P. If the system of vector is left-handed, the transition is OUT. When N1 and N2 are colinear all along the intersection line, the transition will be - TOUCH, if it is possible to use the 2nd derivatives to determine the position of one surafce compared to the other (see Situation) - UNDECIDED otherwise.)#" 
          )
        .def("TransitionOnS2",
             (IntSurf_TypeTrans (IntPatch_Line::*)() const) static_cast<IntSurf_TypeTrans (IntPatch_Line::*)() const>(&IntPatch_Line::TransitionOnS2),
             R"#(Returns the type of the transition of the line for the second surface. The transition is "constant" along the line.)#" 
          )
        .def("SituationS1",
             (IntSurf_Situation (IntPatch_Line::*)() const) static_cast<IntSurf_Situation (IntPatch_Line::*)() const>(&IntPatch_Line::SituationS1),
             R"#(Returns the situation (INSIDE/OUTSIDE/UNKNOWN) of the first patch compared to the second one, when TransitionOnS1 or TransitionOnS2 returns TOUCH. Otherwise, an exception is raised.)#" 
          )
        .def("SituationS2",
             (IntSurf_Situation (IntPatch_Line::*)() const) static_cast<IntSurf_Situation (IntPatch_Line::*)() const>(&IntPatch_Line::SituationS2),
             R"#(Returns the situation (INSIDE/OUTSIDE/UNKNOWN) of the second patch compared to the first one, when TransitionOnS1 or TransitionOnS2 returns TOUCH. Otherwise, an exception is raised.)#" 
          )
        .def("IsUIsoOnS1",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsUIsoOnS1),
             R"#(Returns TRUE if the intersection is a U isoparametric curve on the first patch.)#" 
          )
        .def("IsVIsoOnS1",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsVIsoOnS1),
             R"#(Returns TRUE if the intersection is a V isoparametric curve on the first patch.)#" 
          )
        .def("IsUIsoOnS2",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsUIsoOnS2),
             R"#(Returns TRUE if the intersection is a U isoparametric curve on the second patch.)#" 
          )
        .def("IsVIsoOnS2",
             (Standard_Boolean (IntPatch_Line::*)() const) static_cast<Standard_Boolean (IntPatch_Line::*)() const>(&IntPatch_Line::IsVIsoOnS2),
             R"#(Returns TRUE if the intersection is a V isoparametric curve on the second patch.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&IntPatch_Line::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IntPatch_Line::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> & (IntPatch_Line::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IntPatch_Line::*)() const>(&IntPatch_Line::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_LineConstructor , shared_ptr<IntPatch_LineConstructor>  >>(klass)
    // constructors
        .def(py::init< const Standard_Integer >()  , py::arg("mode") )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntPatch_LineConstructor::*)(  const NCollection_Sequence<opencascade::handle<IntPatch_Line>> & ,  const opencascade::handle<IntPatch_Line> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real  ) ) static_cast<void (IntPatch_LineConstructor::*)(  const NCollection_Sequence<opencascade::handle<IntPatch_Line>> & ,  const opencascade::handle<IntPatch_Line> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real  ) >(&IntPatch_LineConstructor::Perform),
             R"#(None)#"  , py::arg("SL"),  py::arg("L"),  py::arg("S1"),  py::arg("D1"),  py::arg("S2"),  py::arg("D2"),  py::arg("Tol")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_LineConstructor::*)() const) static_cast<Standard_Integer (IntPatch_LineConstructor::*)() const>(&IntPatch_LineConstructor::NbLines),
             R"#(None)#" 
          )
        .def("Line",
             (opencascade::handle<IntPatch_Line> (IntPatch_LineConstructor::*)( const Standard_Integer  ) const) static_cast<opencascade::handle<IntPatch_Line> (IntPatch_LineConstructor::*)( const Standard_Integer  ) const>(&IntPatch_LineConstructor::Line),
             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 IntPatch_Point from ./opencascade/IntPatch_Point.hxx
    klass = m.attr("IntPatch_Point");


    // nested enums

    static_cast<py::class_<IntPatch_Point , shared_ptr<IntPatch_Point>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetValue",
             (void (IntPatch_Point::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_Point::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean  ) >(&IntPatch_Point::SetValue),
             R"#(Sets the values of a point which is on no domain, when both surfaces are implicit ones. If Tangent is True, the point is a point of tangency between the surfaces.)#"  , py::arg("Pt"),  py::arg("Tol"),  py::arg("Tangent")
          )
        .def("SetValue",
             (void (IntPatch_Point::*)( const gp_Pnt &  ) ) static_cast<void (IntPatch_Point::*)( const gp_Pnt &  ) >(&IntPatch_Point::SetValue),
             R"#(None)#"  , py::arg("Pt")
          )
        .def("SetValue",
             (void (IntPatch_Point::*)( const IntSurf_PntOn2S &  ) ) static_cast<void (IntPatch_Point::*)( const IntSurf_PntOn2S &  ) >(&IntPatch_Point::SetValue),
             R"#(Sets the value of <pt> member)#"  , py::arg("thePOn2S")
          )
        .def("SetTolerance",
             (void (IntPatch_Point::*)( const Standard_Real  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Real  ) >(&IntPatch_Point::SetTolerance),
             R"#(None)#"  , py::arg("Tol")
          )
        .def("SetParameters",
             (void (IntPatch_Point::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_Point::SetParameters),
             R"#(Sets the values of the parameters of the point on each surface.)#"  , py::arg("U1"),  py::arg("V1"),  py::arg("U2"),  py::arg("V2")
          )
        .def("SetParameter",
             (void (IntPatch_Point::*)( const Standard_Real  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Real  ) >(&IntPatch_Point::SetParameter),
             R"#(Set the value of the parameter on the intersection line.)#"  , py::arg("Para")
          )
        .def("SetVertex",
             (void (IntPatch_Point::*)( const Standard_Boolean ,  const opencascade::handle<Adaptor3d_HVertex> &  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Boolean ,  const opencascade::handle<Adaptor3d_HVertex> &  ) >(&IntPatch_Point::SetVertex),
             R"#(Sets the values of a point which is a vertex on the initial facet of restriction of one of the surface. If OnFirst is True, the point is on the domain of the first patch, otherwise the point is on the domain of the second surface.)#"  , py::arg("OnFirst"),  py::arg("V")
          )
        .def("SetArc",
             (void (IntPatch_Point::*)( const Standard_Boolean ,  const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const IntSurf_Transition & ,  const IntSurf_Transition &  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Boolean ,  const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const IntSurf_Transition & ,  const IntSurf_Transition &  ) >(&IntPatch_Point::SetArc),
             R"#(Sets the values of a point which is on one of the domain, when both surfaces are implicit ones. If OnFirst is True, the point is on the domain of the first patch, otherwise the point is on the domain of the second surface.)#"  , py::arg("OnFirst"),  py::arg("A"),  py::arg("Param"),  py::arg("TLine"),  py::arg("TArc")
          )
        .def("SetMultiple",
             (void (IntPatch_Point::*)( const Standard_Boolean  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Boolean  ) >(&IntPatch_Point::SetMultiple),
             R"#(Sets (or unsets) the point as a point on several intersection line.)#"  , py::arg("IsMult")
          )
        .def("ParameterOnLine",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::ParameterOnLine),
             R"#(This method returns the parameter of the point on the intersection line. If the points does not belong to an intersection line, the value returned does not have any sens.)#" 
          )
        .def("Tolerance",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::Tolerance),
             R"#(This method returns the fuzziness on the point.)#" 
          )
        .def("IsTangencyPoint",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsTangencyPoint),
             R"#(Returns True if the Point is a tangency point between the surfaces. If the Point is on one of the domain (IsOnDomS1 returns True or IsOnDomS2 returns True), an exception is raised.)#" 
          )
        .def("IsMultiple",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsMultiple),
             R"#(Returns True if the point belongs to several intersection lines.)#" 
          )
        .def("IsOnDomS1",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsOnDomS1),
             R"#(Returns TRUE if the point is on a boundary of the domain of the first patch.)#" 
          )
        .def("IsVertexOnS1",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsVertexOnS1),
             R"#(Returns TRUE if the point is a vertex on the initial restriction facet of the first surface.)#" 
          )
        .def("ParameterOnArc1",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::ParameterOnArc1),
             R"#(Returns the parameter of the point on the arc returned by the method ArcOnS2. The exception DomainError is raised if IsOnDomS1 returns False.)#" 
          )
        .def("IsOnDomS2",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsOnDomS2),
             R"#(Returns TRUE if the point is on a boundary of the domain of the second patch.)#" 
          )
        .def("IsVertexOnS2",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsVertexOnS2),
             R"#(Returns TRUE if the point is a vertex on the initial restriction facet of the first surface.)#" 
          )
        .def("ParameterOnArc2",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::ParameterOnArc2),
             R"#(Returns the parameter of the point on the arc returned by the method ArcOnS2. The exception DomainError is raised if IsOnDomS2 returns False.)#" 
          )
        .def("ReverseTransition",
             (void (IntPatch_Point::*)() ) static_cast<void (IntPatch_Point::*)() >(&IntPatch_Point::ReverseTransition),
             R"#(None)#" 
          )
        .def("Dump",
             (void (IntPatch_Point::*)() const) static_cast<void (IntPatch_Point::*)() const>(&IntPatch_Point::Dump),
             R"#(None)#" 
          )
        .def("SetValue",
             (void (IntPatch_Point::*)( const gp_Pnt &  ) ) static_cast<void (IntPatch_Point::*)( const gp_Pnt &  ) >(&IntPatch_Point::SetValue),
             R"#(None)#"  , py::arg("Pt")
          )
        .def("SetValue",
             (void (IntPatch_Point::*)( const IntSurf_PntOn2S &  ) ) static_cast<void (IntPatch_Point::*)( const IntSurf_PntOn2S &  ) >(&IntPatch_Point::SetValue),
             R"#(Sets the value of <pt> member)#"  , py::arg("thePOn2S")
          )
        .def("SetTolerance",
             (void (IntPatch_Point::*)( const Standard_Real  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Real  ) >(&IntPatch_Point::SetTolerance),
             R"#(None)#"  , py::arg("Tol")
          )
        .def("SetParameters",
             (void (IntPatch_Point::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_Point::SetParameters),
             R"#(Sets the values of the parameters of the point on each surface.)#"  , py::arg("U1"),  py::arg("V1"),  py::arg("U2"),  py::arg("V2")
          )
        .def("SetParameter",
             (void (IntPatch_Point::*)( const Standard_Real  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Real  ) >(&IntPatch_Point::SetParameter),
             R"#(Set the value of the parameter on the intersection line.)#"  , py::arg("Para")
          )
        .def("SetMultiple",
             (void (IntPatch_Point::*)( const Standard_Boolean  ) ) static_cast<void (IntPatch_Point::*)( const Standard_Boolean  ) >(&IntPatch_Point::SetMultiple),
             R"#(Sets (or unsets) the point as a point on several intersection line.)#"  , py::arg("IsMult")
          )
        .def("Tolerance",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::Tolerance),
             R"#(This method returns the fuzziness on the point.)#" 
          )
        .def("ParameterOnLine",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::ParameterOnLine),
             R"#(This method returns the parameter of the point on the intersection line. If the points does not belong to an intersection line, the value returned does not have any sens.)#" 
          )
        .def("IsTangencyPoint",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsTangencyPoint),
             R"#(Returns True if the Point is a tangency point between the surfaces. If the Point is on one of the domain (IsOnDomS1 returns True or IsOnDomS2 returns True), an exception is raised.)#" 
          )
        .def("IsMultiple",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsMultiple),
             R"#(Returns True if the point belongs to several intersection lines.)#" 
          )
        .def("IsOnDomS1",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsOnDomS1),
             R"#(Returns TRUE if the point is on a boundary of the domain of the first patch.)#" 
          )
        .def("IsVertexOnS1",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsVertexOnS1),
             R"#(Returns TRUE if the point is a vertex on the initial restriction facet of the first surface.)#" 
          )
        .def("ParameterOnArc1",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::ParameterOnArc1),
             R"#(Returns the parameter of the point on the arc returned by the method ArcOnS2. The exception DomainError is raised if IsOnDomS1 returns False.)#" 
          )
        .def("IsOnDomS2",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsOnDomS2),
             R"#(Returns TRUE if the point is on a boundary of the domain of the second patch.)#" 
          )
        .def("IsVertexOnS2",
             (Standard_Boolean (IntPatch_Point::*)() const) static_cast<Standard_Boolean (IntPatch_Point::*)() const>(&IntPatch_Point::IsVertexOnS2),
             R"#(Returns TRUE if the point is a vertex on the initial restriction facet of the first surface.)#" 
          )
        .def("ParameterOnArc2",
             (Standard_Real (IntPatch_Point::*)() const) static_cast<Standard_Real (IntPatch_Point::*)() const>(&IntPatch_Point::ParameterOnArc2),
             R"#(Returns the parameter of the point on the arc returned by the method ArcOnS2. The exception DomainError is raised if IsOnDomS2 returns False.)#" 
          )
    // methods using call by reference i.s.o. return
        .def("ParametersOnS1",
             []( IntPatch_Point &self   ){
                 Standard_Real  U1;
                Standard_Real  V1;

                 self.ParametersOnS1(U1,V1);
                 
                 return std::make_tuple(U1,V1); },
             R"#(Returns the parameters on the first surface of the point.)#" 
          )
        .def("ParametersOnS2",
             []( IntPatch_Point &self   ){
                 Standard_Real  U2;
                Standard_Real  V2;

                 self.ParametersOnS2(U2,V2);
                 
                 return std::make_tuple(U2,V2); },
             R"#(Returns the parameters on the second surface of the point.)#" 
          )
        .def("Parameters",
             []( IntPatch_Point &self   ){
                 Standard_Real  U1;
                Standard_Real  V1;
                Standard_Real  U2;
                Standard_Real  V2;

                 self.Parameters(U1,V1,U2,V2);
                 
                 return std::make_tuple(U1,V1,U2,V2); },
             R"#(Returns the parameters on the first and on the second surface of the point.)#" 
          )
        .def("ParametersOnS1",
             []( IntPatch_Point &self   ){
                 Standard_Real  U1;
                Standard_Real  V1;

                 self.ParametersOnS1(U1,V1);
                 
                 return std::make_tuple(U1,V1); },
             R"#(Returns the parameters on the first surface of the point.)#" 
          )
        .def("ParametersOnS2",
             []( IntPatch_Point &self   ){
                 Standard_Real  U2;
                Standard_Real  V2;

                 self.ParametersOnS2(U2,V2);
                 
                 return std::make_tuple(U2,V2); },
             R"#(Returns the parameters on the second surface of the point.)#" 
          )
        .def("Parameters",
             []( IntPatch_Point &self   ){
                 Standard_Real  U1;
                Standard_Real  V1;
                Standard_Real  U2;
                Standard_Real  V2;

                 self.Parameters(U1,V1,U2,V2);
                 
                 return std::make_tuple(U1,V1,U2,V2); },
             R"#(Returns the parameters on the first and on the second surface of the point.)#" 
          )
    // 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("Value",
             (const gp_Pnt & (IntPatch_Point::*)() const) static_cast<const gp_Pnt & (IntPatch_Point::*)() const>(&IntPatch_Point::Value),
             R"#(Returns the intersection point (geometric information).)#"
             
         )
       .def("VertexOnS1",
             (const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const>(&IntPatch_Point::VertexOnS1),
             R"#(Returns the information about the point when it is on the domain of the first patch, i-e when the function IsVertexOnS1 returns True. Otherwise, an exception is raised.)#"
             
         )
       .def("ArcOnS1",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const>(&IntPatch_Point::ArcOnS1),
             R"#(Returns the arc of restriction containing the vertex. The exception DomainError is raised if IsOnDomS1 returns False.)#"
             
         )
       .def("TransitionLineArc1",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionLineArc1),
             R"#(Returns the transition of the point on the intersection line with the arc on S1. The exception DomainError is raised if IsOnDomS1 returns False.)#"
             
         )
       .def("TransitionOnS1",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionOnS1),
             R"#(Returns the transition between the intersection line returned by the method Line and the arc on S1 returned by ArcOnS1(). The exception DomainError is raised if IsOnDomS1 returns False.)#"
             
         )
       .def("VertexOnS2",
             (const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const>(&IntPatch_Point::VertexOnS2),
             R"#(Returns the information about the point when it is on the domain of the second patch, i-e when the function IsVertexOnS2 returns True. Otherwise, an exception is raised.)#"
             
         )
       .def("ArcOnS2",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const>(&IntPatch_Point::ArcOnS2),
             R"#(Returns the arc of restriction containing the vertex. The exception DomainError is raised if IsOnDomS2 returns False.)#"
             
         )
       .def("TransitionLineArc2",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionLineArc2),
             R"#(Returns the transition of the point on the intersection line with the arc on S2. The exception DomainError is raised if IsOnDomS2 returns False.)#"
             
         )
       .def("TransitionOnS2",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionOnS2),
             R"#(Returns the transition between the intersection line returned by the method Line and the arc on S2 returned by ArcOnS2. The exception DomainError is raised if IsOnDomS2 returns False.)#"
             
         )
       .def("PntOn2S",
             (const IntSurf_PntOn2S & (IntPatch_Point::*)() const) static_cast<const IntSurf_PntOn2S & (IntPatch_Point::*)() const>(&IntPatch_Point::PntOn2S),
             R"#(Returns the PntOn2S (geometric Point and the parameters))#"
             
         )
       .def("Value",
             (const gp_Pnt & (IntPatch_Point::*)() const) static_cast<const gp_Pnt & (IntPatch_Point::*)() const>(&IntPatch_Point::Value),
             R"#(Returns the intersection point (geometric information).)#"
             
         )
       .def("VertexOnS1",
             (const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const>(&IntPatch_Point::VertexOnS1),
             R"#(Returns the information about the point when it is on the domain of the first patch, i-e when the function IsVertexOnS1 returns True. Otherwise, an exception is raised.)#"
             
         )
       .def("ArcOnS1",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const>(&IntPatch_Point::ArcOnS1),
             R"#(Returns the arc of restriction containing the vertex. The exception DomainError is raised if IsOnDomS1 returns False.)#"
             
         )
       .def("TransitionLineArc1",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionLineArc1),
             R"#(Returns the transition of the point on the intersection line with the arc on S1. The exception DomainError is raised if IsOnDomS1 returns False.)#"
             
         )
       .def("TransitionOnS1",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionOnS1),
             R"#(Returns the transition between the intersection line returned by the method Line and the arc on S1 returned by ArcOnS1(). The exception DomainError is raised if IsOnDomS1 returns False.)#"
             
         )
       .def("VertexOnS2",
             (const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_Point::*)() const>(&IntPatch_Point::VertexOnS2),
             R"#(Returns the information about the point when it is on the domain of the second patch, i-e when the function IsVertexOnS2 returns True. Otherwise, an exception is raised.)#"
             
         )
       .def("ArcOnS2",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_Point::*)() const>(&IntPatch_Point::ArcOnS2),
             R"#(Returns the arc of restriction containing the vertex. The exception DomainError is raised if IsOnDomS2 returns False.)#"
             
         )
       .def("TransitionLineArc2",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionLineArc2),
             R"#(Returns the transition of the point on the intersection line with the arc on S2. The exception DomainError is raised if IsOnDomS2 returns False.)#"
             
         )
       .def("TransitionOnS2",
             (const IntSurf_Transition & (IntPatch_Point::*)() const) static_cast<const IntSurf_Transition & (IntPatch_Point::*)() const>(&IntPatch_Point::TransitionOnS2),
             R"#(Returns the transition between the intersection line returned by the method Line and the arc on S2 returned by ArcOnS2. The exception DomainError is raised if IsOnDomS2 returns False.)#"
             
         )
       .def("PntOn2S",
             (const IntSurf_PntOn2S & (IntPatch_Point::*)() const) static_cast<const IntSurf_PntOn2S & (IntPatch_Point::*)() const>(&IntPatch_Point::PntOn2S),
             R"#(Returns the PntOn2S (geometric Point and the parameters))#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_Polygo , shared_ptr<IntPatch_Polygo> ,Py_IntPatch_Polygo , Intf_Polygon2d >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Error",
             (Standard_Real (IntPatch_Polygo::*)() const) static_cast<Standard_Real (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::Error),
             R"#(None)#" 
          )
        .def("NbPoints",
             (Standard_Integer (IntPatch_Polygo::*)() const) static_cast<Standard_Integer (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::NbPoints),
             R"#(None)#" 
          )
        .def("Point",
             (gp_Pnt2d (IntPatch_Polygo::*)( const Standard_Integer  ) const) static_cast<gp_Pnt2d (IntPatch_Polygo::*)( const Standard_Integer  ) const>(&IntPatch_Polygo::Point),
             R"#(None)#"  , py::arg("Index")
          )
        .def("DeflectionOverEstimation",
             (Standard_Real (IntPatch_Polygo::*)() const) static_cast<Standard_Real (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::DeflectionOverEstimation),
             R"#(Returns the tolerance of the polygon.)#" 
          )
        .def("NbSegments",
             (Standard_Integer (IntPatch_Polygo::*)() const) static_cast<Standard_Integer (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::NbSegments),
             R"#(Returns the number of Segments in the polyline.)#" 
          )
        .def("Segment",
             (void (IntPatch_Polygo::*)( const Standard_Integer ,  gp_Pnt2d & ,  gp_Pnt2d &  ) const) static_cast<void (IntPatch_Polygo::*)( const Standard_Integer ,  gp_Pnt2d & ,  gp_Pnt2d &  ) const>(&IntPatch_Polygo::Segment),
             R"#(Returns the points of the segment <Index> in the Polygon.)#"  , py::arg("theIndex"),  py::arg("theBegin"),  py::arg("theEnd")
          )
        .def("Dump",
             (void (IntPatch_Polygo::*)() const) static_cast<void (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::Dump),
             R"#(None)#" 
          )
        .def("Error",
             (Standard_Real (IntPatch_Polygo::*)() const) static_cast<Standard_Real (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::Error),
             R"#(None)#" 
          )
        .def("DeflectionOverEstimation",
             (Standard_Real (IntPatch_Polygo::*)() const) static_cast<Standard_Real (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::DeflectionOverEstimation),
             R"#(Returns the tolerance of the polygon.)#" 
          )
        .def("NbSegments",
             (Standard_Integer (IntPatch_Polygo::*)() const) static_cast<Standard_Integer (IntPatch_Polygo::*)() const>(&IntPatch_Polygo::NbSegments),
             R"#(Returns the number of Segments in the polyline.)#" 
          )
        .def("Segment",
             (void (IntPatch_Polygo::*)( const Standard_Integer ,  gp_Pnt2d & ,  gp_Pnt2d &  ) const) static_cast<void (IntPatch_Polygo::*)( const Standard_Integer ,  gp_Pnt2d & ,  gp_Pnt2d &  ) const>(&IntPatch_Polygo::Segment),
             R"#(Returns the points of the segment <Index> in the Polygon.)#"  , py::arg("theIndex"),  py::arg("theBegin"),  py::arg("theEnd")
          )
    // 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 IntPatch_Polyhedron from ./opencascade/IntPatch_Polyhedron.hxx
    klass = m.attr("IntPatch_Polyhedron");


    // nested enums

    static_cast<py::class_<IntPatch_Polyhedron , shared_ptr<IntPatch_Polyhedron>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const Standard_Integer,const Standard_Integer >()  , py::arg("Surface"),  py::arg("nbdU"),  py::arg("nbdV") )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> & >()  , py::arg("Surface") )
    // custom constructors
    // methods
        .def("Destroy",
             (void (IntPatch_Polyhedron::*)() ) static_cast<void (IntPatch_Polyhedron::*)() >(&IntPatch_Polyhedron::Destroy),
             R"#(None)#" 
          )
        .def("DeflectionOverEstimation",
             (void (IntPatch_Polyhedron::*)( const Standard_Real  ) ) static_cast<void (IntPatch_Polyhedron::*)( const Standard_Real  ) >(&IntPatch_Polyhedron::DeflectionOverEstimation),
             R"#(None)#"  , py::arg("flec")
          )
        .def("DeflectionOnTriangle",
             (Standard_Real (IntPatch_Polyhedron::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Integer  ) const) static_cast<Standard_Real (IntPatch_Polyhedron::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Integer  ) const>(&IntPatch_Polyhedron::DeflectionOnTriangle),
             R"#(None)#"  , py::arg("Surface"),  py::arg("Index")
          )
        .def("NbTriangles",
             (Standard_Integer (IntPatch_Polyhedron::*)() const) static_cast<Standard_Integer (IntPatch_Polyhedron::*)() const>(&IntPatch_Polyhedron::NbTriangles),
             R"#(Give the number of triangles in this double array of triangles (nbdu*nbdv*2).)#" 
          )
        .def("TriConnex",
             (Standard_Integer (IntPatch_Polyhedron::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) const) static_cast<Standard_Integer (IntPatch_Polyhedron::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) const>(&IntPatch_Polyhedron::TriConnex),
             R"#(Give the address Tricon of the triangle connexe to the triangle of address Triang by the edge Pivot Pedge and the third point of this connexe triangle. When we are on a free edge TriCon==0 but the function return the value of the triangle in the other side of Pivot on the free edge. Used to turn around a vertex.)#"  , py::arg("Triang"),  py::arg("Pivot"),  py::arg("Pedge"),  py::arg("TriCon"),  py::arg("OtherP")
          )
        .def("NbPoints",
             (Standard_Integer (IntPatch_Polyhedron::*)() const) static_cast<Standard_Integer (IntPatch_Polyhedron::*)() const>(&IntPatch_Polyhedron::NbPoints),
             R"#(Give the number of point in the double array of triangles ((nbdu+1)*(nbdv+1)).)#" 
          )
        .def("Point",
             (void (IntPatch_Polyhedron::*)( const gp_Pnt & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_Polyhedron::*)( const gp_Pnt & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_Polyhedron::Point),
             R"#(Set the value of a field of the double array of points.)#"  , py::arg("thePnt"),  py::arg("lig"),  py::arg("col"),  py::arg("U"),  py::arg("V")
          )
        .def("Point",
             (const gp_Pnt & (IntPatch_Polyhedron::*)( const Standard_Integer ,  Standard_Real & ,  Standard_Real &  ) const) static_cast<const gp_Pnt & (IntPatch_Polyhedron::*)( const Standard_Integer ,  Standard_Real & ,  Standard_Real &  ) const>(&IntPatch_Polyhedron::Point),
             R"#(Give the point of index i in the MaTriangle.)#"  , py::arg("Index"),  py::arg("U"),  py::arg("V")
          )
        .def("Point",
             (const gp_Pnt & (IntPatch_Polyhedron::*)( const Standard_Integer  ) const) static_cast<const gp_Pnt & (IntPatch_Polyhedron::*)( const Standard_Integer  ) const>(&IntPatch_Polyhedron::Point),
             R"#(Give the point of index i in the MaTriangle.)#"  , py::arg("Index")
          )
        .def("Point",
             (void (IntPatch_Polyhedron::*)( const Standard_Integer ,  gp_Pnt &  ) const) static_cast<void (IntPatch_Polyhedron::*)( const Standard_Integer ,  gp_Pnt &  ) const>(&IntPatch_Polyhedron::Point),
             R"#(Give the point of index i in the MaTriangle.)#"  , py::arg("Index"),  py::arg("P")
          )
        .def("FillBounding",
             (void (IntPatch_Polyhedron::*)() ) static_cast<void (IntPatch_Polyhedron::*)() >(&IntPatch_Polyhedron::FillBounding),
             R"#(Compute the array of boxes. The box <n> corresponding to the triangle <n>.)#" 
          )
        .def("DeflectionOverEstimation",
             (Standard_Real (IntPatch_Polyhedron::*)() const) static_cast<Standard_Real (IntPatch_Polyhedron::*)() const>(&IntPatch_Polyhedron::DeflectionOverEstimation),
             R"#(None)#" 
          )
        .def("Contain",
             (Standard_Boolean (IntPatch_Polyhedron::*)( const Standard_Integer ,  const gp_Pnt &  ) const) static_cast<Standard_Boolean (IntPatch_Polyhedron::*)( const Standard_Integer ,  const gp_Pnt &  ) const>(&IntPatch_Polyhedron::Contain),
             R"#(Give the plane equation of the triangle of address Triang.)#"  , py::arg("Triang"),  py::arg("ThePnt")
          )
        .def("Dump",
             (void (IntPatch_Polyhedron::*)() const) static_cast<void (IntPatch_Polyhedron::*)() const>(&IntPatch_Polyhedron::Dump),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
        .def("Size",
             []( IntPatch_Polyhedron &self   ){
                 Standard_Integer  nbdu;
                Standard_Integer  nbdv;

                 self.Size(nbdu,nbdv);
                 
                 return std::make_tuple(nbdu,nbdv); },
             R"#(Get the size of the MaTriangle.)#" 
          )
        .def("Triangle",
             []( IntPatch_Polyhedron &self , const Standard_Integer Index ){
                 Standard_Integer  P1;
                Standard_Integer  P2;
                Standard_Integer  P3;

                 self.Triangle(Index,P1,P2,P3);
                 
                 return std::make_tuple(P1,P2,P3); },
             R"#(Give the 3 points of the triangle of address Index in the double array of triangles.)#"  , py::arg("Index")
          )
        .def("PlaneEquation",
             []( IntPatch_Polyhedron &self , const Standard_Integer Triang,gp_XYZ & NormalVector ){
                 Standard_Real  PolarDistance;

                 self.PlaneEquation(Triang,NormalVector,PolarDistance);
                 
                 return std::make_tuple(PolarDistance); },
             R"#(Give the plane equation of the triangle of address Triang.)#"  , py::arg("Triang"),  py::arg("NormalVector")
          )
        .def("Parameters",
             []( IntPatch_Polyhedron &self , const Standard_Integer Index ){
                 Standard_Real  U;
                Standard_Real  V;

                 self.Parameters(Index,U,V);
                 
                 return std::make_tuple(U,V); },
             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
       .def("Bounding",
             (const Bnd_Box & (IntPatch_Polyhedron::*)() const) static_cast<const Bnd_Box & (IntPatch_Polyhedron::*)() const>(&IntPatch_Polyhedron::Bounding),
             R"#(Give the bounding box of the MaTriangle.)#"
             
         )
       .def("ComponentsBounding",
             (const opencascade::handle<Bnd_HArray1OfBox> & (IntPatch_Polyhedron::*)() const) static_cast<const opencascade::handle<Bnd_HArray1OfBox> & (IntPatch_Polyhedron::*)() const>(&IntPatch_Polyhedron::ComponentsBounding),
             R"#(Give the array of boxes. The box <n> corresponding to the triangle <n>.)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<IntPatch_PolyhedronTool , shared_ptr<IntPatch_PolyhedronTool>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Bounding_s",
                    (const Bnd_Box & (*)( const IntPatch_Polyhedron &  ) ) static_cast<const Bnd_Box & (*)( const IntPatch_Polyhedron &  ) >(&IntPatch_PolyhedronTool::Bounding),
                    R"#(Give the bounding box of the Polyhedron.)#"  , py::arg("thePolyh")
          )
        .def_static("ComponentsBounding_s",
                    (const opencascade::handle<Bnd_HArray1OfBox> & (*)( const IntPatch_Polyhedron &  ) ) static_cast<const opencascade::handle<Bnd_HArray1OfBox> & (*)( const IntPatch_Polyhedron &  ) >(&IntPatch_PolyhedronTool::ComponentsBounding),
                    R"#(Give the array of boxes. The box <n> corresponding to the triangle <n>.)#"  , py::arg("thePolyh")
          )
        .def_static("DeflectionOverEstimation_s",
                    (Standard_Real (*)( const IntPatch_Polyhedron &  ) ) static_cast<Standard_Real (*)( const IntPatch_Polyhedron &  ) >(&IntPatch_PolyhedronTool::DeflectionOverEstimation),
                    R"#(Give the tolerance of the polygon.)#"  , py::arg("thePolyh")
          )
        .def_static("NbTriangles_s",
                    (Standard_Integer (*)( const IntPatch_Polyhedron &  ) ) static_cast<Standard_Integer (*)( const IntPatch_Polyhedron &  ) >(&IntPatch_PolyhedronTool::NbTriangles),
                    R"#(Give the number of triangles in this polyhedral surface.)#"  , py::arg("thePolyh")
          )
        .def_static("Point_s",
                    (const gp_Pnt & (*)( const IntPatch_Polyhedron & ,  const Standard_Integer  ) ) static_cast<const gp_Pnt & (*)( const IntPatch_Polyhedron & ,  const Standard_Integer  ) >(&IntPatch_PolyhedronTool::Point),
                    R"#(Give the point of index i in the polyhedral surface.)#"  , py::arg("thePolyh"),  py::arg("Index")
          )
        .def_static("TriConnex_s",
                    (Standard_Integer (*)( const IntPatch_Polyhedron & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) ) static_cast<Standard_Integer (*)( const IntPatch_Polyhedron & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) >(&IntPatch_PolyhedronTool::TriConnex),
                    R"#(Gives the address Tricon of the triangle connexe to the triangle of address Triang by the edge Pivot Pedge and the third point of this connexe triangle. When we are on a free edge TriCon==0 but the function return the value of the triangle in the other side of Pivot on the free edge. Used to turn around a vertex.)#"  , py::arg("thePolyh"),  py::arg("Triang"),  py::arg("Pivot"),  py::arg("Pedge"),  py::arg("TriCon"),  py::arg("OtherP")
          )
    // static methods using call by reference i.s.o. return
        .def_static("Triangle_s",
            [](const IntPatch_Polyhedron & thePolyh,const Standard_Integer Index ){
                Standard_Integer  P1;
                Standard_Integer  P2;
                Standard_Integer  P3;

                IntPatch_PolyhedronTool::Triangle(thePolyh,Index,P1,P2,P3);
                
return std::make_tuple(P1,P2,P3); },
            R"#(Give the indices of the 3 points of the triangle of address Index in the Polyhedron.)#"  , py::arg("thePolyh"),  py::arg("Index")
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<IntPatch_PrmPrmIntersection , shared_ptr<IntPatch_PrmPrmIntersection>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(Performs the intersection between <Caro1> and <Caro2>. Associated Polyhedrons <Polyhedron1> and <Polyhedron2> are given.)#"  , py::arg("Caro1"),  py::arg("Polyhedron1"),  py::arg("Domain1"),  py::arg("Caro2"),  py::arg("Polyhedron2"),  py::arg("Domain2"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment")
          )
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(None)#"  , py::arg("Caro1"),  py::arg("Polyhedron1"),  py::arg("Domain1"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment")
          )
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(Performs the intersection between <Caro1> and <Caro2>. The method computes the polyhedron on each surface.)#"  , py::arg("Caro1"),  py::arg("Domain1"),  py::arg("Caro2"),  py::arg("Domain2"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment"),  py::arg("ClearFlag")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  NCollection_List<IntSurf_PntOn2S> &  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  NCollection_List<IntSurf_PntOn2S> &  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(Performs the intersection between <Caro1> and <Caro2>. The method computes the polyhedron on each surface.)#"  , py::arg("Caro1"),  py::arg("Domain1"),  py::arg("Caro2"),  py::arg("Domain2"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment"),  py::arg("ListOfPnts")
          )
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(Performs the intersection between <Caro1> and <Caro2>. The method computes the polyhedron on each surface.)#"  , py::arg("Caro1"),  py::arg("Domain1"),  py::arg("Caro2"),  py::arg("Domain2"),  py::arg("U1"),  py::arg("V1"),  py::arg("U2"),  py::arg("V2"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment")
          )
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(Performs the intersection between <Caro1> and <Caro2>. The method computes the polyhedron on each surface.)#"  , py::arg("Caro1"),  py::arg("Domain1"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment")
          )
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(Performs the intersection between <Caro1> and <Caro2>.)#"  , py::arg("Caro1"),  py::arg("Domain1"),  py::arg("Caro2"),  py::arg("Polyhedron2"),  py::arg("Domain2"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment")
          )
        .def("Perform",
             (void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const IntPatch_Polyhedron & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_PrmPrmIntersection::Perform),
             R"#(Performs the intersection between <Caro1> and <Caro2>.)#"  , py::arg("Caro1"),  py::arg("Polyhedron1"),  py::arg("Domain1"),  py::arg("Caro2"),  py::arg("Domain2"),  py::arg("TolTangency"),  py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Increment")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::IsDone),
             R"#(Returns true if the calculus was successful.)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , py::arg("Index")
          )
        .def("NewLine",
             (opencascade::handle<IntPatch_Line> (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) const) static_cast<opencascade::handle<IntPatch_Line> (IntPatch_PrmPrmIntersection::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection::NewLine),
             R"#(Computes about <NbPoints> Intersection Points on the Line <IndexLine> between the Points of Index <LowPoint> and <HighPoint>.)#"  , py::arg("Caro1"),  py::arg("Caro2"),  py::arg("IndexLine"),  py::arg("LowPoint"),  py::arg("HighPoint"),  py::arg("NbPoints")
          )
        .def("GrilleInteger",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection::GrilleInteger),
             R"#(None)#"  , py::arg("ix"),  py::arg("iy"),  py::arg("iz")
          )
        .def("DansGrille",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection::DansGrille),
             R"#(None)#"  , py::arg("t")
          )
        .def("NbPointsGrille",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::NbPointsGrille),
             R"#(None)#" 
          )
        .def("RemplitLin",
             (void (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  IntPatch_PrmPrmIntersection_T3Bits &  ) const) static_cast<void (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  IntPatch_PrmPrmIntersection_T3Bits &  ) const>(&IntPatch_PrmPrmIntersection::RemplitLin),
             R"#(None)#"  , py::arg("x1"),  py::arg("y1"),  py::arg("z1"),  py::arg("x2"),  py::arg("y2"),  py::arg("z2"),  py::arg("Map")
          )
        .def("RemplitTri",
             (void (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  IntPatch_PrmPrmIntersection_T3Bits &  ) const) static_cast<void (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  IntPatch_PrmPrmIntersection_T3Bits &  ) const>(&IntPatch_PrmPrmIntersection::RemplitTri),
             R"#(None)#"  , py::arg("x1"),  py::arg("y1"),  py::arg("z1"),  py::arg("x2"),  py::arg("y2"),  py::arg("z2"),  py::arg("x3"),  py::arg("y3"),  py::arg("z3"),  py::arg("Map")
          )
        .def("Remplit",
             (void (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  IntPatch_PrmPrmIntersection_T3Bits &  ) const) static_cast<void (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  IntPatch_PrmPrmIntersection_T3Bits &  ) const>(&IntPatch_PrmPrmIntersection::Remplit),
             R"#(None)#"  , py::arg("a"),  py::arg("b"),  py::arg("c"),  py::arg("Map")
          )
        .def("CodeReject",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) const>(&IntPatch_PrmPrmIntersection::CodeReject),
             R"#(None)#"  , py::arg("x1"),  py::arg("y1"),  py::arg("z1"),  py::arg("x2"),  py::arg("y2"),  py::arg("z2"),  py::arg("x3"),  py::arg("y3"),  py::arg("z3")
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::NbLines),
             R"#(Returns the number of intersection lines.)#" 
          )
        .def("Line",
             (const opencascade::handle<IntPatch_Line> & (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_Line> & (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection::Line),
             R"#(Returns the line of range Index. An exception is raised if Index<=0 or Index>NbLine.)#"  , py::arg("n")
          )
        .def("IsEmpty",
             (Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::IsEmpty),
             R"#(Returns true if the is no intersection.)#" 
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Boolean (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::IsDone),
             R"#(Returns true if the calculus was successful.)#" 
          )
        .def("GrilleInteger",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection::GrilleInteger),
             R"#(None)#"  , py::arg("ix"),  py::arg("iy"),  py::arg("iz")
          )
        .def("DansGrille",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection::DansGrille),
             R"#(None)#"  , py::arg("t")
          )
        .def("NbPointsGrille",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)() const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)() const>(&IntPatch_PrmPrmIntersection::NbPointsGrille),
             R"#(None)#" 
          )
        .def("CodeReject",
             (Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) const>(&IntPatch_PrmPrmIntersection::CodeReject),
             R"#(None)#"  , py::arg("x0"),  py::arg("y0"),  py::arg("z0"),  py::arg("x1"),  py::arg("y1"),  py::arg("z1"),  py::arg("x"),  py::arg("y"),  py::arg("z")
          )
    // methods using call by reference i.s.o. return
        .def("IntegerGrille",
             []( IntPatch_PrmPrmIntersection &self , const Standard_Integer t ){
                 Standard_Integer  ix;
                Standard_Integer  iy;
                Standard_Integer  iz;

                 self.IntegerGrille(t,ix,iy,iz);
                 
                 return std::make_tuple(ix,iy,iz); },
             R"#(None)#"  , py::arg("t")
          )
        .def("PointDepart",
             []( IntPatch_PrmPrmIntersection &self , IntSurf_LineOn2S& LineOn2S,const opencascade::handle<Adaptor3d_Surface> & S1,const Standard_Integer SU1,const Standard_Integer SV1,const opencascade::handle<Adaptor3d_Surface> & S2,const Standard_Integer SU2,const Standard_Integer SV2 ){
                 opencascade::handle<IntSurf_LineOn2S>  LineOn2S_ptr; LineOn2S_ptr = &LineOn2S;

                 self.PointDepart(LineOn2S_ptr,S1,SU1,SV1,S2,SU2,SV2);
                 if ( LineOn2S_ptr.get() != &LineOn2S ) copy_if_copy_constructible(LineOn2S, *LineOn2S_ptr);

                 return std::make_tuple(); },
             R"#(None)#"  , py::arg("LineOn2S"),  py::arg("S1"),  py::arg("SU1"),  py::arg("SV1"),  py::arg("S2"),  py::arg("SU2"),  py::arg("SV2")
          )
        .def("IntegerGrille",
             []( IntPatch_PrmPrmIntersection &self , const Standard_Integer tt ){
                 Standard_Integer  ix;
                Standard_Integer  iy;
                Standard_Integer  iz;

                 self.IntegerGrille(tt,ix,iy,iz);
                 
                 return std::make_tuple(ix,iy,iz); },
             R"#(None)#"  , py::arg("tt")
          )
    // 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 IntPatch_PrmPrmIntersection_T3Bits from ./opencascade/IntPatch_PrmPrmIntersection_T3Bits.hxx
    klass = m.attr("IntPatch_PrmPrmIntersection_T3Bits");


    // nested enums

    static_cast<py::class_<IntPatch_PrmPrmIntersection_T3Bits , shared_ptr<IntPatch_PrmPrmIntersection_T3Bits>  >>(klass)
    // constructors
        .def(py::init< const Standard_Integer >()  , py::arg("size") )
    // custom constructors
    // methods
        .def("Add",
             (void (IntPatch_PrmPrmIntersection_T3Bits::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_PrmPrmIntersection_T3Bits::*)( const Standard_Integer  ) >(&IntPatch_PrmPrmIntersection_T3Bits::Add),
             R"#(None)#"  , py::arg("t")
          )
        .def("Val",
             (Standard_Integer (IntPatch_PrmPrmIntersection_T3Bits::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection_T3Bits::*)( const Standard_Integer  ) const>(&IntPatch_PrmPrmIntersection_T3Bits::Val),
             R"#(None)#"  , py::arg("t")
          )
        .def("Raz",
             (void (IntPatch_PrmPrmIntersection_T3Bits::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_PrmPrmIntersection_T3Bits::*)( const Standard_Integer  ) >(&IntPatch_PrmPrmIntersection_T3Bits::Raz),
             R"#(None)#"  , py::arg("t")
          )
        .def("ResetAnd",
             (void (IntPatch_PrmPrmIntersection_T3Bits::*)() ) static_cast<void (IntPatch_PrmPrmIntersection_T3Bits::*)() >(&IntPatch_PrmPrmIntersection_T3Bits::ResetAnd),
             R"#(None)#" 
          )
        .def("And",
             (Standard_Integer (IntPatch_PrmPrmIntersection_T3Bits::*)( IntPatch_PrmPrmIntersection_T3Bits & ,  Standard_Integer &  ) ) static_cast<Standard_Integer (IntPatch_PrmPrmIntersection_T3Bits::*)( IntPatch_PrmPrmIntersection_T3Bits & ,  Standard_Integer &  ) >(&IntPatch_PrmPrmIntersection_T3Bits::And),
             R"#(None)#"  , py::arg("Oth"),  py::arg("indiceprecedent")
          )
    // 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 IntPatch_RstInt from ./opencascade/IntPatch_RstInt.hxx
    klass = m.attr("IntPatch_RstInt");

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

    // nested enums

    static_cast<py::class_<IntPatch_RstInt , shared_ptr<IntPatch_RstInt>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("PutVertexOnLine_s",
                    (void (*)( const opencascade::handle<IntPatch_Line> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean ,  const Standard_Real  ) ) static_cast<void (*)( const opencascade::handle<IntPatch_Line> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean ,  const Standard_Real  ) >(&IntPatch_RstInt::PutVertexOnLine),
                    R"#(None)#"  , py::arg("L"),  py::arg("Surf"),  py::arg("Domain"),  py::arg("OtherSurf"),  py::arg("OnFirst"),  py::arg("Tol")
          )
    // 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 IntPatch_SpecialPoints from ./opencascade/IntPatch_SpecialPoints.hxx
    klass = m.attr("IntPatch_SpecialPoints");

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

    // nested enums

    static_cast<py::class_<IntPatch_SpecialPoints , shared_ptr<IntPatch_SpecialPoints>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("AddCrossUVIsoPoint_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  const Standard_Real ,  IntSurf_PntOn2S & ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  const Standard_Real ,  IntSurf_PntOn2S & ,  const Standard_Boolean  ) >(&IntPatch_SpecialPoints::AddCrossUVIsoPoint),
                    R"#(Adds the point defined as intersection of two isolines (U = 0 and V = 0) on theQSurf in theLine. theRefPt is used to correct adjusting parameters. If theIsReversed is TRUE then theQSurf correspond to the second (otherwise, the first) surface while forming intersection point IntSurf_PntOn2S.)#"  , py::arg("theQSurf"),  py::arg("thePSurf"),  py::arg("theRefPt"),  py::arg("theTol3d"),  py::arg("theAddedPoint"),  py::arg("theIsReversed")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("AddPointOnUorVIso_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  const Standard_Boolean ,  const Standard_Real ,   const math_VectorBase<double> & ,   const math_VectorBase<double> & ,   const math_VectorBase<double> & ,   const math_VectorBase<double> & ,  IntSurf_PntOn2S & ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  const Standard_Boolean ,  const Standard_Real ,   const math_VectorBase<double> & ,   const math_VectorBase<double> & ,   const math_VectorBase<double> & ,   const math_VectorBase<double> & ,  IntSurf_PntOn2S & ,  const Standard_Boolean  ) >(&IntPatch_SpecialPoints::AddPointOnUorVIso),
                    R"#(Adds the point lain strictly in the isoline U = 0 or V = 0 of theQSurf, in theLine. theRefPt is used to correct adjusting parameters. If theIsReversed is TRUE then theQSurf corresponds to the second (otherwise, the first) surface while forming intersection point IntSurf_PntOn2S. All math_Vector-objects must be filled as follows: [1] - U-parameter of thePSurf; [2] - V-parameter of thePSurf; [3] - U- (if V-isoline is considered) or V-parameter (if U-isoline is considered) of theQSurf.)#"  , py::arg("theQSurf"),  py::arg("thePSurf"),  py::arg("theRefPt"),  py::arg("theIsU"),  py::arg("theIsoParameter"),  py::arg("theToler"),  py::arg("theInitPoint"),  py::arg("theInfBound"),  py::arg("theSupBound"),  py::arg("theAddedPoint"),  py::arg("theIsReversed")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("AddSingularPole_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  IntPatch_Point & ,  IntSurf_PntOn2S & ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  IntPatch_Point & ,  IntSurf_PntOn2S & ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&IntPatch_SpecialPoints::AddSingularPole),
                    R"#(Computes the pole of sphere to add it in the intersection line. Stores the result in theAddedPoint variable (does not add in the line). At that, cone and sphere (with singularity) must be set in theQSurf parameter. By default (if theIsReversed == FALSE), theQSurf is the first surface of the Walking line. If it is not, theIsReversed parameter must be set to TRUE. theIsReqRefCheck is TRUE if and only if 3D-point of theRefPt must be pole or apex for check (e.g. if it is vertex). thePtIso is the reference point for obtaining isoline where must be placed the Apex/Pole.)#"  , py::arg("theQSurf"),  py::arg("thePSurf"),  py::arg("thePtIso"),  py::arg("theVertex"),  py::arg("theAddedPoint"),  py::arg("theIsReversed")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("theIsReqRefCheck")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("ContinueAfterSpecialPoint_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  const IntPatch_SpecPntType ,  const Standard_Real ,  IntSurf_PntOn2S & ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S & ,  const IntPatch_SpecPntType ,  const Standard_Real ,  IntSurf_PntOn2S & ,  const Standard_Boolean  ) >(&IntPatch_SpecialPoints::ContinueAfterSpecialPoint),
                    R"#(Special point has already been added in the line. Now, we need in correct prolongation of the line or in start new line. This function returns new point.)#"  , py::arg("theQSurf"),  py::arg("thePSurf"),  py::arg("theRefPt"),  py::arg("theSPType"),  py::arg("theTol2D"),  py::arg("theNewPoint"),  py::arg("theIsReversed")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("AdjustPointAndVertex_s",
                    (void (*)( const IntSurf_PntOn2S & ,  const Standard_Real[4] ,  IntSurf_PntOn2S & ,  IntPatch_Point *const  ) ) static_cast<void (*)( const IntSurf_PntOn2S & ,  const Standard_Real[4] ,  IntSurf_PntOn2S & ,  IntPatch_Point *const  ) >(&IntPatch_SpecialPoints::AdjustPointAndVertex),
                    R"#(Sets theNewPoint parameters in 2D-space the closest to theRefPoint with help of adding/subtracting corresponding periods. theArrPeriods must be filled as follows: {<U-period of 1st surface>, <V-period of 1st surface>, <U-period of 2nd surface>, <V-period of 2nd surface>}. If theVertex != 0 then its parameters will be filled as corresponding parameters of theNewPoint.)#"  , py::arg("theRefPoint"),  py::arg("theArrPeriods"),  py::arg("theNewPoint"),  py::arg("theVertex")=static_cast<IntPatch_Point *const>(0)
          )
    // 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 IntPatch_TheIWLineOfTheIWalking from ./opencascade/IntPatch_TheIWLineOfTheIWalking.hxx
    klass = m.attr("IntPatch_TheIWLineOfTheIWalking");


    // nested enums

    static_cast<py::class_<IntPatch_TheIWLineOfTheIWalking ,opencascade::handle<IntPatch_TheIWLineOfTheIWalking>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init<  const opencascade::handle<NCollection_BaseAllocator> & >()  , py::arg("theAllocator")=static_cast< const opencascade::handle<NCollection_BaseAllocator> &>(0) )
    // custom constructors
    // methods
        .def("Reverse",
             (void (IntPatch_TheIWLineOfTheIWalking::*)() ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)() >(&IntPatch_TheIWLineOfTheIWalking::Reverse),
             R"#(reverse the points in the line. Hasfirst, HasLast are kept.)#" 
          )
        .def("Cut",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) >(&IntPatch_TheIWLineOfTheIWalking::Cut),
             R"#(Cut the line at the point of rank Index.)#"  , py::arg("Index")
          )
        .def("AddPoint",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const IntSurf_PntOn2S &  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const IntSurf_PntOn2S &  ) >(&IntPatch_TheIWLineOfTheIWalking::AddPoint),
             R"#(Add a point in the line.)#"  , py::arg("P")
          )
        .def("AddStatusFirst",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean  ) >(&IntPatch_TheIWLineOfTheIWalking::AddStatusFirst),
             R"#(None)#"  , py::arg("Closed"),  py::arg("HasFirst")
          )
        .def("AddStatusFirst",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) >(&IntPatch_TheIWLineOfTheIWalking::AddStatusFirst),
             R"#(None)#"  , py::arg("Closed"),  py::arg("HasLast"),  py::arg("Index"),  py::arg("P")
          )
        .def("AddStatusFirstLast",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&IntPatch_TheIWLineOfTheIWalking::AddStatusFirstLast),
             R"#(None)#"  , py::arg("Closed"),  py::arg("HasFirst"),  py::arg("HasLast")
          )
        .def("AddStatusLast",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) >(&IntPatch_TheIWLineOfTheIWalking::AddStatusLast),
             R"#(None)#"  , py::arg("HasLast")
          )
        .def("AddStatusLast",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) >(&IntPatch_TheIWLineOfTheIWalking::AddStatusLast),
             R"#(None)#"  , py::arg("HasLast"),  py::arg("Index"),  py::arg("P")
          )
        .def("AddIndexPassing",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) >(&IntPatch_TheIWLineOfTheIWalking::AddIndexPassing),
             R"#(associer a l 'indice du point sur la ligne l'indice du point passant dans l'iterateur de depart)#"  , py::arg("Index")
          )
        .def("SetTangentVector",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const gp_Vec & ,  const Standard_Integer  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const gp_Vec & ,  const Standard_Integer  ) >(&IntPatch_TheIWLineOfTheIWalking::SetTangentVector),
             R"#(None)#"  , py::arg("V"),  py::arg("Index")
          )
        .def("SetTangencyAtBegining",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) >(&IntPatch_TheIWLineOfTheIWalking::SetTangencyAtBegining),
             R"#(None)#"  , py::arg("IsTangent")
          )
        .def("SetTangencyAtEnd",
             (void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) ) static_cast<void (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) >(&IntPatch_TheIWLineOfTheIWalking::SetTangencyAtEnd),
             R"#(None)#"  , py::arg("IsTangent")
          )
        .def("NbPoints",
             (Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::NbPoints),
             R"#(Returns the number of points of the line (including first point and end point : see HasLastPoint and HasFirstPoint).)#" 
          )
        .def("Value",
             (const IntSurf_PntOn2S & (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (IntPatch_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) const>(&IntPatch_TheIWLineOfTheIWalking::Value),
             R"#(Returns the point of range Index. If index <= 0 or Index > NbPoints, an exception is raised.)#"  , py::arg("Index")
          )
        .def("IsClosed",
             (Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::IsClosed),
             R"#(Returns True if the line is closed.)#" 
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::HasFirstPoint),
             R"#(Returns True if the first point of the line is a marching point . when is HasFirstPoint==False ,the line begins on the natural bound of the surface.the line can be too long)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::HasLastPoint),
             R"#(Returns True if the end point of the line is a marching point (Point from IntWS). when is HasFirstPoint==False ,the line ends on the natural bound of the surface.the line can be too long.)#" 
          )
        .def("FirstPointIndex",
             (Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::FirstPointIndex),
             R"#(Returns the Index of first point of the line when it is a marching point.This index is the index in the PointStartIterator. An exception is raised if HasFirstPoint returns False.)#" 
          )
        .def("LastPointIndex",
             (Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::LastPointIndex),
             R"#(Returns the index of last point of the line when it is a marching point.This index is the index in the PointStartIterator. An exception is raised if HasLastPoint returns False.)#" 
          )
        .def("NbPassingPoint",
             (Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::NbPassingPoint),
             R"#(returns the number of points belonging to Pnts1 which are passing point.)#" 
          )
        .def("TangentVector",
             (const gp_Vec & (IntPatch_TheIWLineOfTheIWalking::*)( Standard_Integer &  ) const) static_cast<const gp_Vec & (IntPatch_TheIWLineOfTheIWalking::*)( Standard_Integer &  ) const>(&IntPatch_TheIWLineOfTheIWalking::TangentVector),
             R"#(None)#"  , py::arg("Index")
          )
        .def("IsTangentAtBegining",
             (Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::IsTangentAtBegining),
             R"#(None)#" 
          )
        .def("IsTangentAtEnd",
             (Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::IsTangentAtEnd),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
        .def("PassingPoint",
             []( IntPatch_TheIWLineOfTheIWalking &self , const Standard_Integer Index ){
                 Standard_Integer  IndexLine;
                Standard_Integer  IndexPnts;

                 self.PassingPoint(Index,IndexLine,IndexPnts);
                 
                 return std::make_tuple(IndexLine,IndexPnts); },
             R"#(returns the index of the point belonging to the line which is associated to the passing point belonging to Pnts1 an exception is raised if Index > NbPassingPoint())#"  , py::arg("Index")
          )
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&IntPatch_TheIWLineOfTheIWalking::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IntPatch_TheIWLineOfTheIWalking::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("Line",
             (const opencascade::handle<IntSurf_LineOn2S> & (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<const opencascade::handle<IntSurf_LineOn2S> & (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::Line),
             R"#(Returns the LineOn2S contained in the walking line.)#"
             
         )
       .def("FirstPoint",
             (const IntSurf_PathPoint & (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<const IntSurf_PathPoint & (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::FirstPoint),
             R"#(Returns the first point of the line when it is a marching point. An exception is raised if HasFirstPoint returns False.)#"
             
         )
       .def("LastPoint",
             (const IntSurf_PathPoint & (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<const IntSurf_PathPoint & (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::LastPoint),
             R"#(Returns the last point of the line when it is a marching point. An exception is raised if HasLastPoint returns False.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (IntPatch_TheIWLineOfTheIWalking::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IntPatch_TheIWLineOfTheIWalking::*)() const>(&IntPatch_TheIWLineOfTheIWalking::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_TheIWalking , shared_ptr<IntPatch_TheIWalking>  >>(klass)
    // constructors
        .def(py::init< const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Boolean >()  , py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Step"),  py::arg("theToFillHoles")=static_cast<const Standard_Boolean>(Standard_False) )
    // custom constructors
    // methods
        .def("SetTolerance",
             (void (IntPatch_TheIWalking::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_TheIWalking::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_TheIWalking::SetTolerance),
             R"#(Deflection is the maximum deflection admitted between two consecutive points on a resulting polyline. Step is the maximum increment admitted between two consecutive points (in 2d space). Epsilon is the tolerance beyond which 2 points are confused)#"  , py::arg("Epsilon"),  py::arg("Deflection"),  py::arg("Step")
          )
        .def("Perform",
             (void (IntPatch_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,   const NCollection_Sequence<IntSurf_InteriorPoint> & ,  IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,   const NCollection_Sequence<IntSurf_InteriorPoint> & ,  IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) >(&IntPatch_TheIWalking::Perform),
             R"#(Searches a set of polylines starting on a point of Pnts1 or Pnts2. Each point on a resulting polyline verifies F(u,v)=0)#"  , py::arg("Pnts1"),  py::arg("Pnts2"),  py::arg("Func"),  py::arg("S"),  py::arg("Reversed")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("Perform",
             (void (IntPatch_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,  IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,  IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) >(&IntPatch_TheIWalking::Perform),
             R"#(Searches a set of polylines starting on a point of Pnts1. Each point on a resulting polyline verifies F(u,v)=0)#"  , py::arg("Pnts1"),  py::arg("Func"),  py::arg("S"),  py::arg("Reversed")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_TheIWalking::*)() const) static_cast<Standard_Boolean (IntPatch_TheIWalking::*)() const>(&IntPatch_TheIWalking::IsDone),
             R"#(Returns true if the calculus was successful.)#" 
          )
        .def("NbLines",
             (Standard_Integer (IntPatch_TheIWalking::*)() const) static_cast<Standard_Integer (IntPatch_TheIWalking::*)() const>(&IntPatch_TheIWalking::NbLines),
             R"#(Returns the number of resulting polylines. An exception is raised if IsDone returns False.)#" 
          )
        .def("Value",
             (const opencascade::handle<IntPatch_TheIWLineOfTheIWalking> & (IntPatch_TheIWalking::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<IntPatch_TheIWLineOfTheIWalking> & (IntPatch_TheIWalking::*)( const Standard_Integer  ) const>(&IntPatch_TheIWalking::Value),
             R"#(Returns the polyline of range Index. An exception is raised if IsDone is False. An exception is raised if Index<=0 or Index>NbLines.)#"  , py::arg("Index")
          )
        .def("NbSinglePnts",
             (Standard_Integer (IntPatch_TheIWalking::*)() const) static_cast<Standard_Integer (IntPatch_TheIWalking::*)() const>(&IntPatch_TheIWalking::NbSinglePnts),
             R"#(Returns the number of points belonging to Pnts on which no line starts or ends. An exception is raised if IsDone returns False.)#" 
          )
        .def("SinglePnt",
             (const IntSurf_PathPoint & (IntPatch_TheIWalking::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PathPoint & (IntPatch_TheIWalking::*)( const Standard_Integer  ) const>(&IntPatch_TheIWalking::SinglePnt),
             R"#(Returns the point of range Index . An exception is raised if IsDone returns False. An exception is raised if Index<=0 or Index > NbSinglePnts.)#"  , 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 IntPatch_ThePathPointOfTheSOnBounds from ./opencascade/IntPatch_ThePathPointOfTheSOnBounds.hxx
    klass = m.attr("IntPatch_ThePathPointOfTheSOnBounds");


    // nested enums

    static_cast<py::class_<IntPatch_ThePathPointOfTheSOnBounds , shared_ptr<IntPatch_ThePathPointOfTheSOnBounds>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const gp_Pnt &,const Standard_Real,const opencascade::handle<Adaptor3d_HVertex> &,const opencascade::handle<Adaptor2d_Curve2d> &,const Standard_Real >()  , py::arg("P"),  py::arg("Tol"),  py::arg("V"),  py::arg("A"),  py::arg("Parameter") )
        .def(py::init< const gp_Pnt &,const Standard_Real,const opencascade::handle<Adaptor2d_Curve2d> &,const Standard_Real >()  , py::arg("P"),  py::arg("Tol"),  py::arg("A"),  py::arg("Parameter") )
    // custom constructors
    // methods
        .def("SetValue",
             (void (IntPatch_ThePathPointOfTheSOnBounds::*)( const gp_Pnt & ,  const Standard_Real ,  const opencascade::handle<Adaptor3d_HVertex> & ,  const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) ) static_cast<void (IntPatch_ThePathPointOfTheSOnBounds::*)( const gp_Pnt & ,  const Standard_Real ,  const opencascade::handle<Adaptor3d_HVertex> & ,  const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) >(&IntPatch_ThePathPointOfTheSOnBounds::SetValue),
             R"#(None)#"  , py::arg("P"),  py::arg("Tol"),  py::arg("V"),  py::arg("A"),  py::arg("Parameter")
          )
        .def("SetValue",
             (void (IntPatch_ThePathPointOfTheSOnBounds::*)( const gp_Pnt & ,  const Standard_Real ,  const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) ) static_cast<void (IntPatch_ThePathPointOfTheSOnBounds::*)( const gp_Pnt & ,  const Standard_Real ,  const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real  ) >(&IntPatch_ThePathPointOfTheSOnBounds::SetValue),
             R"#(None)#"  , py::arg("P"),  py::arg("Tol"),  py::arg("A"),  py::arg("Parameter")
          )
        .def("Tolerance",
             (Standard_Real (IntPatch_ThePathPointOfTheSOnBounds::*)() const) static_cast<Standard_Real (IntPatch_ThePathPointOfTheSOnBounds::*)() const>(&IntPatch_ThePathPointOfTheSOnBounds::Tolerance),
             R"#(None)#" 
          )
        .def("IsNew",
             (Standard_Boolean (IntPatch_ThePathPointOfTheSOnBounds::*)() const) static_cast<Standard_Boolean (IntPatch_ThePathPointOfTheSOnBounds::*)() const>(&IntPatch_ThePathPointOfTheSOnBounds::IsNew),
             R"#(None)#" 
          )
        .def("Parameter",
             (Standard_Real (IntPatch_ThePathPointOfTheSOnBounds::*)() const) static_cast<Standard_Real (IntPatch_ThePathPointOfTheSOnBounds::*)() const>(&IntPatch_ThePathPointOfTheSOnBounds::Parameter),
             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("Value",
             (const gp_Pnt & (IntPatch_ThePathPointOfTheSOnBounds::*)() const) static_cast<const gp_Pnt & (IntPatch_ThePathPointOfTheSOnBounds::*)() const>(&IntPatch_ThePathPointOfTheSOnBounds::Value),
             R"#(None)#"
             
         )
       .def("Vertex",
             (const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_ThePathPointOfTheSOnBounds::*)() const) static_cast<const opencascade::handle<Adaptor3d_HVertex> & (IntPatch_ThePathPointOfTheSOnBounds::*)() const>(&IntPatch_ThePathPointOfTheSOnBounds::Vertex),
             R"#(None)#"
             
         )
       .def("Arc",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_ThePathPointOfTheSOnBounds::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_ThePathPointOfTheSOnBounds::*)() const>(&IntPatch_ThePathPointOfTheSOnBounds::Arc),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_TheSOnBounds , shared_ptr<IntPatch_TheSOnBounds>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntPatch_TheSOnBounds::*)( IntPatch_ArcFunction & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_TheSOnBounds::*)( IntPatch_ArcFunction & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) >(&IntPatch_TheSOnBounds::Perform),
             R"#(Algorithm to find the points and parts of curves of Domain (domain of of restriction of a surface) which verify F = 0. TolBoundary defines if a curve is on Q. TolTangency defines if a point is on Q.)#"  , py::arg("F"),  py::arg("Domain"),  py::arg("TolBoundary"),  py::arg("TolTangency"),  py::arg("RecheckOnRegularity")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_TheSOnBounds::*)() const) static_cast<Standard_Boolean (IntPatch_TheSOnBounds::*)() const>(&IntPatch_TheSOnBounds::IsDone),
             R"#(Returns True if the calculus was successful.)#" 
          )
        .def("AllArcSolution",
             (Standard_Boolean (IntPatch_TheSOnBounds::*)() const) static_cast<Standard_Boolean (IntPatch_TheSOnBounds::*)() const>(&IntPatch_TheSOnBounds::AllArcSolution),
             R"#(Returns true if all arc of the Arcs are solution (inside the surface). An exception is raised if IsDone returns False.)#" 
          )
        .def("NbPoints",
             (Standard_Integer (IntPatch_TheSOnBounds::*)() const) static_cast<Standard_Integer (IntPatch_TheSOnBounds::*)() const>(&IntPatch_TheSOnBounds::NbPoints),
             R"#(Returns the number of resulting points. An exception is raised if IsDone returns False (NotDone).)#" 
          )
        .def("Point",
             (const IntPatch_ThePathPointOfTheSOnBounds & (IntPatch_TheSOnBounds::*)( const Standard_Integer  ) const) static_cast<const IntPatch_ThePathPointOfTheSOnBounds & (IntPatch_TheSOnBounds::*)( const Standard_Integer  ) const>(&IntPatch_TheSOnBounds::Point),
             R"#(Returns the resulting point of range Index. The exception NotDone is raised if IsDone() returns False. The exception OutOfRange is raised if Index <= 0 or Index > NbPoints.)#"  , py::arg("Index")
          )
        .def("NbSegments",
             (Standard_Integer (IntPatch_TheSOnBounds::*)() const) static_cast<Standard_Integer (IntPatch_TheSOnBounds::*)() const>(&IntPatch_TheSOnBounds::NbSegments),
             R"#(Returns the number of the resulting segments. An exception is raised if IsDone returns False (NotDone).)#" 
          )
        .def("Segment",
             (const IntPatch_TheSegmentOfTheSOnBounds & (IntPatch_TheSOnBounds::*)( const Standard_Integer  ) const) static_cast<const IntPatch_TheSegmentOfTheSOnBounds & (IntPatch_TheSOnBounds::*)( const Standard_Integer  ) const>(&IntPatch_TheSOnBounds::Segment),
             R"#(Returns the resulting segment of range Index. The exception NotDone is raised if IsDone() returns False. The exception OutOfRange is raised if Index <= 0 or Index > NbPoints.)#"  , 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 IntPatch_TheSearchInside from ./opencascade/IntPatch_TheSearchInside.hxx
    klass = m.attr("IntPatch_TheSearchInside");


    // nested enums

    static_cast<py::class_<IntPatch_TheSearchInside , shared_ptr<IntPatch_TheSearchInside>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< IntPatch_TheSurfFunction &,const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const Standard_Real >()  , py::arg("F"),  py::arg("Surf"),  py::arg("T"),  py::arg("Epsilon") )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntPatch_TheSearchInside::*)( IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real  ) ) static_cast<void (IntPatch_TheSearchInside::*)( IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real  ) >(&IntPatch_TheSearchInside::Perform),
             R"#(None)#"  , py::arg("F"),  py::arg("Surf"),  py::arg("T"),  py::arg("Epsilon")
          )
        .def("Perform",
             (void (IntPatch_TheSearchInside::*)( IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_TheSearchInside::*)( IntPatch_TheSurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_TheSearchInside::Perform),
             R"#(None)#"  , py::arg("F"),  py::arg("Surf"),  py::arg("UStart"),  py::arg("VStart")
          )
        .def("IsDone",
             (Standard_Boolean (IntPatch_TheSearchInside::*)() const) static_cast<Standard_Boolean (IntPatch_TheSearchInside::*)() const>(&IntPatch_TheSearchInside::IsDone),
             R"#(None)#" 
          )
        .def("NbPoints",
             (Standard_Integer (IntPatch_TheSearchInside::*)() const) static_cast<Standard_Integer (IntPatch_TheSearchInside::*)() const>(&IntPatch_TheSearchInside::NbPoints),
             R"#(Returns the number of points. The exception NotDone if raised if IsDone returns False.)#" 
          )
        .def("Value",
             (const IntSurf_InteriorPoint & (IntPatch_TheSearchInside::*)( const Standard_Integer  ) const) static_cast<const IntSurf_InteriorPoint & (IntPatch_TheSearchInside::*)( const Standard_Integer  ) const>(&IntPatch_TheSearchInside::Value),
             R"#(Returns the point of range Index. The exception NotDone if raised if IsDone returns False. The exception OutOfRange if raised if Index <= 0 or Index > NbPoints.)#"  , 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 IntPatch_TheSegmentOfTheSOnBounds from ./opencascade/IntPatch_TheSegmentOfTheSOnBounds.hxx
    klass = m.attr("IntPatch_TheSegmentOfTheSOnBounds");


    // nested enums

    static_cast<py::class_<IntPatch_TheSegmentOfTheSOnBounds , shared_ptr<IntPatch_TheSegmentOfTheSOnBounds>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetValue",
             (void (IntPatch_TheSegmentOfTheSOnBounds::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (IntPatch_TheSegmentOfTheSOnBounds::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_TheSegmentOfTheSOnBounds::SetValue),
             R"#(Defines the concerned arc.)#"  , py::arg("A")
          )
        .def("SetLimitPoint",
             (void (IntPatch_TheSegmentOfTheSOnBounds::*)( const IntPatch_ThePathPointOfTheSOnBounds & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_TheSegmentOfTheSOnBounds::*)( const IntPatch_ThePathPointOfTheSOnBounds & ,  const Standard_Boolean  ) >(&IntPatch_TheSegmentOfTheSOnBounds::SetLimitPoint),
             R"#(Defines the first point or the last point, depending on the value of the boolean First.)#"  , py::arg("V"),  py::arg("First")
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_TheSegmentOfTheSOnBounds::*)() const) static_cast<Standard_Boolean (IntPatch_TheSegmentOfTheSOnBounds::*)() const>(&IntPatch_TheSegmentOfTheSOnBounds::HasFirstPoint),
             R"#(Returns True if there is a vertex (ThePathPoint) defining the lowest valid parameter on the arc.)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_TheSegmentOfTheSOnBounds::*)() const) static_cast<Standard_Boolean (IntPatch_TheSegmentOfTheSOnBounds::*)() const>(&IntPatch_TheSegmentOfTheSOnBounds::HasLastPoint),
             R"#(Returns True if there is a vertex (ThePathPoint) defining the greatest valid parameter on the arc.)#" 
          )
    // 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<Adaptor2d_Curve2d> & (IntPatch_TheSegmentOfTheSOnBounds::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_TheSegmentOfTheSOnBounds::*)() const>(&IntPatch_TheSegmentOfTheSOnBounds::Curve),
             R"#(Returns the geometric curve on the surface 's domain which is solution.)#"
             
         )
       .def("FirstPoint",
             (const IntPatch_ThePathPointOfTheSOnBounds & (IntPatch_TheSegmentOfTheSOnBounds::*)() const) static_cast<const IntPatch_ThePathPointOfTheSOnBounds & (IntPatch_TheSegmentOfTheSOnBounds::*)() const>(&IntPatch_TheSegmentOfTheSOnBounds::FirstPoint),
             R"#(Returns the first point.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_ThePathPointOfTheSOnBounds & (IntPatch_TheSegmentOfTheSOnBounds::*)() const) static_cast<const IntPatch_ThePathPointOfTheSOnBounds & (IntPatch_TheSegmentOfTheSOnBounds::*)() const>(&IntPatch_TheSegmentOfTheSOnBounds::LastPoint),
             R"#(Returns the last point.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_TheSurfFunction , shared_ptr<IntPatch_TheSurfFunction>  , math_FunctionSetWithDerivatives >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const IntSurf_Quadric & >()  , py::arg("PS"),  py::arg("IS") )
        .def(py::init< const IntSurf_Quadric & >()  , py::arg("IS") )
    // custom constructors
    // methods
        .def("Set",
             (void (IntPatch_TheSurfFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<void (IntPatch_TheSurfFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntPatch_TheSurfFunction::Set),
             R"#(None)#"  , py::arg("PS")
          )
        .def("SetImplicitSurface",
             (void (IntPatch_TheSurfFunction::*)( const IntSurf_Quadric &  ) ) static_cast<void (IntPatch_TheSurfFunction::*)( const IntSurf_Quadric &  ) >(&IntPatch_TheSurfFunction::SetImplicitSurface),
             R"#(None)#"  , py::arg("IS")
          )
        .def("Set",
             (void (IntPatch_TheSurfFunction::*)( const Standard_Real  ) ) static_cast<void (IntPatch_TheSurfFunction::*)( const Standard_Real  ) >(&IntPatch_TheSurfFunction::Set),
             R"#(None)#"  , py::arg("Tolerance")
          )
        .def("NbVariables",
             (Standard_Integer (IntPatch_TheSurfFunction::*)() const) static_cast<Standard_Integer (IntPatch_TheSurfFunction::*)() const>(&IntPatch_TheSurfFunction::NbVariables),
             R"#(None)#" 
          )
        .def("NbEquations",
             (Standard_Integer (IntPatch_TheSurfFunction::*)() const) static_cast<Standard_Integer (IntPatch_TheSurfFunction::*)() const>(&IntPatch_TheSurfFunction::NbEquations),
             R"#(None)#" 
          )
        .def("Value",
             (Standard_Boolean (IntPatch_TheSurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) ) static_cast<Standard_Boolean (IntPatch_TheSurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) >(&IntPatch_TheSurfFunction::Value),
             R"#(None)#"  , py::arg("X"),  py::arg("F")
          )
        .def("Derivatives",
             (Standard_Boolean (IntPatch_TheSurfFunction::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (IntPatch_TheSurfFunction::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) >(&IntPatch_TheSurfFunction::Derivatives),
             R"#(None)#"  , py::arg("X"),  py::arg("D")
          )
        .def("Values",
             (Standard_Boolean (IntPatch_TheSurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (IntPatch_TheSurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) >(&IntPatch_TheSurfFunction::Values),
             R"#(None)#"  , py::arg("X"),  py::arg("F"),  py::arg("D")
          )
        .def("Root",
             (Standard_Real (IntPatch_TheSurfFunction::*)() const) static_cast<Standard_Real (IntPatch_TheSurfFunction::*)() const>(&IntPatch_TheSurfFunction::Root),
             R"#(None)#" 
          )
        .def("Tolerance",
             (Standard_Real (IntPatch_TheSurfFunction::*)() const) static_cast<Standard_Real (IntPatch_TheSurfFunction::*)() const>(&IntPatch_TheSurfFunction::Tolerance),
             R"#(Returns the value Tol so that if Abs(Func.Root())<Tol the function is considered null.)#" 
          )
        .def("IsTangent",
             (Standard_Boolean (IntPatch_TheSurfFunction::*)() ) static_cast<Standard_Boolean (IntPatch_TheSurfFunction::*)() >(&IntPatch_TheSurfFunction::IsTangent),
             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("Point",
             (const gp_Pnt & (IntPatch_TheSurfFunction::*)() const) static_cast<const gp_Pnt & (IntPatch_TheSurfFunction::*)() const>(&IntPatch_TheSurfFunction::Point),
             R"#(None)#"
             
         )
       .def("Direction3d",
             (const gp_Vec & (IntPatch_TheSurfFunction::*)() ) static_cast<const gp_Vec & (IntPatch_TheSurfFunction::*)() >(&IntPatch_TheSurfFunction::Direction3d),
             R"#(None)#"
             
         )
       .def("Direction2d",
             (const gp_Dir2d & (IntPatch_TheSurfFunction::*)() ) static_cast<const gp_Dir2d & (IntPatch_TheSurfFunction::*)() >(&IntPatch_TheSurfFunction::Direction2d),
             R"#(None)#"
             
         )
       .def("PSurface",
             (const opencascade::handle<Adaptor3d_Surface> & (IntPatch_TheSurfFunction::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (IntPatch_TheSurfFunction::*)() const>(&IntPatch_TheSurfFunction::PSurface),
             R"#(None)#"
             
         )
       .def("ISurface",
             (const IntSurf_Quadric & (IntPatch_TheSurfFunction::*)() const) static_cast<const IntSurf_Quadric & (IntPatch_TheSurfFunction::*)() const>(&IntPatch_TheSurfFunction::ISurface),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<IntPatch_WLineTool , shared_ptr<IntPatch_WLineTool>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("ComputePurgedWLine_s",
                    (opencascade::handle<IntPatch_WLine> (*)( const opencascade::handle<IntPatch_WLine> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) ) static_cast<opencascade::handle<IntPatch_WLine> (*)( const opencascade::handle<IntPatch_WLine> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) >(&IntPatch_WLineTool::ComputePurgedWLine),
                    R"#(I Removes equal points (leave one of equal points) from theWLine and recompute vertex parameters.)#"  , py::arg("theWLine"),  py::arg("theS1"),  py::arg("theS2"),  py::arg("theDom1"),  py::arg("theDom2")
          )
        .def_static("JoinWLines_s",
                    (void (*)( NCollection_Sequence<opencascade::handle<IntPatch_Line>> & ,  NCollection_Sequence<IntPatch_Point> & ,  opencascade::handle<Adaptor3d_Surface> ,  opencascade::handle<Adaptor3d_Surface> ,  const Standard_Real  ) ) static_cast<void (*)( NCollection_Sequence<opencascade::handle<IntPatch_Line>> & ,  NCollection_Sequence<IntPatch_Point> & ,  opencascade::handle<Adaptor3d_Surface> ,  opencascade::handle<Adaptor3d_Surface> ,  const Standard_Real  ) >(&IntPatch_WLineTool::JoinWLines),
                    R"#(Joins all WLines from theSlin to one if it is possible and records the result into theSlin again. Lines will be kept to be split if: a) they are separated (has no common points); b) resulted line (after joining) go through seam-edges or surface boundaries.)#"  , py::arg("theSlin"),  py::arg("theSPnt"),  py::arg("theS1"),  py::arg("theS2"),  py::arg("theTol3D")
          )
        .def_static("ExtendTwoWLines_s",
                    (void (*)( NCollection_Sequence<opencascade::handle<IntPatch_Line>> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real *const ,  const Bnd_Box2d & ,  const Bnd_Box2d & ,  const NCollection_List<gp_Pnt> &  ) ) static_cast<void (*)( NCollection_Sequence<opencascade::handle<IntPatch_Line>> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real *const ,  const Bnd_Box2d & ,  const Bnd_Box2d & ,  const NCollection_List<gp_Pnt> &  ) >(&IntPatch_WLineTool::ExtendTwoWLines),
                    R"#(Extends every line from theSlin (if it is possible) to be started/finished in strictly determined point (in the place of joint of two lines). As result, some gaps between two lines will vanish. The Walking lines are supposed (algorithm will do nothing for not-Walking line) to be computed as a result of intersection. Both theS1 and theS2 must be quadrics. Other cases are not supported. theArrPeriods must be filled as follows (every value must not be negative; if the surface is not periodic the period must be equal to 0.0 strictly): {<U-period of 1st surface>, <V-period of 1st surface>, <U-period of 2nd surface>, <V-period of 2nd surface>}. theListOfCriticalPoints must contain 3D-points where joining is disabled.)#"  , py::arg("theSlin"),  py::arg("theS1"),  py::arg("theS2"),  py::arg("theToler3D"),  py::arg("theArrPeriods"),  py::arg("theBoxS1"),  py::arg("theBoxS2"),  py::arg("theListOfCriticalPoints")
          )
    // 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 IntPatch_ALine from ./opencascade/IntPatch_ALine.hxx
    klass = m.attr("IntPatch_ALine");


    // nested enums

    static_cast<py::class_<IntPatch_ALine ,opencascade::handle<IntPatch_ALine>  , IntPatch_Line >>(klass)
    // constructors
        .def(py::init< const IntAna_Curve &,const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("C"),  py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const IntAna_Curve &,const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("C"),  py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const IntAna_Curve &,const Standard_Boolean >()  , py::arg("C"),  py::arg("Tang") )
    // custom constructors
    // methods
        .def("AddVertex",
             (void (IntPatch_ALine::*)( const IntPatch_Point &  ) ) static_cast<void (IntPatch_ALine::*)( const IntPatch_Point &  ) >(&IntPatch_ALine::AddVertex),
             R"#(To add a vertex in the list.)#"  , py::arg("Pnt")
          )
        .def("Replace",
             (void (IntPatch_ALine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_ALine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_ALine::Replace),
             R"#(Replaces the element of range Index in the list of points.)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("SetFirstPoint",
             (void (IntPatch_ALine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_ALine::*)( const Standard_Integer  ) >(&IntPatch_ALine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_ALine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_ALine::*)( const Standard_Integer  ) >(&IntPatch_ALine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("FirstParameter",
             (Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const) static_cast<Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const>(&IntPatch_ALine::FirstParameter),
             R"#(Returns the first parameter on the intersection line. If IsIncluded returns True, Value and D1 methods can be call with a parameter equal to FirstParameter. Otherwise, the parameter must be greater than FirstParameter.)#"  , py::arg("IsIncluded")
          )
        .def("LastParameter",
             (Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const) static_cast<Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const>(&IntPatch_ALine::LastParameter),
             R"#(Returns the last parameter on the intersection line. If IsIncluded returns True, Value and D1 methods can be call with a parameter equal to LastParameter. Otherwise, the parameter must be less than LastParameter.)#"  , py::arg("IsIncluded")
          )
        .def("Value",
             (gp_Pnt (IntPatch_ALine::*)( const Standard_Real  ) ) static_cast<gp_Pnt (IntPatch_ALine::*)( const Standard_Real  ) >(&IntPatch_ALine::Value),
             R"#(Returns the point of parameter U on the analytic intersection line.)#"  , py::arg("U")
          )
        .def("D1",
             (Standard_Boolean (IntPatch_ALine::*)( const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) ) static_cast<Standard_Boolean (IntPatch_ALine::*)( const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) >(&IntPatch_ALine::D1),
             R"#(Returns Standard_True when the derivative at parameter U is defined on the analytic intersection line. In that case, Du is the derivative. Returns Standard_False when it is not possible to evaluate the derivative. In both cases, P is the point at parameter U on the intersection.)#"  , py::arg("U"),  py::arg("P"),  py::arg("Du")
          )
        .def("FindParameter",
             (void (IntPatch_ALine::*)( const gp_Pnt & ,  NCollection_List<Standard_Real> &  ) const) static_cast<void (IntPatch_ALine::*)( const gp_Pnt & ,  NCollection_List<Standard_Real> &  ) const>(&IntPatch_ALine::FindParameter),
             R"#(Tries to find the parameters of the point P on the curve. If the method returns False, the "projection" is impossible. If the method returns True at least one parameter has been found. theParams is always sorted in ascending order.)#"  , py::arg("P"),  py::arg("theParams")
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_ALine::*)() const) static_cast<Standard_Boolean (IntPatch_ALine::*)() const>(&IntPatch_ALine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_ALine::*)() const) static_cast<Standard_Boolean (IntPatch_ALine::*)() const>(&IntPatch_ALine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_ALine::*)() const) static_cast<Standard_Integer (IntPatch_ALine::*)() const>(&IntPatch_ALine::NbVertex),
             R"#(None)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_ALine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_ALine::*)( const Standard_Integer  ) const>(&IntPatch_ALine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ChangeVertex",
             (IntPatch_Point & (IntPatch_ALine::*)( const Standard_Integer  ) ) static_cast<IntPatch_Point & (IntPatch_ALine::*)( const Standard_Integer  ) >(&IntPatch_ALine::ChangeVertex),
             R"#(Allows modifying the vertex with index theIndex on the line.)#"  , py::arg("theIndex")
          )
        .def("ComputeVertexParameters",
             (void (IntPatch_ALine::*)( const Standard_Real  ) ) static_cast<void (IntPatch_ALine::*)( const Standard_Real  ) >(&IntPatch_ALine::ComputeVertexParameters),
             R"#(Set the parameters of all the vertex on the line. if a vertex is already in the line, its parameter is modified else a new point in the line is inserted.)#"  , py::arg("Tol")
          )
        .def("Replace",
             (void (IntPatch_ALine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_ALine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_ALine::Replace),
             R"#(Replaces the element of range Index in the list of points.)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("SetFirstPoint",
             (void (IntPatch_ALine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_ALine::*)( const Standard_Integer  ) >(&IntPatch_ALine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_ALine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_ALine::*)( const Standard_Integer  ) >(&IntPatch_ALine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("FirstParameter",
             (Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const) static_cast<Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const>(&IntPatch_ALine::FirstParameter),
             R"#(Returns the first parameter on the intersection line. If IsIncluded returns True, Value and D1 methods can be call with a parameter equal to FirstParameter. Otherwise, the parameter must be greater than FirstParameter.)#"  , py::arg("IsIncluded")
          )
        .def("LastParameter",
             (Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const) static_cast<Standard_Real (IntPatch_ALine::*)( Standard_Boolean &  ) const>(&IntPatch_ALine::LastParameter),
             R"#(Returns the last parameter on the intersection line. If IsIncluded returns True, Value and D1 methods can be call with a parameter equal to LastParameter. Otherwise, the parameter must be less than LastParameter.)#"  , py::arg("IsIncluded")
          )
        .def("Value",
             (gp_Pnt (IntPatch_ALine::*)( const Standard_Real  ) ) static_cast<gp_Pnt (IntPatch_ALine::*)( const Standard_Real  ) >(&IntPatch_ALine::Value),
             R"#(Returns the point of parameter U on the analytic intersection line.)#"  , py::arg("U")
          )
        .def("D1",
             (Standard_Boolean (IntPatch_ALine::*)( const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) ) static_cast<Standard_Boolean (IntPatch_ALine::*)( const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) >(&IntPatch_ALine::D1),
             R"#(Returns Standard_True when the derivative at parameter U is defined on the analytic intersection line. In that case, Du is the derivative. Returns Standard_False when it is not possible to evaluate the derivative. In both cases, P is the point at parameter U on the intersection.)#"  , py::arg("U"),  py::arg("P"),  py::arg("Du")
          )
        .def("FindParameter",
             (void (IntPatch_ALine::*)( const gp_Pnt & ,  NCollection_List<Standard_Real> &  ) const) static_cast<void (IntPatch_ALine::*)( const gp_Pnt & ,  NCollection_List<Standard_Real> &  ) const>(&IntPatch_ALine::FindParameter),
             R"#(Tries to find the parameters of the point P on the curve. If the method returns False, the "projection" is impossible. If the method returns True at least one parameter has been found. theParams is always sorted in ascending order.)#"  , py::arg("theP"),  py::arg("theParams")
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_ALine::*)() const) static_cast<Standard_Boolean (IntPatch_ALine::*)() const>(&IntPatch_ALine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_ALine::*)() const) static_cast<Standard_Boolean (IntPatch_ALine::*)() const>(&IntPatch_ALine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_ALine::*)() const) static_cast<Standard_Integer (IntPatch_ALine::*)() const>(&IntPatch_ALine::NbVertex),
             R"#(None)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_ALine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_ALine::*)( const Standard_Integer  ) const>(&IntPatch_ALine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , 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 * (*)() >(&IntPatch_ALine::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IntPatch_ALine::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("FirstPoint",
             (const IntPatch_Point & (IntPatch_ALine::*)() const) static_cast<const IntPatch_Point & (IntPatch_ALine::*)() const>(&IntPatch_ALine::FirstPoint),
             R"#(Returns the IntPoint corresponding to the FirstPoint. An exception is raised when HasFirstPoint returns False.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_ALine::*)() const) static_cast<const IntPatch_Point & (IntPatch_ALine::*)() const>(&IntPatch_ALine::LastPoint),
             R"#(Returns the IntPoint corresponding to the LastPoint. An exception is raised when HasLastPoint returns False.)#"
             
         )
       .def("Curve",
             (const IntAna_Curve & (IntPatch_ALine::*)() const) static_cast<const IntAna_Curve & (IntPatch_ALine::*)() const>(&IntPatch_ALine::Curve),
             R"#(None)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (IntPatch_ALine::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IntPatch_ALine::*)() const>(&IntPatch_ALine::DynamicType),
             R"#(None)#"
             
         )
       .def("FirstPoint",
             (const IntPatch_Point & (IntPatch_ALine::*)() const) static_cast<const IntPatch_Point & (IntPatch_ALine::*)() const>(&IntPatch_ALine::FirstPoint),
             R"#(Returns the IntPoint corresponding to the FirstPoint. An exception is raised when HasFirstPoint returns False.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_ALine::*)() const) static_cast<const IntPatch_Point & (IntPatch_ALine::*)() const>(&IntPatch_ALine::LastPoint),
             R"#(Returns the IntPoint corresponding to the LastPoint. An exception is raised when HasLastPoint returns False.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_GLine ,opencascade::handle<IntPatch_GLine>  , IntPatch_Line >>(klass)
    // constructors
        .def(py::init< const gp_Lin &,const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("L"),  py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const gp_Lin &,const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("L"),  py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const gp_Lin &,const Standard_Boolean >()  , py::arg("L"),  py::arg("Tang") )
        .def(py::init< const gp_Circ &,const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("C"),  py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const gp_Circ &,const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("C"),  py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const gp_Circ &,const Standard_Boolean >()  , py::arg("C"),  py::arg("Tang") )
        .def(py::init< const gp_Elips &,const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("E"),  py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const gp_Elips &,const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("E"),  py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const gp_Elips &,const Standard_Boolean >()  , py::arg("E"),  py::arg("Tang") )
        .def(py::init< const gp_Parab &,const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("P"),  py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const gp_Parab &,const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("P"),  py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const gp_Parab &,const Standard_Boolean >()  , py::arg("P"),  py::arg("Tang") )
        .def(py::init< const gp_Hypr &,const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("H"),  py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const gp_Hypr &,const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("H"),  py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const gp_Hypr &,const Standard_Boolean >()  , py::arg("H"),  py::arg("Tang") )
    // custom constructors
    // methods
        .def("AddVertex",
             (void (IntPatch_GLine::*)( const IntPatch_Point &  ) ) static_cast<void (IntPatch_GLine::*)( const IntPatch_Point &  ) >(&IntPatch_GLine::AddVertex),
             R"#(To add a vertex in the list.)#"  , py::arg("Pnt")
          )
        .def("Replace",
             (void (IntPatch_GLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_GLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_GLine::Replace),
             R"#(To replace the element of range Index in the list of points.)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("SetFirstPoint",
             (void (IntPatch_GLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_GLine::*)( const Standard_Integer  ) >(&IntPatch_GLine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_GLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_GLine::*)( const Standard_Integer  ) >(&IntPatch_GLine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("Line",
             (gp_Lin (IntPatch_GLine::*)() const) static_cast<gp_Lin (IntPatch_GLine::*)() const>(&IntPatch_GLine::Line),
             R"#(Returns the Lin from gp corresponding to the intersection when ArcType returns IntPatch_Line.)#" 
          )
        .def("Circle",
             (gp_Circ (IntPatch_GLine::*)() const) static_cast<gp_Circ (IntPatch_GLine::*)() const>(&IntPatch_GLine::Circle),
             R"#(Returns the Circ from gp corresponding to the intersection when ArcType returns IntPatch_Circle.)#" 
          )
        .def("Ellipse",
             (gp_Elips (IntPatch_GLine::*)() const) static_cast<gp_Elips (IntPatch_GLine::*)() const>(&IntPatch_GLine::Ellipse),
             R"#(Returns the Elips from gp corresponding to the intersection when ArcType returns IntPatch_Ellipse.)#" 
          )
        .def("Parabola",
             (gp_Parab (IntPatch_GLine::*)() const) static_cast<gp_Parab (IntPatch_GLine::*)() const>(&IntPatch_GLine::Parabola),
             R"#(Returns the Parab from gp corresponding to the intersection when ArcType returns IntPatch_Parabola.)#" 
          )
        .def("Hyperbola",
             (gp_Hypr (IntPatch_GLine::*)() const) static_cast<gp_Hypr (IntPatch_GLine::*)() const>(&IntPatch_GLine::Hyperbola),
             R"#(Returns the Hypr from gp corresponding to the intersection when ArcType returns IntPatch_Hyperbola.)#" 
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_GLine::*)() const) static_cast<Standard_Boolean (IntPatch_GLine::*)() const>(&IntPatch_GLine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_GLine::*)() const) static_cast<Standard_Boolean (IntPatch_GLine::*)() const>(&IntPatch_GLine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_GLine::*)() const) static_cast<Standard_Integer (IntPatch_GLine::*)() const>(&IntPatch_GLine::NbVertex),
             R"#(None)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_GLine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_GLine::*)( const Standard_Integer  ) const>(&IntPatch_GLine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ComputeVertexParameters",
             (void (IntPatch_GLine::*)( const Standard_Real  ) ) static_cast<void (IntPatch_GLine::*)( const Standard_Real  ) >(&IntPatch_GLine::ComputeVertexParameters),
             R"#(Set the parameters of all the vertex on the line. if a vertex is already in the line, its parameter is modified else a new point in the line is inserted.)#"  , py::arg("Tol")
          )
        .def("SetFirstPoint",
             (void (IntPatch_GLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_GLine::*)( const Standard_Integer  ) >(&IntPatch_GLine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_GLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_GLine::*)( const Standard_Integer  ) >(&IntPatch_GLine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("Line",
             (gp_Lin (IntPatch_GLine::*)() const) static_cast<gp_Lin (IntPatch_GLine::*)() const>(&IntPatch_GLine::Line),
             R"#(Returns the Lin from gp corresponding to the intersection when ArcType returns IntPatch_Line.)#" 
          )
        .def("Circle",
             (gp_Circ (IntPatch_GLine::*)() const) static_cast<gp_Circ (IntPatch_GLine::*)() const>(&IntPatch_GLine::Circle),
             R"#(Returns the Circ from gp corresponding to the intersection when ArcType returns IntPatch_Circle.)#" 
          )
        .def("Ellipse",
             (gp_Elips (IntPatch_GLine::*)() const) static_cast<gp_Elips (IntPatch_GLine::*)() const>(&IntPatch_GLine::Ellipse),
             R"#(Returns the Elips from gp corresponding to the intersection when ArcType returns IntPatch_Ellipse.)#" 
          )
        .def("Parabola",
             (gp_Parab (IntPatch_GLine::*)() const) static_cast<gp_Parab (IntPatch_GLine::*)() const>(&IntPatch_GLine::Parabola),
             R"#(Returns the Parab from gp corresponding to the intersection when ArcType returns IntPatch_Parabola.)#" 
          )
        .def("Hyperbola",
             (gp_Hypr (IntPatch_GLine::*)() const) static_cast<gp_Hypr (IntPatch_GLine::*)() const>(&IntPatch_GLine::Hyperbola),
             R"#(Returns the Hypr from gp corresponding to the intersection when ArcType returns IntPatch_Hyperbola.)#" 
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_GLine::*)() const) static_cast<Standard_Boolean (IntPatch_GLine::*)() const>(&IntPatch_GLine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_GLine::*)() const) static_cast<Standard_Boolean (IntPatch_GLine::*)() const>(&IntPatch_GLine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_GLine::*)() const) static_cast<Standard_Integer (IntPatch_GLine::*)() const>(&IntPatch_GLine::NbVertex),
             R"#(None)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_GLine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_GLine::*)( const Standard_Integer  ) const>(&IntPatch_GLine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , 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 * (*)() >(&IntPatch_GLine::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IntPatch_GLine::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("FirstPoint",
             (const IntPatch_Point & (IntPatch_GLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_GLine::*)() const>(&IntPatch_GLine::FirstPoint),
             R"#(Returns the IntPoint corresponding to the FirstPoint. An exception is raised when HasFirstPoint returns False.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_GLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_GLine::*)() const>(&IntPatch_GLine::LastPoint),
             R"#(Returns the IntPoint corresponding to the LastPoint. An exception is raised when HasLastPoint returns False.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (IntPatch_GLine::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IntPatch_GLine::*)() const>(&IntPatch_GLine::DynamicType),
             R"#(None)#"
             
         )
       .def("FirstPoint",
             (const IntPatch_Point & (IntPatch_GLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_GLine::*)() const>(&IntPatch_GLine::FirstPoint),
             R"#(Returns the IntPoint corresponding to the FirstPoint. An exception is raised when HasFirstPoint returns False.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_GLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_GLine::*)() const>(&IntPatch_GLine::LastPoint),
             R"#(Returns the IntPoint corresponding to the LastPoint. An exception is raised when HasLastPoint returns False.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_PointLine ,opencascade::handle<IntPatch_PointLine> ,Py_IntPatch_PointLine , IntPatch_Line >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("AddVertex",
             (void (IntPatch_PointLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_PointLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) >(&IntPatch_PointLine::AddVertex),
             R"#(Adds a vertex in the list. If theIsPrepend == TRUE the new vertex will be added before the first element of vertices sequence. Otherwise, to the end of the sequence)#"  , py::arg("Pnt"),  py::arg("theIsPrepend")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_PointLine::*)() const) static_cast<Standard_Integer (IntPatch_PointLine::*)() const>(&IntPatch_PointLine::NbPnts),
             R"#(Returns the number of intersection points.)#" 
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_PointLine::*)() const) static_cast<Standard_Integer (IntPatch_PointLine::*)() const>(&IntPatch_PointLine::NbVertex),
             R"#(Returns number of vertices (IntPatch_Point) of the line)#" 
          )
        .def("Point",
             (const IntSurf_PntOn2S & (IntPatch_PointLine::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (IntPatch_PointLine::*)( const Standard_Integer  ) const>(&IntPatch_PointLine::Point),
             R"#(Returns the intersection point of range Index.)#"  , py::arg("Index")
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_PointLine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_PointLine::*)( const Standard_Integer  ) const>(&IntPatch_PointLine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ChangeVertex",
             (IntPatch_Point & (IntPatch_PointLine::*)( const Standard_Integer  ) ) static_cast<IntPatch_Point & (IntPatch_PointLine::*)( const Standard_Integer  ) >(&IntPatch_PointLine::ChangeVertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ClearVertexes",
             (void (IntPatch_PointLine::*)() ) static_cast<void (IntPatch_PointLine::*)() >(&IntPatch_PointLine::ClearVertexes),
             R"#(Removes vertices from the line)#" 
          )
        .def("RemoveVertex",
             (void (IntPatch_PointLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_PointLine::*)( const Standard_Integer  ) >(&IntPatch_PointLine::RemoveVertex),
             R"#(Removes single vertex from the line)#"  , py::arg("theIndex")
          )
        .def("Curve",
             (opencascade::handle<IntSurf_LineOn2S> (IntPatch_PointLine::*)() const) static_cast<opencascade::handle<IntSurf_LineOn2S> (IntPatch_PointLine::*)() const>(&IntPatch_PointLine::Curve),
             R"#(Returns set of intersection points)#" 
          )
        .def("IsOutSurf1Box",
             (Standard_Boolean (IntPatch_PointLine::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (IntPatch_PointLine::*)( const gp_Pnt2d &  ) const>(&IntPatch_PointLine::IsOutSurf1Box),
             R"#(Returns TRUE if P1 is out of the box built from the points on 1st surface)#"  , py::arg("P1")
          )
        .def("IsOutSurf2Box",
             (Standard_Boolean (IntPatch_PointLine::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (IntPatch_PointLine::*)( const gp_Pnt2d &  ) const>(&IntPatch_PointLine::IsOutSurf2Box),
             R"#(Returns TRUE if P2 is out of the box built from the points on 2nd surface)#"  , py::arg("P2")
          )
        .def("IsOutBox",
             (Standard_Boolean (IntPatch_PointLine::*)( const gp_Pnt &  ) const) static_cast<Standard_Boolean (IntPatch_PointLine::*)( const gp_Pnt &  ) const>(&IntPatch_PointLine::IsOutBox),
             R"#(Returns TRUE if P is out of the box built from 3D-points.)#"  , py::arg("P")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("CurvatureRadiusOfIntersLine_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntSurf_PntOn2S &  ) >(&IntPatch_PointLine::CurvatureRadiusOfIntersLine),
                    R"#(Returns the radius of curvature of the intersection line in given point. Returns negative value if computation is not possible.)#"  , py::arg("theS1"),  py::arg("theS2"),  py::arg("theUVPoint")
          )
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&IntPatch_PointLine::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IntPatch_PointLine::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> & (IntPatch_PointLine::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IntPatch_PointLine::*)() const>(&IntPatch_PointLine::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntPatch_PolyArc , shared_ptr<IntPatch_PolyArc>  , IntPatch_Polygo >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor2d_Curve2d> &,const Standard_Integer,const Standard_Real,const Standard_Real,const Bnd_Box2d & >()  , py::arg("A"),  py::arg("NbSample"),  py::arg("Pfirst"),  py::arg("Plast"),  py::arg("BoxOtherPolygon") )
    // custom constructors
    // methods
        .def("Closed",
             (Standard_Boolean (IntPatch_PolyArc::*)() const) static_cast<Standard_Boolean (IntPatch_PolyArc::*)() const>(&IntPatch_PolyArc::Closed),
             R"#(None)#" 
          )
        .def("NbPoints",
             (Standard_Integer (IntPatch_PolyArc::*)() const) static_cast<Standard_Integer (IntPatch_PolyArc::*)() const>(&IntPatch_PolyArc::NbPoints),
             R"#(None)#" 
          )
        .def("Point",
             (gp_Pnt2d (IntPatch_PolyArc::*)( const Standard_Integer  ) const) static_cast<gp_Pnt2d (IntPatch_PolyArc::*)( const Standard_Integer  ) const>(&IntPatch_PolyArc::Point),
             R"#(None)#"  , py::arg("Index")
          )
        .def("Parameter",
             (Standard_Real (IntPatch_PolyArc::*)( const Standard_Integer  ) const) static_cast<Standard_Real (IntPatch_PolyArc::*)( const Standard_Integer  ) const>(&IntPatch_PolyArc::Parameter),
             R"#(None)#"  , py::arg("Index")
          )
        .def("SetOffset",
             (void (IntPatch_PolyArc::*)( const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_PolyArc::*)( const Standard_Real ,  const Standard_Real  ) >(&IntPatch_PolyArc::SetOffset),
             R"#(None)#"  , py::arg("OffsetX"),  py::arg("OffsetY")
          )
    // 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 IntPatch_PolyLine from ./opencascade/IntPatch_PolyLine.hxx
    klass = m.attr("IntPatch_PolyLine");


    // nested enums

    static_cast<py::class_<IntPatch_PolyLine , shared_ptr<IntPatch_PolyLine>  , IntPatch_Polygo >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const Standard_Real >()  , py::arg("InitDefle") )
    // custom constructors
    // methods
        .def("SetWLine",
             (void (IntPatch_PolyLine::*)( const Standard_Boolean ,  const opencascade::handle<IntPatch_WLine> &  ) ) static_cast<void (IntPatch_PolyLine::*)( const Standard_Boolean ,  const opencascade::handle<IntPatch_WLine> &  ) >(&IntPatch_PolyLine::SetWLine),
             R"#(None)#"  , py::arg("OnFirst"),  py::arg("Line")
          )
        .def("SetRLine",
             (void (IntPatch_PolyLine::*)( const Standard_Boolean ,  const opencascade::handle<IntPatch_RLine> &  ) ) static_cast<void (IntPatch_PolyLine::*)( const Standard_Boolean ,  const opencascade::handle<IntPatch_RLine> &  ) >(&IntPatch_PolyLine::SetRLine),
             R"#(None)#"  , py::arg("OnFirst"),  py::arg("Line")
          )
        .def("ResetError",
             (void (IntPatch_PolyLine::*)() ) static_cast<void (IntPatch_PolyLine::*)() >(&IntPatch_PolyLine::ResetError),
             R"#(None)#" 
          )
        .def("NbPoints",
             (Standard_Integer (IntPatch_PolyLine::*)() const) static_cast<Standard_Integer (IntPatch_PolyLine::*)() const>(&IntPatch_PolyLine::NbPoints),
             R"#(None)#" 
          )
        .def("Point",
             (gp_Pnt2d (IntPatch_PolyLine::*)( const Standard_Integer  ) const) static_cast<gp_Pnt2d (IntPatch_PolyLine::*)( const Standard_Integer  ) const>(&IntPatch_PolyLine::Point),
             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 IntPatch_RLine from ./opencascade/IntPatch_RLine.hxx
    klass = m.attr("IntPatch_RLine");


    // nested enums

    static_cast<py::class_<IntPatch_RLine ,opencascade::handle<IntPatch_RLine>  , IntPatch_PointLine >>(klass)
    // constructors
        .def(py::init< const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const Standard_Boolean >()  , py::arg("Tang") )
    // custom constructors
    // methods
        .def("AddVertex",
             (void (IntPatch_RLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_RLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) >(&IntPatch_RLine::AddVertex),
             R"#(Adds a vertex in the list. If theIsPrepend == TRUE the new vertex will be added before the first element of vertices sequence. Otherwise, to the end of the sequence)#"  , py::arg("Pnt"),  py::arg("theIsPrepend")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("Replace",
             (void (IntPatch_RLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_RLine::Replace),
             R"#(Replaces the element of range Index in the list of points.)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("SetFirstPoint",
             (void (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("Add",
             (void (IntPatch_RLine::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) ) static_cast<void (IntPatch_RLine::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) >(&IntPatch_RLine::Add),
             R"#(None)#"  , py::arg("L")
          )
        .def("IsArcOnS1",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::IsArcOnS1),
             R"#(Returns True if the intersection is on the domain of the first patch. Returns False if the intersection is on the domain of the second patch.)#" 
          )
        .def("IsArcOnS2",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::IsArcOnS2),
             R"#(Returns True if the intersection is on the domain of the first patch. Returns False if the intersection is on the domain of the second patch.)#" 
          )
        .def("SetArcOnS1",
             (void (IntPatch_RLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (IntPatch_RLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_RLine::SetArcOnS1),
             R"#(None)#"  , py::arg("A")
          )
        .def("SetArcOnS2",
             (void (IntPatch_RLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (IntPatch_RLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_RLine::SetArcOnS2),
             R"#(None)#"  , py::arg("A")
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_RLine::*)() const) static_cast<Standard_Integer (IntPatch_RLine::*)() const>(&IntPatch_RLine::NbVertex),
             R"#(Returns number of vertices (IntPatch_Point) of the line)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) const>(&IntPatch_RLine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ChangeVertex",
             (IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::ChangeVertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("RemoveVertex",
             (void (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::RemoveVertex),
             R"#(Removes single vertex from the line)#"  , py::arg("theIndex")
          )
        .def("HasPolygon",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::HasPolygon),
             R"#(None)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_RLine::*)() const) static_cast<Standard_Integer (IntPatch_RLine::*)() const>(&IntPatch_RLine::NbPnts),
             R"#(Returns the number of intersection points.)#" 
          )
        .def("Point",
             (const IntSurf_PntOn2S & (IntPatch_RLine::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (IntPatch_RLine::*)( const Standard_Integer  ) const>(&IntPatch_RLine::Point),
             R"#(Returns the intersection point of range Index.)#"  , py::arg("Index")
          )
        .def("SetPoint",
             (void (IntPatch_RLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_RLine::SetPoint),
             R"#(Set the Point of index <Index> in the LineOn2S)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("ComputeVertexParameters",
             (void (IntPatch_RLine::*)( const Standard_Real  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Real  ) >(&IntPatch_RLine::ComputeVertexParameters),
             R"#(Set the parameters of all the vertex on the line. if a vertex is already in the line, its parameter is modified else a new point in the line is inserted.)#"  , py::arg("Tol")
          )
        .def("Curve",
             (opencascade::handle<IntSurf_LineOn2S> (IntPatch_RLine::*)() const) static_cast<opencascade::handle<IntSurf_LineOn2S> (IntPatch_RLine::*)() const>(&IntPatch_RLine::Curve),
             R"#(Returns set of intersection points)#" 
          )
        .def("IsOutSurf1Box",
             (Standard_Boolean (IntPatch_RLine::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (IntPatch_RLine::*)( const gp_Pnt2d &  ) const>(&IntPatch_RLine::IsOutSurf1Box),
             R"#(Returns TRUE if theP is out of the box built from the points on 1st surface)#"  , py::arg("theP")
          )
        .def("IsOutSurf2Box",
             (Standard_Boolean (IntPatch_RLine::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (IntPatch_RLine::*)( const gp_Pnt2d &  ) const>(&IntPatch_RLine::IsOutSurf2Box),
             R"#(Returns TRUE if theP is out of the box built from the points on 2nd surface)#"  , py::arg("theP")
          )
        .def("IsOutBox",
             (Standard_Boolean (IntPatch_RLine::*)( const gp_Pnt &  ) const) static_cast<Standard_Boolean (IntPatch_RLine::*)( const gp_Pnt &  ) const>(&IntPatch_RLine::IsOutBox),
             R"#(Returns TRUE if theP is out of the box built from 3D-points.)#"  , py::arg("theP")
          )
        .def("ClearVertexes",
             (void (IntPatch_RLine::*)() ) static_cast<void (IntPatch_RLine::*)() >(&IntPatch_RLine::ClearVertexes),
             R"#(Removes vertices from the line (i.e. cleans svtx member))#" 
          )
        .def("SetCurve",
             (void (IntPatch_RLine::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) ) static_cast<void (IntPatch_RLine::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) >(&IntPatch_RLine::SetCurve),
             R"#(None)#"  , py::arg("theNewCurve")
          )
        .def("Dump",
             (void (IntPatch_RLine::*)( const Standard_Integer  ) const) static_cast<void (IntPatch_RLine::*)( const Standard_Integer  ) const>(&IntPatch_RLine::Dump),
             R"#(if (theMode == 0) then prints the information about WLine if (theMode == 1) then prints the list of 3d-points if (theMode == 2) then prints the list of 2d-points on the 1st surface Otherwise, prints list of 2d-points on the 2nd surface)#"  , py::arg("theMode")
          )
        .def("AddVertex",
             (void (IntPatch_RLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_RLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) >(&IntPatch_RLine::AddVertex),
             R"#(Adds a vertex in the list. If theIsPrepend == TRUE the new vertex will be added before the first element of vertices sequence. Otherwise, to the end of the sequence)#"  , py::arg("thePnt"),  py::arg("theIsPrepend")
          )
        .def("Replace",
             (void (IntPatch_RLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_RLine::Replace),
             R"#(Replaces the element of range Index in the list of points.)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("SetFirstPoint",
             (void (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("Add",
             (void (IntPatch_RLine::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) ) static_cast<void (IntPatch_RLine::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) >(&IntPatch_RLine::Add),
             R"#(None)#"  , py::arg("L")
          )
        .def("IsArcOnS1",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::IsArcOnS1),
             R"#(Returns True if the intersection is on the domain of the first patch. Returns False if the intersection is on the domain of the second patch.)#" 
          )
        .def("IsArcOnS2",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::IsArcOnS2),
             R"#(Returns True if the intersection is on the domain of the first patch. Returns False if the intersection is on the domain of the second patch.)#" 
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_RLine::*)() const) static_cast<Standard_Integer (IntPatch_RLine::*)() const>(&IntPatch_RLine::NbVertex),
             R"#(Returns number of vertices (IntPatch_Point) of the line)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) const>(&IntPatch_RLine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ChangeVertex",
             (IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<IntPatch_Point & (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::ChangeVertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("RemoveVertex",
             (void (IntPatch_RLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_RLine::*)( const Standard_Integer  ) >(&IntPatch_RLine::RemoveVertex),
             R"#(Removes single vertex from the line)#"  , py::arg("theIndex")
          )
        .def("HasPolygon",
             (Standard_Boolean (IntPatch_RLine::*)() const) static_cast<Standard_Boolean (IntPatch_RLine::*)() const>(&IntPatch_RLine::HasPolygon),
             R"#(None)#" 
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_RLine::*)() const) static_cast<Standard_Integer (IntPatch_RLine::*)() const>(&IntPatch_RLine::NbPnts),
             R"#(Returns the number of intersection points.)#" 
          )
        .def("Point",
             (const IntSurf_PntOn2S & (IntPatch_RLine::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (IntPatch_RLine::*)( const Standard_Integer  ) const>(&IntPatch_RLine::Point),
             R"#(Returns the intersection point of range Index.)#"  , py::arg("Index")
          )
        .def("Curve",
             (opencascade::handle<IntSurf_LineOn2S> (IntPatch_RLine::*)() const) static_cast<opencascade::handle<IntSurf_LineOn2S> (IntPatch_RLine::*)() const>(&IntPatch_RLine::Curve),
             R"#(Returns set of intersection points)#" 
          )
    // methods using call by reference i.s.o. return
        .def("ParamOnS1",
             []( IntPatch_RLine &self   ){
                 Standard_Real  p1;
                Standard_Real  p2;

                 self.ParamOnS1(p1,p2);
                 
                 return std::make_tuple(p1,p2); },
             R"#(None)#" 
          )
        .def("ParamOnS2",
             []( IntPatch_RLine &self   ){
                 Standard_Real  p1;
                Standard_Real  p2;

                 self.ParamOnS2(p1,p2);
                 
                 return std::make_tuple(p1,p2); },
             R"#(None)#" 
          )
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&IntPatch_RLine::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IntPatch_RLine::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("ArcOnS1",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const>(&IntPatch_RLine::ArcOnS1),
             R"#(Returns the concerned arc.)#"
             
         )
       .def("ArcOnS2",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const>(&IntPatch_RLine::ArcOnS2),
             R"#(Returns the concerned arc.)#"
             
         )
       .def("FirstPoint",
             (const IntPatch_Point & (IntPatch_RLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_RLine::*)() const>(&IntPatch_RLine::FirstPoint),
             R"#(Returns the IntPoint corresponding to the FirstPoint. An exception is raised when HasFirstPoint returns False.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_RLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_RLine::*)() const>(&IntPatch_RLine::LastPoint),
             R"#(Returns the IntPoint corresponding to the LastPoint. An exception is raised when HasLastPoint returns False.)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (IntPatch_RLine::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IntPatch_RLine::*)() const>(&IntPatch_RLine::DynamicType),
             R"#(None)#"
             
         )
       .def("ArcOnS1",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const>(&IntPatch_RLine::ArcOnS1),
             R"#(Returns the concerned arc.)#"
             
         )
       .def("ArcOnS2",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_RLine::*)() const>(&IntPatch_RLine::ArcOnS2),
             R"#(Returns the concerned arc.)#"
             
         )
       .def("FirstPoint",
             (const IntPatch_Point & (IntPatch_RLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_RLine::*)() const>(&IntPatch_RLine::FirstPoint),
             R"#(Returns the IntPoint corresponding to the FirstPoint. An exception is raised when HasFirstPoint returns False.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_RLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_RLine::*)() const>(&IntPatch_RLine::LastPoint),
             R"#(Returns the IntPoint corresponding to the LastPoint. An exception is raised when HasLastPoint returns False.)#"
             
         )
;

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


    // nested enums
        py::enum_<IntPatch_WLine::IntPatch_WLType>(klass, "IntPatch_WLType_e", R"#(Enumeration of ways of WLine creation.)#")
            .value("IntPatch_WLUnknown", IntPatch_WLine::IntPatch_WLType::IntPatch_WLUnknown)
            .value("IntPatch_WLImpImp", IntPatch_WLine::IntPatch_WLType::IntPatch_WLImpImp)
            .value("IntPatch_WLImpPrm", IntPatch_WLine::IntPatch_WLType::IntPatch_WLImpPrm)
            .value("IntPatch_WLPrmPrm", IntPatch_WLine::IntPatch_WLType::IntPatch_WLPrmPrm).export_values();

    static_cast<py::class_<IntPatch_WLine ,opencascade::handle<IntPatch_WLine>  , IntPatch_PointLine >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<IntSurf_LineOn2S> &,const Standard_Boolean,const IntSurf_TypeTrans,const IntSurf_TypeTrans >()  , py::arg("Line"),  py::arg("Tang"),  py::arg("Trans1"),  py::arg("Trans2") )
        .def(py::init< const opencascade::handle<IntSurf_LineOn2S> &,const Standard_Boolean,const IntSurf_Situation,const IntSurf_Situation >()  , py::arg("Line"),  py::arg("Tang"),  py::arg("Situ1"),  py::arg("Situ2") )
        .def(py::init< const opencascade::handle<IntSurf_LineOn2S> &,const Standard_Boolean >()  , py::arg("Line"),  py::arg("Tang") )
    // custom constructors
    // methods
        .def("AddVertex",
             (void (IntPatch_WLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_WLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) >(&IntPatch_WLine::AddVertex),
             R"#(Adds a vertex in the list. If theIsPrepend == TRUE the new vertex will be added before the first element of vertices sequence. Otherwise, to the end of the sequence)#"  , py::arg("Pnt"),  py::arg("theIsPrepend")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def("SetPoint",
             (void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_WLine::SetPoint),
             R"#(Set the Point of index <Index> in the LineOn2S)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("Replace",
             (void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_WLine::Replace),
             R"#(Replaces the element of range Index in the list of points. The exception OutOfRange is raised when Index <= 0 or Index > NbVertex.)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("SetFirstPoint",
             (void (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_WLine::*)() const) static_cast<Standard_Integer (IntPatch_WLine::*)() const>(&IntPatch_WLine::NbPnts),
             R"#(Returns the number of intersection points.)#" 
          )
        .def("Point",
             (const IntSurf_PntOn2S & (IntPatch_WLine::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (IntPatch_WLine::*)( const Standard_Integer  ) const>(&IntPatch_WLine::Point),
             R"#(Returns the intersection point of range Index.)#"  , py::arg("Index")
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_WLine::*)() const) static_cast<Standard_Boolean (IntPatch_WLine::*)() const>(&IntPatch_WLine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_WLine::*)() const) static_cast<Standard_Boolean (IntPatch_WLine::*)() const>(&IntPatch_WLine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("FirstPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const>(&IntPatch_WLine::FirstPoint),
             R"#(Returns the Point corresponding to the FirstPoint. Indfirst is the index of the first in the list of vertices.)#"  , py::arg("Indfirst")
          )
        .def("LastPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const>(&IntPatch_WLine::LastPoint),
             R"#(Returns the Point corresponding to the LastPoint. Indlast is the index of the last in the list of vertices.)#"  , py::arg("Indlast")
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_WLine::*)() const) static_cast<Standard_Integer (IntPatch_WLine::*)() const>(&IntPatch_WLine::NbVertex),
             R"#(Returns number of vertices (IntPatch_Point) of the line)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) const>(&IntPatch_WLine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ChangeVertex",
             (IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::ChangeVertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ComputeVertexParameters",
             (void (IntPatch_WLine::*)( const Standard_Real  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Real  ) >(&IntPatch_WLine::ComputeVertexParameters),
             R"#(Set the parameters of all the vertex on the line. if a vertex is already in the line, its parameter is modified else a new point in the line is inserted.)#"  , py::arg("Tol")
          )
        .def("Curve",
             (opencascade::handle<IntSurf_LineOn2S> (IntPatch_WLine::*)() const) static_cast<opencascade::handle<IntSurf_LineOn2S> (IntPatch_WLine::*)() const>(&IntPatch_WLine::Curve),
             R"#(Returns set of intersection points)#" 
          )
        .def("IsOutSurf1Box",
             (Standard_Boolean (IntPatch_WLine::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (IntPatch_WLine::*)( const gp_Pnt2d &  ) const>(&IntPatch_WLine::IsOutSurf1Box),
             R"#(Returns TRUE if theP is out of the box built from the points on 1st surface)#"  , py::arg("theP")
          )
        .def("IsOutSurf2Box",
             (Standard_Boolean (IntPatch_WLine::*)( const gp_Pnt2d &  ) const) static_cast<Standard_Boolean (IntPatch_WLine::*)( const gp_Pnt2d &  ) const>(&IntPatch_WLine::IsOutSurf2Box),
             R"#(Returns TRUE if theP is out of the box built from the points on 2nd surface)#"  , py::arg("theP")
          )
        .def("IsOutBox",
             (Standard_Boolean (IntPatch_WLine::*)( const gp_Pnt &  ) const) static_cast<Standard_Boolean (IntPatch_WLine::*)( const gp_Pnt &  ) const>(&IntPatch_WLine::IsOutBox),
             R"#(Returns TRUE if theP is out of the box built from 3D-points.)#"  , py::arg("theP")
          )
        .def("SetPeriod",
             (void (IntPatch_WLine::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&IntPatch_WLine::SetPeriod),
             R"#(None)#"  , py::arg("pu1"),  py::arg("pv1"),  py::arg("pu2"),  py::arg("pv2")
          )
        .def("U1Period",
             (Standard_Real (IntPatch_WLine::*)() const) static_cast<Standard_Real (IntPatch_WLine::*)() const>(&IntPatch_WLine::U1Period),
             R"#(None)#" 
          )
        .def("V1Period",
             (Standard_Real (IntPatch_WLine::*)() const) static_cast<Standard_Real (IntPatch_WLine::*)() const>(&IntPatch_WLine::V1Period),
             R"#(None)#" 
          )
        .def("U2Period",
             (Standard_Real (IntPatch_WLine::*)() const) static_cast<Standard_Real (IntPatch_WLine::*)() const>(&IntPatch_WLine::U2Period),
             R"#(None)#" 
          )
        .def("V2Period",
             (Standard_Real (IntPatch_WLine::*)() const) static_cast<Standard_Real (IntPatch_WLine::*)() const>(&IntPatch_WLine::V2Period),
             R"#(None)#" 
          )
        .def("SetArcOnS1",
             (void (IntPatch_WLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (IntPatch_WLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_WLine::SetArcOnS1),
             R"#(None)#"  , py::arg("A")
          )
        .def("HasArcOnS1",
             (Standard_Boolean (IntPatch_WLine::*)() const) static_cast<Standard_Boolean (IntPatch_WLine::*)() const>(&IntPatch_WLine::HasArcOnS1),
             R"#(None)#" 
          )
        .def("SetArcOnS2",
             (void (IntPatch_WLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (IntPatch_WLine::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&IntPatch_WLine::SetArcOnS2),
             R"#(None)#"  , py::arg("A")
          )
        .def("HasArcOnS2",
             (Standard_Boolean (IntPatch_WLine::*)() const) static_cast<Standard_Boolean (IntPatch_WLine::*)() const>(&IntPatch_WLine::HasArcOnS2),
             R"#(None)#" 
          )
        .def("ClearVertexes",
             (void (IntPatch_WLine::*)() ) static_cast<void (IntPatch_WLine::*)() >(&IntPatch_WLine::ClearVertexes),
             R"#(Removes vertices from the line (i.e. cleans svtx member))#" 
          )
        .def("RemoveVertex",
             (void (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::RemoveVertex),
             R"#(Removes single vertex from the line)#"  , py::arg("theIndex")
          )
        .def("InsertVertexBefore",
             (void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_WLine::InsertVertexBefore),
             R"#(None)#"  , py::arg("theIndex"),  py::arg("thePnt")
          )
        .def("Dump",
             (void (IntPatch_WLine::*)( const Standard_Integer  ) const) static_cast<void (IntPatch_WLine::*)( const Standard_Integer  ) const>(&IntPatch_WLine::Dump),
             R"#(if (theMode == 0) then prints the information about WLine if (theMode == 1) then prints the list of 3d-points if (theMode == 2) then prints the list of 2d-points on the 1st surface Otherwise, prints list of 2d-points on the 2nd surface)#"  , py::arg("theMode")
          )
        .def("EnablePurging",
             (void (IntPatch_WLine::*)( const Standard_Boolean  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Boolean  ) >(&IntPatch_WLine::EnablePurging),
             R"#(Allows or forbids purging of existing WLine)#"  , py::arg("theIsEnabled")
          )
        .def("IsPurgingAllowed",
             (Standard_Boolean (IntPatch_WLine::*)() ) static_cast<Standard_Boolean (IntPatch_WLine::*)() >(&IntPatch_WLine::IsPurgingAllowed),
             R"#(Returns TRUE if purging is allowed or forbidden for existing WLine)#" 
          )
        .def("GetCreatingWay",
             (IntPatch_WLine::IntPatch_WLType (IntPatch_WLine::*)() const) static_cast<IntPatch_WLine::IntPatch_WLType (IntPatch_WLine::*)() const>(&IntPatch_WLine::GetCreatingWay),
             R"#(Returns the way of <*this> creation.)#" 
          )
        .def("SetCreatingWayInfo",
             (void (IntPatch_WLine::*)( IntPatch_WLine::IntPatch_WLType  ) ) static_cast<void (IntPatch_WLine::*)( IntPatch_WLine::IntPatch_WLType  ) >(&IntPatch_WLine::SetCreatingWayInfo),
             R"#(Sets the info about the way of <*this> creation.)#"  , py::arg("theAlgo")
          )
        .def("AddVertex",
             (void (IntPatch_WLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) ) static_cast<void (IntPatch_WLine::*)( const IntPatch_Point & ,  const Standard_Boolean  ) >(&IntPatch_WLine::AddVertex),
             R"#(Adds a vertex in the list. If theIsPrepend == TRUE the new vertex will be added before the first element of vertices sequence. Otherwise, to the end of the sequence)#"  , py::arg("thePnt"),  py::arg("theIsPrepend")
          )
        .def("Replace",
             (void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_WLine::Replace),
             R"#(Replaces the element of range Index in the list of points. The exception OutOfRange is raised when Index <= 0 or Index > NbVertex.)#"  , py::arg("Index"),  py::arg("Pnt")
          )
        .def("SetFirstPoint",
             (void (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::SetFirstPoint),
             R"#(None)#"  , py::arg("IndFirst")
          )
        .def("SetLastPoint",
             (void (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::SetLastPoint),
             R"#(None)#"  , py::arg("IndLast")
          )
        .def("NbPnts",
             (Standard_Integer (IntPatch_WLine::*)() const) static_cast<Standard_Integer (IntPatch_WLine::*)() const>(&IntPatch_WLine::NbPnts),
             R"#(Returns the number of intersection points.)#" 
          )
        .def("Point",
             (const IntSurf_PntOn2S & (IntPatch_WLine::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (IntPatch_WLine::*)( const Standard_Integer  ) const>(&IntPatch_WLine::Point),
             R"#(Returns the intersection point of range Index.)#"  , py::arg("Index")
          )
        .def("HasFirstPoint",
             (Standard_Boolean (IntPatch_WLine::*)() const) static_cast<Standard_Boolean (IntPatch_WLine::*)() const>(&IntPatch_WLine::HasFirstPoint),
             R"#(Returns True if the line has a known First point. This point is given by the method FirstPoint().)#" 
          )
        .def("HasLastPoint",
             (Standard_Boolean (IntPatch_WLine::*)() const) static_cast<Standard_Boolean (IntPatch_WLine::*)() const>(&IntPatch_WLine::HasLastPoint),
             R"#(Returns True if the line has a known Last point. This point is given by the method LastPoint().)#" 
          )
        .def("FirstPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const>(&IntPatch_WLine::FirstPoint),
             R"#(Returns the Point corresponding to the FirstPoint. Indfirst is the index of the first in the list of vertices.)#"  , py::arg("Indfirst")
          )
        .def("LastPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)( Standard_Integer &  ) const>(&IntPatch_WLine::LastPoint),
             R"#(Returns the Point corresponding to the LastPoint. Indlast is the index of the last in the list of vertices.)#"  , py::arg("Indlast")
          )
        .def("NbVertex",
             (Standard_Integer (IntPatch_WLine::*)() const) static_cast<Standard_Integer (IntPatch_WLine::*)() const>(&IntPatch_WLine::NbVertex),
             R"#(Returns number of vertices (IntPatch_Point) of the line)#" 
          )
        .def("Vertex",
             (const IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) const>(&IntPatch_WLine::Vertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ChangeVertex",
             (IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<IntPatch_Point & (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::ChangeVertex),
             R"#(Returns the vertex of range Index on the line.)#"  , py::arg("Index")
          )
        .def("ClearVertexes",
             (void (IntPatch_WLine::*)() ) static_cast<void (IntPatch_WLine::*)() >(&IntPatch_WLine::ClearVertexes),
             R"#(Removes vertices from the line (i.e. cleans svtx member))#" 
          )
        .def("RemoveVertex",
             (void (IntPatch_WLine::*)( const Standard_Integer  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer  ) >(&IntPatch_WLine::RemoveVertex),
             R"#(Removes single vertex from the line)#"  , py::arg("theIndex")
          )
        .def("InsertVertexBefore",
             (void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) ) static_cast<void (IntPatch_WLine::*)( const Standard_Integer ,  const IntPatch_Point &  ) >(&IntPatch_WLine::InsertVertexBefore),
             R"#(None)#"  , py::arg("theIndex"),  py::arg("thePnt")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&IntPatch_WLine::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&IntPatch_WLine::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("FirstPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)() const>(&IntPatch_WLine::FirstPoint),
             R"#(Returns the Point corresponding to the FirstPoint.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)() const>(&IntPatch_WLine::LastPoint),
             R"#(Returns the Point corresponding to the LastPoint.)#"
             
         )
       .def("GetArcOnS1",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_WLine::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_WLine::*)() const>(&IntPatch_WLine::GetArcOnS1),
             R"#(None)#"
             
         )
       .def("GetArcOnS2",
             (const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_WLine::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (IntPatch_WLine::*)() const>(&IntPatch_WLine::GetArcOnS2),
             R"#(None)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (IntPatch_WLine::*)() const) static_cast<const opencascade::handle<Standard_Type> & (IntPatch_WLine::*)() const>(&IntPatch_WLine::DynamicType),
             R"#(None)#"
             
         )
       .def("FirstPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)() const>(&IntPatch_WLine::FirstPoint),
             R"#(Returns the Point corresponding to the FirstPoint.)#"
             
         )
       .def("LastPoint",
             (const IntPatch_Point & (IntPatch_WLine::*)() const) static_cast<const IntPatch_Point & (IntPatch_WLine::*)() const>(&IntPatch_WLine::LastPoint),
             R"#(Returns the Point corresponding to the LastPoint.)#"
             
         )
;

// functions
// ./opencascade/IntPatch_ALine.hxx
// ./opencascade/IntPatch_ALineToWLine.hxx
// ./opencascade/IntPatch_ArcFunction.hxx
// ./opencascade/IntPatch_CSFunction.hxx
// ./opencascade/IntPatch_CurvIntSurf.hxx
// ./opencascade/IntPatch_GLine.hxx
// ./opencascade/IntPatch_HCurve2dTool.hxx
// ./opencascade/IntPatch_HInterTool.hxx
// ./opencascade/IntPatch_IType.hxx
// ./opencascade/IntPatch_ImpImpIntersection.hxx
// ./opencascade/IntPatch_ImpPrmIntersection.hxx
// ./opencascade/IntPatch_InterferencePolyhedron.hxx
// ./opencascade/IntPatch_Intersection.hxx
// ./opencascade/IntPatch_Line.hxx
// ./opencascade/IntPatch_LineConstructor.hxx
// ./opencascade/IntPatch_Point.hxx
// ./opencascade/IntPatch_PointLine.hxx
// ./opencascade/IntPatch_PolyArc.hxx
// ./opencascade/IntPatch_PolyLine.hxx
// ./opencascade/IntPatch_Polygo.hxx
// ./opencascade/IntPatch_Polyhedron.hxx
// ./opencascade/IntPatch_PolyhedronTool.hxx
// ./opencascade/IntPatch_PrmPrmIntersection.hxx
// ./opencascade/IntPatch_PrmPrmIntersection_T3Bits.hxx
// ./opencascade/IntPatch_RLine.hxx
// ./opencascade/IntPatch_RstInt.hxx
// ./opencascade/IntPatch_SearchPnt.hxx
// ./opencascade/IntPatch_SequenceOfIWLineOfTheIWalking.hxx
// ./opencascade/IntPatch_SequenceOfLine.hxx
// ./opencascade/IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx
// ./opencascade/IntPatch_SequenceOfPoint.hxx
// ./opencascade/IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx
// ./opencascade/IntPatch_SpecPntType.hxx
// ./opencascade/IntPatch_SpecialPoints.hxx
// ./opencascade/IntPatch_TheIWLineOfTheIWalking.hxx
// ./opencascade/IntPatch_TheIWalking.hxx
// ./opencascade/IntPatch_ThePathPointOfTheSOnBounds.hxx
// ./opencascade/IntPatch_TheSOnBounds.hxx
// ./opencascade/IntPatch_TheSearchInside.hxx
// ./opencascade/IntPatch_TheSegmentOfTheSOnBounds.hxx
// ./opencascade/IntPatch_TheSurfFunction.hxx
// ./opencascade/IntPatch_WLine.hxx
// ./opencascade/IntPatch_WLineTool.hxx

// Additional functions

// operators

// register typdefs
    register_template_NCollection_Sequence<opencascade::handle<IntPatch_TheIWLineOfTheIWalking>>(m,"IntPatch_SequenceOfIWLineOfTheIWalking");
    register_template_NCollection_Sequence<opencascade::handle<IntPatch_Line>>(m,"IntPatch_SequenceOfLine");
    register_template_NCollection_Sequence<IntPatch_ThePathPointOfTheSOnBounds>(m,"IntPatch_SequenceOfPathPointOfTheSOnBounds");
    register_template_NCollection_Sequence<IntPatch_Point>(m,"IntPatch_SequenceOfPoint");
    register_template_NCollection_Sequence<IntPatch_TheSegmentOfTheSOnBounds>(m,"IntPatch_SequenceOfSegmentOfTheSOnBounds");


// exceptions

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

};

// user-defined post-inclusion per module

// user-defined post