File: Contap.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 (1722 lines) | stat: -rw-r--r-- 110,742 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

// std lib related includes
#include <tuple>

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

namespace py = pybind11;

// Standard Handle
#include <Standard_Handle.hxx>


// includes to resolve forward declarations
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Sphere.hxx>
#include <gp_Cylinder.hxx>
#include <gp_Cone.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Adaptor3d_HVertex.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_HVertex.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 <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <IntSurf_PathPointTool.hxx>
#include <IntSurf_InteriorPointTool.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <Contap_SurfFunction.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 <Contap_HCurve2dTool.hxx>
#include <Contap_HContTool.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Contap_ArcFunction.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Contap_HContTool.hxx>
#include <Contap_SurfFunction.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 <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>

// module includes
#include <Contap_ArcFunction.hxx>
#include <Contap_ContAna.hxx>
#include <Contap_Contour.hxx>
#include <Contap_HContTool.hxx>
#include <Contap_HCurve2dTool.hxx>
#include <Contap_IType.hxx>
#include <Contap_Line.hxx>
#include <Contap_Point.hxx>
#include <Contap_SequenceOfIWLineOfTheIWalking.hxx>
#include <Contap_SequenceOfPathPointOfTheSearch.hxx>
#include <Contap_SequenceOfSegmentOfTheSearch.hxx>
#include <Contap_SurfFunction.hxx>
#include <Contap_SurfProps.hxx>
#include <Contap_TFunction.hxx>
#include <Contap_TheHSequenceOfPoint.hxx>
#include <Contap_TheIWalking.hxx>
#include <Contap_TheIWLineOfTheIWalking.hxx>
#include <Contap_ThePathPointOfTheSearch.hxx>
#include <Contap_TheSearch.hxx>
#include <Contap_TheSearchInside.hxx>
#include <Contap_TheSegmentOfTheSearch.hxx>
#include <Contap_TheSequenceOfLine.hxx>
#include <Contap_TheSequenceOfPoint.hxx>

// template related includes

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

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

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

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

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


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

// user-defined inclusion per module

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


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

//Python trampoline classes

// classes

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


    // nested enums

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

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


    // nested enums

    static_cast<py::class_<Contap_ContAna , shared_ptr<Contap_ContAna>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Sphere & ,  const gp_Dir &  ) ) static_cast<void (Contap_ContAna::*)( const gp_Sphere & ,  const gp_Dir &  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("S"),  py::arg("D")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Sphere & ,  const gp_Dir & ,  const Standard_Real  ) ) static_cast<void (Contap_ContAna::*)( const gp_Sphere & ,  const gp_Dir & ,  const Standard_Real  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("S"),  py::arg("D"),  py::arg("Ang")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Sphere & ,  const gp_Pnt &  ) ) static_cast<void (Contap_ContAna::*)( const gp_Sphere & ,  const gp_Pnt &  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("S"),  py::arg("Eye")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Cylinder & ,  const gp_Dir &  ) ) static_cast<void (Contap_ContAna::*)( const gp_Cylinder & ,  const gp_Dir &  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("C"),  py::arg("D")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Cylinder & ,  const gp_Dir & ,  const Standard_Real  ) ) static_cast<void (Contap_ContAna::*)( const gp_Cylinder & ,  const gp_Dir & ,  const Standard_Real  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("C"),  py::arg("D"),  py::arg("Ang")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Cylinder & ,  const gp_Pnt &  ) ) static_cast<void (Contap_ContAna::*)( const gp_Cylinder & ,  const gp_Pnt &  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("C"),  py::arg("Eye")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Cone & ,  const gp_Dir &  ) ) static_cast<void (Contap_ContAna::*)( const gp_Cone & ,  const gp_Dir &  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("C"),  py::arg("D")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Cone & ,  const gp_Dir & ,  const Standard_Real  ) ) static_cast<void (Contap_ContAna::*)( const gp_Cone & ,  const gp_Dir & ,  const Standard_Real  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("C"),  py::arg("D"),  py::arg("Ang")
          )
        .def("Perform",
             (void (Contap_ContAna::*)( const gp_Cone & ,  const gp_Pnt &  ) ) static_cast<void (Contap_ContAna::*)( const gp_Cone & ,  const gp_Pnt &  ) >(&Contap_ContAna::Perform),
             R"#(None)#"  , py::arg("C"),  py::arg("Eye")
          )
        .def("IsDone",
             (Standard_Boolean (Contap_ContAna::*)() const) static_cast<Standard_Boolean (Contap_ContAna::*)() const>(&Contap_ContAna::IsDone),
             R"#(None)#" 
          )
        .def("NbContours",
             (Standard_Integer (Contap_ContAna::*)() const) static_cast<Standard_Integer (Contap_ContAna::*)() const>(&Contap_ContAna::NbContours),
             R"#(None)#" 
          )
        .def("TypeContour",
             (GeomAbs_CurveType (Contap_ContAna::*)() const) static_cast<GeomAbs_CurveType (Contap_ContAna::*)() const>(&Contap_ContAna::TypeContour),
             R"#(Returns GeomAbs_Line or GeomAbs_Circle, when IsDone() returns True.)#" 
          )
        .def("Circle",
             (gp_Circ (Contap_ContAna::*)() const) static_cast<gp_Circ (Contap_ContAna::*)() const>(&Contap_ContAna::Circle),
             R"#(None)#" 
          )
        .def("Line",
             (gp_Lin (Contap_ContAna::*)( const Standard_Integer  ) const) static_cast<gp_Lin (Contap_ContAna::*)( const Standard_Integer  ) const>(&Contap_ContAna::Line),
             R"#(None)#"  , py::arg("Index")
          )
        .def("IsDone",
             (Standard_Boolean (Contap_ContAna::*)() const) static_cast<Standard_Boolean (Contap_ContAna::*)() const>(&Contap_ContAna::IsDone),
             R"#(None)#" 
          )
        .def("NbContours",
             (Standard_Integer (Contap_ContAna::*)() const) static_cast<Standard_Integer (Contap_ContAna::*)() const>(&Contap_ContAna::NbContours),
             R"#(None)#" 
          )
        .def("TypeContour",
             (GeomAbs_CurveType (Contap_ContAna::*)() const) static_cast<GeomAbs_CurveType (Contap_ContAna::*)() const>(&Contap_ContAna::TypeContour),
             R"#(Returns GeomAbs_Line or GeomAbs_Circle, when IsDone() returns True.)#" 
          )
        .def("Circle",
             (gp_Circ (Contap_ContAna::*)() const) static_cast<gp_Circ (Contap_ContAna::*)() const>(&Contap_ContAna::Circle),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<Contap_Contour , shared_ptr<Contap_Contour>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const gp_Vec & >()  , py::arg("Direction") )
        .def(py::init< const gp_Vec &,const Standard_Real >()  , py::arg("Direction"),  py::arg("Angle") )
        .def(py::init< const gp_Pnt & >()  , py::arg("Eye") )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const gp_Vec & >()  , py::arg("Surf"),  py::arg("Domain"),  py::arg("Direction") )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const gp_Vec &,const Standard_Real >()  , py::arg("Surf"),  py::arg("Domain"),  py::arg("Direction"),  py::arg("Angle") )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_TopolTool> &,const gp_Pnt & >()  , py::arg("Surf"),  py::arg("Domain"),  py::arg("Eye") )
    // custom constructors
    // methods
        .def("Perform",
             (void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) ) static_cast<void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> &  ) >(&Contap_Contour::Perform),
             R"#(Creates the contour in a given direction.)#"  , py::arg("Surf"),  py::arg("Domain")
          )
        .def("Perform",
             (void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const gp_Vec &  ) ) static_cast<void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const gp_Vec &  ) >(&Contap_Contour::Perform),
             R"#(Creates the contour in a given direction.)#"  , py::arg("Surf"),  py::arg("Domain"),  py::arg("Direction")
          )
        .def("Perform",
             (void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const gp_Vec & ,  const Standard_Real  ) ) static_cast<void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const gp_Vec & ,  const Standard_Real  ) >(&Contap_Contour::Perform),
             R"#(Creates the contour in a given direction.)#"  , py::arg("Surf"),  py::arg("Domain"),  py::arg("Direction"),  py::arg("Angle")
          )
        .def("Perform",
             (void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const gp_Pnt &  ) ) static_cast<void (Contap_Contour::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const gp_Pnt &  ) >(&Contap_Contour::Perform),
             R"#(Creates the contour for a perspective view.)#"  , py::arg("Surf"),  py::arg("Domain"),  py::arg("Eye")
          )
        .def("Init",
             (void (Contap_Contour::*)( const gp_Vec &  ) ) static_cast<void (Contap_Contour::*)( const gp_Vec &  ) >(&Contap_Contour::Init),
             R"#(None)#"  , py::arg("Direction")
          )
        .def("Init",
             (void (Contap_Contour::*)( const gp_Vec & ,  const Standard_Real  ) ) static_cast<void (Contap_Contour::*)( const gp_Vec & ,  const Standard_Real  ) >(&Contap_Contour::Init),
             R"#(None)#"  , py::arg("Direction"),  py::arg("Angle")
          )
        .def("Init",
             (void (Contap_Contour::*)( const gp_Pnt &  ) ) static_cast<void (Contap_Contour::*)( const gp_Pnt &  ) >(&Contap_Contour::Init),
             R"#(None)#"  , py::arg("Eye")
          )
        .def("IsDone",
             (Standard_Boolean (Contap_Contour::*)() const) static_cast<Standard_Boolean (Contap_Contour::*)() const>(&Contap_Contour::IsDone),
             R"#(None)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (Contap_Contour::*)() const) static_cast<Standard_Boolean (Contap_Contour::*)() const>(&Contap_Contour::IsEmpty),
             R"#(Returns true if the is no line.)#" 
          )
        .def("NbLines",
             (Standard_Integer (Contap_Contour::*)() const) static_cast<Standard_Integer (Contap_Contour::*)() const>(&Contap_Contour::NbLines),
             R"#(None)#" 
          )
        .def("Line",
             (const Contap_Line & (Contap_Contour::*)( const Standard_Integer  ) const) static_cast<const Contap_Line & (Contap_Contour::*)( const Standard_Integer  ) const>(&Contap_Contour::Line),
             R"#(None)#"  , py::arg("Index")
          )
        .def("IsDone",
             (Standard_Boolean (Contap_Contour::*)() const) static_cast<Standard_Boolean (Contap_Contour::*)() const>(&Contap_Contour::IsDone),
             R"#(None)#" 
          )
        .def("IsEmpty",
             (Standard_Boolean (Contap_Contour::*)() const) static_cast<Standard_Boolean (Contap_Contour::*)() const>(&Contap_Contour::IsEmpty),
             R"#(Returns true if the is no line.)#" 
          )
        .def("NbLines",
             (Standard_Integer (Contap_Contour::*)() const) static_cast<Standard_Integer (Contap_Contour::*)() const>(&Contap_Contour::NbLines),
             R"#(None)#" 
          )
        .def("Line",
             (const Contap_Line & (Contap_Contour::*)( const Standard_Integer  ) const) static_cast<const Contap_Line & (Contap_Contour::*)( const Standard_Integer  ) const>(&Contap_Contour::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
       .def("SurfaceFunction",
             (Contap_SurfFunction & (Contap_Contour::*)() ) static_cast<Contap_SurfFunction & (Contap_Contour::*)() >(&Contap_Contour::SurfaceFunction),
             R"#(Returns a reference on the internal SurfaceFunction. This is used to compute tangents on the lines.)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("SurfaceFunction",
             (Contap_SurfFunction & (Contap_Contour::*)() ) static_cast<Contap_SurfFunction & (Contap_Contour::*)() >(&Contap_Contour::SurfaceFunction),
             R"#(Returns a reference on the internal SurfaceFunction. This is used to compute tangents on the lines.)#"
             
             , py::return_value_policy::reference_internal
         )
;

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

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

    // nested enums

    static_cast<py::class_<Contap_HContTool , shared_ptr<Contap_HContTool>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .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  ) >(&Contap_HContTool::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  ) >(&Contap_HContTool::NbSamplesV),
                    R"#(None)#"  , py::arg("S"),  py::arg("v1"),  py::arg("v2")
          )
        .def_static("NbSamplePoints_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&Contap_HContTool::NbSamplePoints),
                    R"#(None)#"  , py::arg("S")
          )
        .def_static("HasBeenSeen_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&Contap_HContTool::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> &  ) >(&Contap_HContTool::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 &  ) >(&Contap_HContTool::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> &  ) >(&Contap_HContTool::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> &  ) >(&Contap_HContTool::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> &  ) >(&Contap_HContTool::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  ) >(&Contap_HContTool::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> &  ) >(&Contap_HContTool::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 &  ) >(&Contap_HContTool::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 &  ) >(&Contap_HContTool::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> &  ) >(&Contap_HContTool::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("SamplePoint_s",
            [](const opencascade::handle<Adaptor3d_Surface> & S,const Standard_Integer Index ){
                Standard_Real  U;
                Standard_Real  V;

                Contap_HContTool::SamplePoint(S,Index,U,V);
                
return std::make_tuple(U,V); },
            R"#(None)#"  , py::arg("S"),  py::arg("Index")
          )
        .def_static("Bounds_s",
            [](const opencascade::handle<Adaptor2d_Curve2d> & C ){
                Standard_Real  Ufirst;
                Standard_Real  Ulast;

                Contap_HContTool::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;

                Contap_HContTool::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;

                Contap_HContTool::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 Contap_HCurve2dTool from ./opencascade/Contap_HCurve2dTool.hxx
    klass = m.attr("Contap_HCurve2dTool");

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

    // nested enums

    static_cast<py::class_<Contap_HCurve2dTool , shared_ptr<Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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  ) >(&Contap_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  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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  ) >(&Contap_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 &  ) >(&Contap_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 &  ) >(&Contap_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 &  ) >(&Contap_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 &  ) >(&Contap_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  ) >(&Contap_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  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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> &  ) >(&Contap_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  ) >(&Contap_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 Contap_Line from ./opencascade/Contap_Line.hxx
    klass = m.attr("Contap_Line");


    // nested enums

    static_cast<py::class_<Contap_Line , shared_ptr<Contap_Line>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("SetLineOn2S",
             (void (Contap_Line::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) ) static_cast<void (Contap_Line::*)( const opencascade::handle<IntSurf_LineOn2S> &  ) >(&Contap_Line::SetLineOn2S),
             R"#(None)#"  , py::arg("L")
          )
        .def("Clear",
             (void (Contap_Line::*)() ) static_cast<void (Contap_Line::*)() >(&Contap_Line::Clear),
             R"#(None)#" 
          )
        .def("ResetSeqOfVertex",
             (void (Contap_Line::*)() ) static_cast<void (Contap_Line::*)() >(&Contap_Line::ResetSeqOfVertex),
             R"#(None)#" 
          )
        .def("Add",
             (void (Contap_Line::*)( const IntSurf_PntOn2S &  ) ) static_cast<void (Contap_Line::*)( const IntSurf_PntOn2S &  ) >(&Contap_Line::Add),
             R"#(None)#"  , py::arg("P")
          )
        .def("SetValue",
             (void (Contap_Line::*)( const gp_Lin &  ) ) static_cast<void (Contap_Line::*)( const gp_Lin &  ) >(&Contap_Line::SetValue),
             R"#(None)#"  , py::arg("L")
          )
        .def("SetValue",
             (void (Contap_Line::*)( const gp_Circ &  ) ) static_cast<void (Contap_Line::*)( const gp_Circ &  ) >(&Contap_Line::SetValue),
             R"#(None)#"  , py::arg("C")
          )
        .def("SetValue",
             (void (Contap_Line::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (Contap_Line::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&Contap_Line::SetValue),
             R"#(None)#"  , py::arg("A")
          )
        .def("Add",
             (void (Contap_Line::*)( const Contap_Point &  ) ) static_cast<void (Contap_Line::*)( const Contap_Point &  ) >(&Contap_Line::Add),
             R"#(None)#"  , py::arg("P")
          )
        .def("NbVertex",
             (Standard_Integer (Contap_Line::*)() const) static_cast<Standard_Integer (Contap_Line::*)() const>(&Contap_Line::NbVertex),
             R"#(None)#" 
          )
        .def("Vertex",
             (Contap_Point & (Contap_Line::*)( const Standard_Integer  ) const) static_cast<Contap_Point & (Contap_Line::*)( const Standard_Integer  ) const>(&Contap_Line::Vertex),
             R"#(None)#"  , py::arg("Index")
          )
        .def("TypeContour",
             (Contap_IType (Contap_Line::*)() const) static_cast<Contap_IType (Contap_Line::*)() const>(&Contap_Line::TypeContour),
             R"#(Returns Contap_Lin for a line, Contap_Circle for a circle, and Contap_Walking for a Walking line, Contap_Restriction for a part of boundarie.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (Contap_Line::*)() const) static_cast<Standard_Integer (Contap_Line::*)() const>(&Contap_Line::NbPnts),
             R"#(None)#" 
          )
        .def("Point",
             (const IntSurf_PntOn2S & (Contap_Line::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (Contap_Line::*)( const Standard_Integer  ) const>(&Contap_Line::Point),
             R"#(None)#"  , py::arg("Index")
          )
        .def("Line",
             (gp_Lin (Contap_Line::*)() const) static_cast<gp_Lin (Contap_Line::*)() const>(&Contap_Line::Line),
             R"#(None)#" 
          )
        .def("Circle",
             (gp_Circ (Contap_Line::*)() const) static_cast<gp_Circ (Contap_Line::*)() const>(&Contap_Line::Circle),
             R"#(None)#" 
          )
        .def("SetTransitionOnS",
             (void (Contap_Line::*)( const IntSurf_TypeTrans  ) ) static_cast<void (Contap_Line::*)( const IntSurf_TypeTrans  ) >(&Contap_Line::SetTransitionOnS),
             R"#(Set The Tansition of the line.)#"  , py::arg("T")
          )
        .def("TransitionOnS",
             (IntSurf_TypeTrans (Contap_Line::*)() const) static_cast<IntSurf_TypeTrans (Contap_Line::*)() const>(&Contap_Line::TransitionOnS),
             R"#(returns IN if at the "left" of the line, the normale of the surface is oriented to the observator.)#" 
          )
        .def("Add",
             (void (Contap_Line::*)( const IntSurf_PntOn2S &  ) ) static_cast<void (Contap_Line::*)( const IntSurf_PntOn2S &  ) >(&Contap_Line::Add),
             R"#(None)#"  , py::arg("POn2S")
          )
        .def("NbVertex",
             (Standard_Integer (Contap_Line::*)() const) static_cast<Standard_Integer (Contap_Line::*)() const>(&Contap_Line::NbVertex),
             R"#(None)#" 
          )
        .def("Vertex",
             (Contap_Point & (Contap_Line::*)( const Standard_Integer  ) const) static_cast<Contap_Point & (Contap_Line::*)( const Standard_Integer  ) const>(&Contap_Line::Vertex),
             R"#(None)#"  , py::arg("Index")
          )
        .def("TypeContour",
             (Contap_IType (Contap_Line::*)() const) static_cast<Contap_IType (Contap_Line::*)() const>(&Contap_Line::TypeContour),
             R"#(Returns Contap_Lin for a line, Contap_Circle for a circle, and Contap_Walking for a Walking line, Contap_Restriction for a part of boundarie.)#" 
          )
        .def("NbPnts",
             (Standard_Integer (Contap_Line::*)() const) static_cast<Standard_Integer (Contap_Line::*)() const>(&Contap_Line::NbPnts),
             R"#(None)#" 
          )
        .def("Point",
             (const IntSurf_PntOn2S & (Contap_Line::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (Contap_Line::*)( const Standard_Integer  ) const>(&Contap_Line::Point),
             R"#(None)#"  , py::arg("Index")
          )
        .def("Line",
             (gp_Lin (Contap_Line::*)() const) static_cast<gp_Lin (Contap_Line::*)() const>(&Contap_Line::Line),
             R"#(None)#" 
          )
        .def("Circle",
             (gp_Circ (Contap_Line::*)() const) static_cast<gp_Circ (Contap_Line::*)() const>(&Contap_Line::Circle),
             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("LineOn2S",
             (const opencascade::handle<IntSurf_LineOn2S> & (Contap_Line::*)() const) static_cast<const opencascade::handle<IntSurf_LineOn2S> & (Contap_Line::*)() const>(&Contap_Line::LineOn2S),
             R"#(None)#"
             
         )
       .def("Arc",
             (const opencascade::handle<Adaptor2d_Curve2d> & (Contap_Line::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (Contap_Line::*)() const>(&Contap_Line::Arc),
             R"#(None)#"
             
         )
       .def("LineOn2S",
             (const opencascade::handle<IntSurf_LineOn2S> & (Contap_Line::*)() const) static_cast<const opencascade::handle<IntSurf_LineOn2S> & (Contap_Line::*)() const>(&Contap_Line::LineOn2S),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<Contap_Point , shared_ptr<Contap_Point>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const gp_Pnt &,const Standard_Real,const Standard_Real >()  , py::arg("Pt"),  py::arg("U"),  py::arg("V") )
    // custom constructors
    // methods
        .def("SetValue",
             (void (Contap_Point::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (Contap_Point::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Real  ) >(&Contap_Point::SetValue),
             R"#(Sets the values for a point.)#"  , py::arg("Pt"),  py::arg("U"),  py::arg("V")
          )
        .def("SetParameter",
             (void (Contap_Point::*)( const Standard_Real  ) ) static_cast<void (Contap_Point::*)( const Standard_Real  ) >(&Contap_Point::SetParameter),
             R"#(Set the value of the parameter on the intersection line.)#"  , py::arg("Para")
          )
        .def("SetVertex",
             (void (Contap_Point::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) ) static_cast<void (Contap_Point::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) >(&Contap_Point::SetVertex),
             R"#(Sets the values of a point which is a vertex on the initial facet of restriction of one of the surface.)#"  , py::arg("V")
          )
        .def("SetArc",
             (void (Contap_Point::*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const IntSurf_Transition & ,  const IntSurf_Transition &  ) ) static_cast<void (Contap_Point::*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const IntSurf_Transition & ,  const IntSurf_Transition &  ) >(&Contap_Point::SetArc),
             R"#(Sets the value of the arc and of the parameter on this arc of the point.)#"  , py::arg("A"),  py::arg("Param"),  py::arg("TLine"),  py::arg("TArc")
          )
        .def("SetMultiple",
             (void (Contap_Point::*)() ) static_cast<void (Contap_Point::*)() >(&Contap_Point::SetMultiple),
             R"#(None)#" 
          )
        .def("SetInternal",
             (void (Contap_Point::*)() ) static_cast<void (Contap_Point::*)() >(&Contap_Point::SetInternal),
             R"#(None)#" 
          )
        .def("ParameterOnLine",
             (Standard_Real (Contap_Point::*)() const) static_cast<Standard_Real (Contap_Point::*)() const>(&Contap_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("IsOnArc",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsOnArc),
             R"#(Returns True when the point is an intersection between the contour and a restriction.)#" 
          )
        .def("ParameterOnArc",
             (Standard_Real (Contap_Point::*)() const) static_cast<Standard_Real (Contap_Point::*)() const>(&Contap_Point::ParameterOnArc),
             R"#(Returns the parameter of the point on the arc returned by the method Arc().)#" 
          )
        .def("IsVertex",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsVertex),
             R"#(Returns TRUE if the point is a vertex on the initial restriction facet of the surface.)#" 
          )
        .def("IsMultiple",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsMultiple),
             R"#(Returns True if the point belongs to several lines.)#" 
          )
        .def("IsInternal",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsInternal),
             R"#(Returns True if the point is an internal one, i.e if the tangent to the line on the point and the eye direction are parallel.)#" 
          )
        .def("SetValue",
             (void (Contap_Point::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (Contap_Point::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Real  ) >(&Contap_Point::SetValue),
             R"#(Sets the values for a point.)#"  , py::arg("Pt"),  py::arg("U"),  py::arg("V")
          )
        .def("SetParameter",
             (void (Contap_Point::*)( const Standard_Real  ) ) static_cast<void (Contap_Point::*)( const Standard_Real  ) >(&Contap_Point::SetParameter),
             R"#(Set the value of the parameter on the intersection line.)#"  , py::arg("Para")
          )
        .def("SetVertex",
             (void (Contap_Point::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) ) static_cast<void (Contap_Point::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) >(&Contap_Point::SetVertex),
             R"#(Sets the values of a point which is a vertex on the initial facet of restriction of one of the surface.)#"  , py::arg("V")
          )
        .def("SetArc",
             (void (Contap_Point::*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const IntSurf_Transition & ,  const IntSurf_Transition &  ) ) static_cast<void (Contap_Point::*)( const opencascade::handle<Adaptor2d_Curve2d> & ,  const Standard_Real ,  const IntSurf_Transition & ,  const IntSurf_Transition &  ) >(&Contap_Point::SetArc),
             R"#(Sets the value of the arc and of the parameter on this arc of the point.)#"  , py::arg("A"),  py::arg("Param"),  py::arg("TLine"),  py::arg("TArc")
          )
        .def("SetMultiple",
             (void (Contap_Point::*)() ) static_cast<void (Contap_Point::*)() >(&Contap_Point::SetMultiple),
             R"#(None)#" 
          )
        .def("SetInternal",
             (void (Contap_Point::*)() ) static_cast<void (Contap_Point::*)() >(&Contap_Point::SetInternal),
             R"#(None)#" 
          )
        .def("IsMultiple",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsMultiple),
             R"#(Returns True if the point belongs to several lines.)#" 
          )
        .def("IsInternal",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsInternal),
             R"#(Returns True if the point is an internal one, i.e if the tangent to the line on the point and the eye direction are parallel.)#" 
          )
        .def("ParameterOnLine",
             (Standard_Real (Contap_Point::*)() const) static_cast<Standard_Real (Contap_Point::*)() const>(&Contap_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("IsOnArc",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsOnArc),
             R"#(Returns True when the point is an intersection between the contour and a restriction.)#" 
          )
        .def("ParameterOnArc",
             (Standard_Real (Contap_Point::*)() const) static_cast<Standard_Real (Contap_Point::*)() const>(&Contap_Point::ParameterOnArc),
             R"#(Returns the parameter of the point on the arc returned by the method Arc().)#" 
          )
        .def("IsVertex",
             (Standard_Boolean (Contap_Point::*)() const) static_cast<Standard_Boolean (Contap_Point::*)() const>(&Contap_Point::IsVertex),
             R"#(Returns TRUE if the point is a vertex on the initial restriction facet of the surface.)#" 
          )
    // methods using call by reference i.s.o. return
        .def("Parameters",
             []( Contap_Point &self   ){
                 Standard_Real  U1;
                Standard_Real  V1;

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

                 self.Parameters(U1,V1);
                 
                 return std::make_tuple(U1,V1); },
             R"#(Returns the parameters on the 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 & (Contap_Point::*)() const) static_cast<const gp_Pnt & (Contap_Point::*)() const>(&Contap_Point::Value),
             R"#(Returns the intersection point (geometric information).)#"
             
         )
       .def("Arc",
             (const opencascade::handle<Adaptor2d_Curve2d> & (Contap_Point::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (Contap_Point::*)() const>(&Contap_Point::Arc),
             R"#(Returns the arc of restriction containing the vertex.)#"
             
         )
       .def("TransitionOnLine",
             (const IntSurf_Transition & (Contap_Point::*)() const) static_cast<const IntSurf_Transition & (Contap_Point::*)() const>(&Contap_Point::TransitionOnLine),
             R"#(Returns the transition of the point on the contour.)#"
             
         )
       .def("TransitionOnArc",
             (const IntSurf_Transition & (Contap_Point::*)() const) static_cast<const IntSurf_Transition & (Contap_Point::*)() const>(&Contap_Point::TransitionOnArc),
             R"#(Returns the transition of the point on the arc.)#"
             
         )
       .def("Vertex",
             (const opencascade::handle<Adaptor3d_HVertex> & (Contap_Point::*)() const) static_cast<const opencascade::handle<Adaptor3d_HVertex> & (Contap_Point::*)() const>(&Contap_Point::Vertex),
             R"#(Returns the information about the point when it is on the domain of the patch, i-e when the function IsVertex returns True. Otherwise, an exception is raised.)#"
             
         )
       .def("Value",
             (const gp_Pnt & (Contap_Point::*)() const) static_cast<const gp_Pnt & (Contap_Point::*)() const>(&Contap_Point::Value),
             R"#(Returns the intersection point (geometric information).)#"
             
         )
       .def("Arc",
             (const opencascade::handle<Adaptor2d_Curve2d> & (Contap_Point::*)() const) static_cast<const opencascade::handle<Adaptor2d_Curve2d> & (Contap_Point::*)() const>(&Contap_Point::Arc),
             R"#(Returns the arc of restriction containing the vertex.)#"
             
         )
       .def("TransitionOnLine",
             (const IntSurf_Transition & (Contap_Point::*)() const) static_cast<const IntSurf_Transition & (Contap_Point::*)() const>(&Contap_Point::TransitionOnLine),
             R"#(Returns the transition of the point on the contour.)#"
             
         )
       .def("TransitionOnArc",
             (const IntSurf_Transition & (Contap_Point::*)() const) static_cast<const IntSurf_Transition & (Contap_Point::*)() const>(&Contap_Point::TransitionOnArc),
             R"#(Returns the transition of the point on the arc.)#"
             
         )
       .def("Vertex",
             (const opencascade::handle<Adaptor3d_HVertex> & (Contap_Point::*)() const) static_cast<const opencascade::handle<Adaptor3d_HVertex> & (Contap_Point::*)() const>(&Contap_Point::Vertex),
             R"#(Returns the information about the point when it is on the domain of the patch, i-e when the function IsVertex returns True. Otherwise, an exception is raised.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<Contap_SurfFunction , shared_ptr<Contap_SurfFunction>  , math_FunctionSetWithDerivatives >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Set",
             (void (Contap_SurfFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<void (Contap_SurfFunction::*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("S")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Pnt &  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Pnt &  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Eye")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Dir &  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Dir &  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Dir")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Dir & ,  const Standard_Real  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Dir & ,  const Standard_Real  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Dir"),  py::arg("Angle")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Pnt & ,  const Standard_Real  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Pnt & ,  const Standard_Real  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Eye"),  py::arg("Angle")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const Standard_Real  ) ) static_cast<void (Contap_SurfFunction::*)( const Standard_Real  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Tolerance")
          )
        .def("NbVariables",
             (Standard_Integer (Contap_SurfFunction::*)() const) static_cast<Standard_Integer (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::NbVariables),
             R"#(This method has to return 2.)#" 
          )
        .def("NbEquations",
             (Standard_Integer (Contap_SurfFunction::*)() const) static_cast<Standard_Integer (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::NbEquations),
             R"#(This method has to return 1.)#" 
          )
        .def("Value",
             (Standard_Boolean (Contap_SurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) ) static_cast<Standard_Boolean (Contap_SurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) >(&Contap_SurfFunction::Value),
             R"#(The dimension of F is 1.)#"  , py::arg("X"),  py::arg("F")
          )
        .def("Derivatives",
             (Standard_Boolean (Contap_SurfFunction::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (Contap_SurfFunction::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) >(&Contap_SurfFunction::Derivatives),
             R"#(The dimension of D is (1,2).)#"  , py::arg("X"),  py::arg("D")
          )
        .def("Values",
             (Standard_Boolean (Contap_SurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (Contap_SurfFunction::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) >(&Contap_SurfFunction::Values),
             R"#(None)#"  , py::arg("X"),  py::arg("F"),  py::arg("D")
          )
        .def("Root",
             (Standard_Real (Contap_SurfFunction::*)() const) static_cast<Standard_Real (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Root),
             R"#(Root is the value of the function at the solution. It is a vector of dimension 1, i-e a real.)#" 
          )
        .def("Tolerance",
             (Standard_Real (Contap_SurfFunction::*)() const) static_cast<Standard_Real (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Tolerance),
             R"#(Returns the value Tol so that if Abs(Func.Root())<Tol the function is considered null.)#" 
          )
        .def("IsTangent",
             (Standard_Boolean (Contap_SurfFunction::*)() ) static_cast<Standard_Boolean (Contap_SurfFunction::*)() >(&Contap_SurfFunction::IsTangent),
             R"#(None)#" 
          )
        .def("FunctionType",
             (Contap_TFunction (Contap_SurfFunction::*)() const) static_cast<Contap_TFunction (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::FunctionType),
             R"#(None)#" 
          )
        .def("Angle",
             (Standard_Real (Contap_SurfFunction::*)() const) static_cast<Standard_Real (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Angle),
             R"#(None)#" 
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Pnt &  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Pnt &  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Eye")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Dir &  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Dir &  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Direction")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Dir & ,  const Standard_Real  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Dir & ,  const Standard_Real  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Direction"),  py::arg("Angle")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const gp_Pnt & ,  const Standard_Real  ) ) static_cast<void (Contap_SurfFunction::*)( const gp_Pnt & ,  const Standard_Real  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Eye"),  py::arg("Angle")
          )
        .def("Set",
             (void (Contap_SurfFunction::*)( const Standard_Real  ) ) static_cast<void (Contap_SurfFunction::*)( const Standard_Real  ) >(&Contap_SurfFunction::Set),
             R"#(None)#"  , py::arg("Tolerance")
          )
        .def("Root",
             (Standard_Real (Contap_SurfFunction::*)() const) static_cast<Standard_Real (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Root),
             R"#(Root is the value of the function at the solution. It is a vector of dimension 1, i-e a real.)#" 
          )
        .def("Tolerance",
             (Standard_Real (Contap_SurfFunction::*)() const) static_cast<Standard_Real (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Tolerance),
             R"#(Returns the value Tol so that if Abs(Func.Root())<Tol the function is considered null.)#" 
          )
        .def("Angle",
             (Standard_Real (Contap_SurfFunction::*)() const) static_cast<Standard_Real (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Angle),
             R"#(None)#" 
          )
        .def("FunctionType",
             (Contap_TFunction (Contap_SurfFunction::*)() const) static_cast<Contap_TFunction (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::FunctionType),
             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 & (Contap_SurfFunction::*)() const) static_cast<const gp_Pnt & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Point),
             R"#(Returns the value of the solution point on the surface.)#"
             
         )
       .def("Direction3d",
             (const gp_Vec & (Contap_SurfFunction::*)() ) static_cast<const gp_Vec & (Contap_SurfFunction::*)() >(&Contap_SurfFunction::Direction3d),
             R"#(None)#"
             
         )
       .def("Direction2d",
             (const gp_Dir2d & (Contap_SurfFunction::*)() ) static_cast<const gp_Dir2d & (Contap_SurfFunction::*)() >(&Contap_SurfFunction::Direction2d),
             R"#(None)#"
             
         )
       .def("Eye",
             (const gp_Pnt & (Contap_SurfFunction::*)() const) static_cast<const gp_Pnt & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Eye),
             R"#(None)#"
             
         )
       .def("Direction",
             (const gp_Dir & (Contap_SurfFunction::*)() const) static_cast<const gp_Dir & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Direction),
             R"#(None)#"
             
         )
       .def("Surface",
             (const opencascade::handle<Adaptor3d_Surface> & (Contap_SurfFunction::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Surface),
             R"#(None)#"
             
         )
       .def("PSurface",
             (const opencascade::handle<Adaptor3d_Surface> & (Contap_SurfFunction::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::PSurface),
             R"#(Method is entered for compatibility with IntPatch_TheSurfFunction.)#"
             
         )
       .def("Point",
             (const gp_Pnt & (Contap_SurfFunction::*)() const) static_cast<const gp_Pnt & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Point),
             R"#(Returns the value of the solution point on the surface.)#"
             
         )
       .def("Direction3d",
             (const gp_Vec & (Contap_SurfFunction::*)() ) static_cast<const gp_Vec & (Contap_SurfFunction::*)() >(&Contap_SurfFunction::Direction3d),
             R"#(None)#"
             
         )
       .def("Direction2d",
             (const gp_Dir2d & (Contap_SurfFunction::*)() ) static_cast<const gp_Dir2d & (Contap_SurfFunction::*)() >(&Contap_SurfFunction::Direction2d),
             R"#(None)#"
             
         )
       .def("Surface",
             (const opencascade::handle<Adaptor3d_Surface> & (Contap_SurfFunction::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Surface),
             R"#(None)#"
             
         )
       .def("Eye",
             (const gp_Pnt & (Contap_SurfFunction::*)() const) static_cast<const gp_Pnt & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Eye),
             R"#(None)#"
             
         )
       .def("Direction",
             (const gp_Dir & (Contap_SurfFunction::*)() const) static_cast<const gp_Dir & (Contap_SurfFunction::*)() const>(&Contap_SurfFunction::Direction),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<Contap_SurfProps , shared_ptr<Contap_SurfProps>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Normale_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) >(&Contap_SurfProps::Normale),
                    R"#(Computes the point <P>, and normal vector <N> on <S> at parameters U,V.)#"  , py::arg("S"),  py::arg("U"),  py::arg("V"),  py::arg("P"),  py::arg("N")
          )
        .def_static("DerivAndNorm_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec & ,  gp_Vec &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec & ,  gp_Vec &  ) >(&Contap_SurfProps::DerivAndNorm),
                    R"#(Computes the point <P>, and normal vector <N> on <S> at parameters U,V.)#"  , py::arg("S"),  py::arg("U"),  py::arg("V"),  py::arg("P"),  py::arg("d1u"),  py::arg("d1v"),  py::arg("N")
          )
        .def_static("NormAndDn_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec & ,  gp_Vec &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec & ,  gp_Vec &  ) >(&Contap_SurfProps::NormAndDn),
                    R"#(Computes the point <P>, normal vector <N>, and its derivatives <Dnu> and <Dnv> on <S> at parameters U,V.)#"  , py::arg("S"),  py::arg("U"),  py::arg("V"),  py::arg("P"),  py::arg("N"),  py::arg("Dnu"),  py::arg("Dnv")
          )
    // 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 Contap_TheHSequenceOfPoint from ./opencascade/Contap_TheHSequenceOfPoint.hxx
    klass = m.attr("Contap_TheHSequenceOfPoint");


    // nested enums

    static_cast<py::class_<Contap_TheHSequenceOfPoint ,opencascade::handle<Contap_TheHSequenceOfPoint>  , Contap_TheSequenceOfPoint , Standard_Transient >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init<  const NCollection_Sequence<Contap_Point> & >()  , py::arg("theOther") )
    // custom constructors
    // methods
        .def("Append",
             (void (Contap_TheHSequenceOfPoint::*)(  const Contap_Point &  ) ) static_cast<void (Contap_TheHSequenceOfPoint::*)(  const Contap_Point &  ) >(&Contap_TheHSequenceOfPoint::Append),
             R"#(None)#"  , py::arg("theItem")
          )
        .def("Append",
             (void (Contap_TheHSequenceOfPoint::*)( NCollection_Sequence<Contap_Point> &  ) ) static_cast<void (Contap_TheHSequenceOfPoint::*)( NCollection_Sequence<Contap_Point> &  ) >(&Contap_TheHSequenceOfPoint::Append),
             R"#(None)#"  , py::arg("theSequence")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&Contap_TheHSequenceOfPoint::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&Contap_TheHSequenceOfPoint::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("Sequence",
             (const Contap_TheSequenceOfPoint & (Contap_TheHSequenceOfPoint::*)() const) static_cast<const Contap_TheSequenceOfPoint & (Contap_TheHSequenceOfPoint::*)() const>(&Contap_TheHSequenceOfPoint::Sequence),
             R"#(None)#"
             
         )
       .def("ChangeSequence",
             (Contap_TheSequenceOfPoint & (Contap_TheHSequenceOfPoint::*)() ) static_cast<Contap_TheSequenceOfPoint & (Contap_TheHSequenceOfPoint::*)() >(&Contap_TheHSequenceOfPoint::ChangeSequence),
             R"#(None)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (Contap_TheHSequenceOfPoint::*)() const) static_cast<const opencascade::handle<Standard_Type> & (Contap_TheHSequenceOfPoint::*)() const>(&Contap_TheHSequenceOfPoint::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<Contap_TheIWLineOfTheIWalking ,opencascade::handle<Contap_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 (Contap_TheIWLineOfTheIWalking::*)() ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)() >(&Contap_TheIWLineOfTheIWalking::Reverse),
             R"#(reverse the points in the line. Hasfirst, HasLast are kept.)#" 
          )
        .def("Cut",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) >(&Contap_TheIWLineOfTheIWalking::Cut),
             R"#(Cut the line at the point of rank Index.)#"  , py::arg("Index")
          )
        .def("AddPoint",
             (void (Contap_TheIWLineOfTheIWalking::*)( const IntSurf_PntOn2S &  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const IntSurf_PntOn2S &  ) >(&Contap_TheIWLineOfTheIWalking::AddPoint),
             R"#(Add a point in the line.)#"  , py::arg("P")
          )
        .def("AddStatusFirst",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean  ) >(&Contap_TheIWLineOfTheIWalking::AddStatusFirst),
             R"#(None)#"  , py::arg("Closed"),  py::arg("HasFirst")
          )
        .def("AddStatusFirst",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) >(&Contap_TheIWLineOfTheIWalking::AddStatusFirst),
             R"#(None)#"  , py::arg("Closed"),  py::arg("HasLast"),  py::arg("Index"),  py::arg("P")
          )
        .def("AddStatusFirstLast",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&Contap_TheIWLineOfTheIWalking::AddStatusFirstLast),
             R"#(None)#"  , py::arg("Closed"),  py::arg("HasFirst"),  py::arg("HasLast")
          )
        .def("AddStatusLast",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) >(&Contap_TheIWLineOfTheIWalking::AddStatusLast),
             R"#(None)#"  , py::arg("HasLast")
          )
        .def("AddStatusLast",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean ,  const Standard_Integer ,  const IntSurf_PathPoint &  ) >(&Contap_TheIWLineOfTheIWalking::AddStatusLast),
             R"#(None)#"  , py::arg("HasLast"),  py::arg("Index"),  py::arg("P")
          )
        .def("AddIndexPassing",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) >(&Contap_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 (Contap_TheIWLineOfTheIWalking::*)( const gp_Vec & ,  const Standard_Integer  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const gp_Vec & ,  const Standard_Integer  ) >(&Contap_TheIWLineOfTheIWalking::SetTangentVector),
             R"#(None)#"  , py::arg("V"),  py::arg("Index")
          )
        .def("SetTangencyAtBegining",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) >(&Contap_TheIWLineOfTheIWalking::SetTangencyAtBegining),
             R"#(None)#"  , py::arg("IsTangent")
          )
        .def("SetTangencyAtEnd",
             (void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) ) static_cast<void (Contap_TheIWLineOfTheIWalking::*)( const Standard_Boolean  ) >(&Contap_TheIWLineOfTheIWalking::SetTangencyAtEnd),
             R"#(None)#"  , py::arg("IsTangent")
          )
        .def("NbPoints",
             (Standard_Integer (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_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 & (Contap_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PntOn2S & (Contap_TheIWLineOfTheIWalking::*)( const Standard_Integer  ) const>(&Contap_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 (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_TheIWLineOfTheIWalking::IsClosed),
             R"#(Returns True if the line is closed.)#" 
          )
        .def("HasFirstPoint",
             (Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_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 (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_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 (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_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 (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_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 (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Integer (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_TheIWLineOfTheIWalking::NbPassingPoint),
             R"#(returns the number of points belonging to Pnts1 which are passing point.)#" 
          )
        .def("TangentVector",
             (const gp_Vec & (Contap_TheIWLineOfTheIWalking::*)( Standard_Integer &  ) const) static_cast<const gp_Vec & (Contap_TheIWLineOfTheIWalking::*)( Standard_Integer &  ) const>(&Contap_TheIWLineOfTheIWalking::TangentVector),
             R"#(None)#"  , py::arg("Index")
          )
        .def("IsTangentAtBegining",
             (Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_TheIWLineOfTheIWalking::IsTangentAtBegining),
             R"#(None)#" 
          )
        .def("IsTangentAtEnd",
             (Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<Standard_Boolean (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_TheIWLineOfTheIWalking::IsTangentAtEnd),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
        .def("PassingPoint",
             []( Contap_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 * (*)() >(&Contap_TheIWLineOfTheIWalking::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&Contap_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> & (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<const opencascade::handle<IntSurf_LineOn2S> & (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_TheIWLineOfTheIWalking::Line),
             R"#(Returns the LineOn2S contained in the walking line.)#"
             
         )
       .def("FirstPoint",
             (const IntSurf_PathPoint & (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<const IntSurf_PathPoint & (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_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 & (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<const IntSurf_PathPoint & (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_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> & (Contap_TheIWLineOfTheIWalking::*)() const) static_cast<const opencascade::handle<Standard_Type> & (Contap_TheIWLineOfTheIWalking::*)() const>(&Contap_TheIWLineOfTheIWalking::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<Contap_TheIWalking , shared_ptr<Contap_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 (Contap_TheIWalking::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (Contap_TheIWalking::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&Contap_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 (Contap_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,   const NCollection_Sequence<IntSurf_InteriorPoint> & ,  Contap_SurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) ) static_cast<void (Contap_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,   const NCollection_Sequence<IntSurf_InteriorPoint> & ,  Contap_SurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) >(&Contap_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 (Contap_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,  Contap_SurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) ) static_cast<void (Contap_TheIWalking::*)(  const NCollection_Sequence<IntSurf_PathPoint> & ,  Contap_SurfFunction & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Boolean  ) >(&Contap_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 (Contap_TheIWalking::*)() const) static_cast<Standard_Boolean (Contap_TheIWalking::*)() const>(&Contap_TheIWalking::IsDone),
             R"#(Returns true if the calculus was successful.)#" 
          )
        .def("NbLines",
             (Standard_Integer (Contap_TheIWalking::*)() const) static_cast<Standard_Integer (Contap_TheIWalking::*)() const>(&Contap_TheIWalking::NbLines),
             R"#(Returns the number of resulting polylines. An exception is raised if IsDone returns False.)#" 
          )
        .def("Value",
             (const opencascade::handle<Contap_TheIWLineOfTheIWalking> & (Contap_TheIWalking::*)( const Standard_Integer  ) const) static_cast<const opencascade::handle<Contap_TheIWLineOfTheIWalking> & (Contap_TheIWalking::*)( const Standard_Integer  ) const>(&Contap_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 (Contap_TheIWalking::*)() const) static_cast<Standard_Integer (Contap_TheIWalking::*)() const>(&Contap_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 & (Contap_TheIWalking::*)( const Standard_Integer  ) const) static_cast<const IntSurf_PathPoint & (Contap_TheIWalking::*)( const Standard_Integer  ) const>(&Contap_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 Contap_ThePathPointOfTheSearch from ./opencascade/Contap_ThePathPointOfTheSearch.hxx
    klass = m.attr("Contap_ThePathPointOfTheSearch");


    // nested enums

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

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


    // nested enums

    static_cast<py::class_<Contap_TheSearch , shared_ptr<Contap_TheSearch>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (void (Contap_TheSearch::*)( Contap_ArcFunction & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<void (Contap_TheSearch::*)( Contap_ArcFunction & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ) >(&Contap_TheSearch::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 (Contap_TheSearch::*)() const) static_cast<Standard_Boolean (Contap_TheSearch::*)() const>(&Contap_TheSearch::IsDone),
             R"#(Returns True if the calculus was successful.)#" 
          )
        .def("AllArcSolution",
             (Standard_Boolean (Contap_TheSearch::*)() const) static_cast<Standard_Boolean (Contap_TheSearch::*)() const>(&Contap_TheSearch::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 (Contap_TheSearch::*)() const) static_cast<Standard_Integer (Contap_TheSearch::*)() const>(&Contap_TheSearch::NbPoints),
             R"#(Returns the number of resulting points. An exception is raised if IsDone returns False (NotDone).)#" 
          )
        .def("Point",
             (const Contap_ThePathPointOfTheSearch & (Contap_TheSearch::*)( const Standard_Integer  ) const) static_cast<const Contap_ThePathPointOfTheSearch & (Contap_TheSearch::*)( const Standard_Integer  ) const>(&Contap_TheSearch::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 (Contap_TheSearch::*)() const) static_cast<Standard_Integer (Contap_TheSearch::*)() const>(&Contap_TheSearch::NbSegments),
             R"#(Returns the number of the resulting segments. An exception is raised if IsDone returns False (NotDone).)#" 
          )
        .def("Segment",
             (const Contap_TheSegmentOfTheSearch & (Contap_TheSearch::*)( const Standard_Integer  ) const) static_cast<const Contap_TheSegmentOfTheSearch & (Contap_TheSearch::*)( const Standard_Integer  ) const>(&Contap_TheSearch::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 Contap_TheSearchInside from ./opencascade/Contap_TheSearchInside.hxx
    klass = m.attr("Contap_TheSearchInside");


    // nested enums

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


    // nested enums

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

// functions
// ./opencascade/Contap_ArcFunction.hxx
// ./opencascade/Contap_ContAna.hxx
// ./opencascade/Contap_Contour.hxx
// ./opencascade/Contap_HContTool.hxx
// ./opencascade/Contap_HCurve2dTool.hxx
// ./opencascade/Contap_IType.hxx
// ./opencascade/Contap_Line.hxx
// ./opencascade/Contap_Point.hxx
// ./opencascade/Contap_SequenceOfIWLineOfTheIWalking.hxx
// ./opencascade/Contap_SequenceOfPathPointOfTheSearch.hxx
// ./opencascade/Contap_SequenceOfSegmentOfTheSearch.hxx
// ./opencascade/Contap_SurfFunction.hxx
// ./opencascade/Contap_SurfProps.hxx
// ./opencascade/Contap_TFunction.hxx
// ./opencascade/Contap_TheHSequenceOfPoint.hxx
// ./opencascade/Contap_TheIWLineOfTheIWalking.hxx
// ./opencascade/Contap_TheIWalking.hxx
// ./opencascade/Contap_ThePathPointOfTheSearch.hxx
// ./opencascade/Contap_TheSearch.hxx
// ./opencascade/Contap_TheSearchInside.hxx
// ./opencascade/Contap_TheSegmentOfTheSearch.hxx
// ./opencascade/Contap_TheSequenceOfLine.hxx
// ./opencascade/Contap_TheSequenceOfPoint.hxx

// Additional functions

// operators

// register typdefs
    register_template_NCollection_Sequence<opencascade::handle<Contap_TheIWLineOfTheIWalking>>(m,"Contap_SequenceOfIWLineOfTheIWalking");
    register_template_NCollection_Sequence<Contap_ThePathPointOfTheSearch>(m,"Contap_SequenceOfPathPointOfTheSearch");
    register_template_NCollection_Sequence<Contap_TheSegmentOfTheSearch>(m,"Contap_SequenceOfSegmentOfTheSearch");
    register_template_NCollection_Sequence<Contap_Line>(m,"Contap_TheSequenceOfLine");
    register_template_NCollection_Sequence<Contap_Point>(m,"Contap_TheSequenceOfPoint");


// exceptions

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

};

// user-defined post-inclusion per module

// user-defined post