File: TopoDS.cpp

package info (click to toggle)
python-ocp 7.8.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 64,724 kB
  • sloc: cpp: 362,337; pascal: 33; python: 23; makefile: 4
file content (1437 lines) | stat: -rw-r--r-- 68,233 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

// std lib related includes
#include <tuple>

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

namespace py = pybind11;

// Standard Handle
#include <Standard_Handle.hxx>


// includes to resolve forward declarations
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Wire.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Shell.hxx>
#include <TopoDS_Solid.hxx>
#include <TopoDS_CompSolid.hxx>
#include <TopoDS_Compound.hxx>
#include <TopoDS_HShape.hxx>
#include <TopoDS_TVertex.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_TEdge.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_TWire.hxx>
#include <TopoDS_Wire.hxx>
#include <TopoDS_TFace.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_TShell.hxx>
#include <TopoDS_Shell.hxx>
#include <TopoDS_TSolid.hxx>
#include <TopoDS_Solid.hxx>
#include <TopoDS_TCompSolid.hxx>
#include <TopoDS_CompSolid.hxx>
#include <TopoDS_TCompound.hxx>
#include <TopoDS_Compound.hxx>
#include <TopoDS_Builder.hxx>
#include <TopoDS_Iterator.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Shape.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>

// module includes
#include <TopoDS.hxx>
#include <TopoDS_AlertAttribute.hxx>
#include <TopoDS_AlertWithShape.hxx>
#include <TopoDS_Builder.hxx>
#include <TopoDS_Compound.hxx>
#include <TopoDS_CompSolid.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_FrozenShape.hxx>
#include <TopoDS_HShape.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopoDS_ListIteratorOfListOfShape.hxx>
#include <TopoDS_ListOfShape.hxx>
#include <TopoDS_LockedShape.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Shell.hxx>
#include <TopoDS_Solid.hxx>
#include <TopoDS_TCompound.hxx>
#include <TopoDS_TCompSolid.hxx>
#include <TopoDS_TEdge.hxx>
#include <TopoDS_TFace.hxx>
#include <TopoDS_TShape.hxx>
#include <TopoDS_TShell.hxx>
#include <TopoDS_TSolid.hxx>
#include <TopoDS_TVertex.hxx>
#include <TopoDS_TWire.hxx>
#include <TopoDS_UnCompatibleShapes.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Wire.hxx>

// template related includes

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


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

// user-defined inclusion per module
#include <cstdint>

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


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

//Python trampoline classes
    class Py_TopoDS_TShape : public TopoDS_TShape{
    public:
        using TopoDS_TShape::TopoDS_TShape;


        // public pure virtual
        TopAbs_ShapeEnum ShapeType() const  override { PYBIND11_OVERLOAD_PURE(TopAbs_ShapeEnum,TopoDS_TShape,ShapeType,) };
        opencascade::handle<TopoDS_TShape> EmptyCopy() const  override { PYBIND11_OVERLOAD_PURE(opencascade::handle<TopoDS_TShape>,TopoDS_TShape,EmptyCopy,) };


        // protected pure virtual


        // private pure virtual

    };
    class Py_TopoDS_TEdge : public TopoDS_TEdge{
    public:
        using TopoDS_TEdge::TopoDS_TEdge;


        // public pure virtual

        opencascade::handle<TopoDS_TShape> EmptyCopy() const  override { PYBIND11_OVERLOAD_PURE(opencascade::handle<TopoDS_TShape>,TopoDS_TShape,EmptyCopy,) };

        // protected pure virtual


        // private pure virtual

    };
    class Py_TopoDS_TVertex : public TopoDS_TVertex{
    public:
        using TopoDS_TVertex::TopoDS_TVertex;


        // public pure virtual

        opencascade::handle<TopoDS_TShape> EmptyCopy() const  override { PYBIND11_OVERLOAD_PURE(opencascade::handle<TopoDS_TShape>,TopoDS_TShape,EmptyCopy,) };

        // protected pure virtual


        // private pure virtual

    };

// classes

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

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

    // nested enums

    static_cast<py::class_<TopoDS , shared_ptr<TopoDS>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Vertex_s",
                    (const TopoDS_Vertex & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_Vertex & (*)( const TopoDS_Shape &  ) >(&TopoDS::Vertex),
                    R"#(Basic tool to access the data structure. Casts shape S to the more specialized return type, Vertex. Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("Vertex_s",
                    (TopoDS_Vertex & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_Vertex & (*)( TopoDS_Shape &  ) >(&TopoDS::Vertex),
                    R"#(None)#"  , py::arg("arg")
          )
        .def_static("Edge_s",
                    (const TopoDS_Edge & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_Edge & (*)( const TopoDS_Shape &  ) >(&TopoDS::Edge),
                    R"#(Casts shape S to the more specialized return type, Edge Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("Edge_s",
                    (TopoDS_Edge & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_Edge & (*)( TopoDS_Shape &  ) >(&TopoDS::Edge),
                    R"#(None)#"  , py::arg("arg")
          )
        .def_static("Wire_s",
                    (const TopoDS_Wire & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_Wire & (*)( const TopoDS_Shape &  ) >(&TopoDS::Wire),
                    R"#(Casts shape S to the more specialized return type, Wire. Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("Wire_s",
                    (TopoDS_Wire & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_Wire & (*)( TopoDS_Shape &  ) >(&TopoDS::Wire),
                    R"#(None)#"  , py::arg("arg")
          )
        .def_static("Face_s",
                    (const TopoDS_Face & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_Face & (*)( const TopoDS_Shape &  ) >(&TopoDS::Face),
                    R"#(Casts shape S to the more specialized return type, Face. Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("Face_s",
                    (TopoDS_Face & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_Face & (*)( TopoDS_Shape &  ) >(&TopoDS::Face),
                    R"#(None)#"  , py::arg("arg")
          )
        .def_static("Shell_s",
                    (const TopoDS_Shell & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_Shell & (*)( const TopoDS_Shape &  ) >(&TopoDS::Shell),
                    R"#(Casts shape S to the more specialized return type, Shell. Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("Shell_s",
                    (TopoDS_Shell & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_Shell & (*)( TopoDS_Shape &  ) >(&TopoDS::Shell),
                    R"#(None)#"  , py::arg("arg")
          )
        .def_static("Solid_s",
                    (const TopoDS_Solid & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_Solid & (*)( const TopoDS_Shape &  ) >(&TopoDS::Solid),
                    R"#(Casts shape S to the more specialized return type, Solid. Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("Solid_s",
                    (TopoDS_Solid & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_Solid & (*)( TopoDS_Shape &  ) >(&TopoDS::Solid),
                    R"#(None)#"  , py::arg("arg")
          )
        .def_static("CompSolid_s",
                    (const TopoDS_CompSolid & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_CompSolid & (*)( const TopoDS_Shape &  ) >(&TopoDS::CompSolid),
                    R"#(Casts shape S to the more specialized return type, CompSolid. Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("CompSolid_s",
                    (TopoDS_CompSolid & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_CompSolid & (*)( TopoDS_Shape &  ) >(&TopoDS::CompSolid),
                    R"#(None)#"  , py::arg("arg")
          )
        .def_static("Compound_s",
                    (const TopoDS_Compound & (*)( const TopoDS_Shape &  ) ) static_cast<const TopoDS_Compound & (*)( const TopoDS_Shape &  ) >(&TopoDS::Compound),
                    R"#(Casts shape S to the more specialized return type, Compound. Exceptions Standard_TypeMismatch if S cannot be cast to this return type.)#"  , py::arg("S")
          )
        .def_static("Compound_s",
                    (TopoDS_Compound & (*)( TopoDS_Shape &  ) ) static_cast<TopoDS_Compound & (*)( TopoDS_Shape &  ) >(&TopoDS::Compound),
                    R"#(None)#"  , py::arg("arg")
          )
    // 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 TopoDS_AlertAttribute from ./opencascade/TopoDS_AlertAttribute.hxx
    klass = m.attr("TopoDS_AlertAttribute");


    // nested enums

    static_cast<py::class_<TopoDS_AlertAttribute ,opencascade::handle<TopoDS_AlertAttribute>  , Message_AttributeStream >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape &,const TCollection_AsciiString & >()  , py::arg("theShape"),  py::arg("theName")=static_cast<const TCollection_AsciiString &>(TCollection_AsciiString ( )) )
    // custom constructors
    // methods
        .def("DumpJson",
             (void (TopoDS_AlertAttribute::*)( std::ostream & ,  Standard_Integer  ) const) static_cast<void (TopoDS_AlertAttribute::*)( std::ostream & ,  Standard_Integer  ) const>(&TopoDS_AlertAttribute::DumpJson),
             R"#(Dumps the content of me into the stream)#"  , py::arg("theOStream"),  py::arg("theDepth")=static_cast<Standard_Integer>(- 1)
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&TopoDS_AlertAttribute::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&TopoDS_AlertAttribute::get_type_descriptor),
                    R"#(None)#" 
          )
        .def_static("Send_s",
                    (void (*)( const opencascade::handle<Message_Messenger> & ,  const TopoDS_Shape &  ) ) static_cast<void (*)( const opencascade::handle<Message_Messenger> & ,  const TopoDS_Shape &  ) >(&TopoDS_AlertAttribute::Send),
                    R"#(Push shape information into messenger)#"  , py::arg("theMessenger"),  py::arg("theShape")
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (TopoDS_AlertAttribute::*)() const) static_cast<const opencascade::handle<Standard_Type> & (TopoDS_AlertAttribute::*)() const>(&TopoDS_AlertAttribute::DynamicType),
             R"#(None)#"
             
         )
       .def("GetShape",
             (const TopoDS_Shape & (TopoDS_AlertAttribute::*)() const) static_cast<const TopoDS_Shape & (TopoDS_AlertAttribute::*)() const>(&TopoDS_AlertAttribute::GetShape),
             R"#(Returns contained shape)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<TopoDS_AlertWithShape ,opencascade::handle<TopoDS_AlertWithShape>  , Message_Alert >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape & >()  , py::arg("theShape") )
    // custom constructors
    // methods
        .def("SetShape",
             (void (TopoDS_AlertWithShape::*)( const TopoDS_Shape &  ) ) static_cast<void (TopoDS_AlertWithShape::*)( const TopoDS_Shape &  ) >(&TopoDS_AlertWithShape::SetShape),
             R"#(Sets the shape)#"  , py::arg("theShape")
          )
        .def("SupportsMerge",
             (Standard_Boolean (TopoDS_AlertWithShape::*)() const) static_cast<Standard_Boolean (TopoDS_AlertWithShape::*)() const>(&TopoDS_AlertWithShape::SupportsMerge),
             R"#(Returns false.)#" 
          )
        .def("Merge",
             (Standard_Boolean (TopoDS_AlertWithShape::*)( const opencascade::handle<Message_Alert> &  ) ) static_cast<Standard_Boolean (TopoDS_AlertWithShape::*)( const opencascade::handle<Message_Alert> &  ) >(&TopoDS_AlertWithShape::Merge),
             R"#(Returns false.)#"  , py::arg("theTarget")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&TopoDS_AlertWithShape::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&TopoDS_AlertWithShape::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("GetShape",
             (const TopoDS_Shape & (TopoDS_AlertWithShape::*)() const) static_cast<const TopoDS_Shape & (TopoDS_AlertWithShape::*)() const>(&TopoDS_AlertWithShape::GetShape),
             R"#(Returns contained shape)#"
             
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (TopoDS_AlertWithShape::*)() const) static_cast<const opencascade::handle<Standard_Type> & (TopoDS_AlertWithShape::*)() const>(&TopoDS_AlertWithShape::DynamicType),
             R"#(None)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<TopoDS_Builder , shared_ptr<TopoDS_Builder>  >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("MakeWire",
             (void (TopoDS_Builder::*)( TopoDS_Wire &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Wire &  ) const>(&TopoDS_Builder::MakeWire),
             R"#(Make an empty Wire.)#"  , py::arg("W")
          )
        .def("MakeShell",
             (void (TopoDS_Builder::*)( TopoDS_Shell &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Shell &  ) const>(&TopoDS_Builder::MakeShell),
             R"#(Make an empty Shell.)#"  , py::arg("S")
          )
        .def("MakeSolid",
             (void (TopoDS_Builder::*)( TopoDS_Solid &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Solid &  ) const>(&TopoDS_Builder::MakeSolid),
             R"#(Make a Solid covering the whole 3D space.)#"  , py::arg("S")
          )
        .def("MakeCompSolid",
             (void (TopoDS_Builder::*)( TopoDS_CompSolid &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_CompSolid &  ) const>(&TopoDS_Builder::MakeCompSolid),
             R"#(Make an empty Composite Solid.)#"  , py::arg("C")
          )
        .def("MakeCompound",
             (void (TopoDS_Builder::*)( TopoDS_Compound &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Compound &  ) const>(&TopoDS_Builder::MakeCompound),
             R"#(Make an empty Compound.)#"  , py::arg("C")
          )
        .def("Add",
             (void (TopoDS_Builder::*)( TopoDS_Shape & ,  const TopoDS_Shape &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Shape & ,  const TopoDS_Shape &  ) const>(&TopoDS_Builder::Add),
             R"#(Add the Shape C in the Shape S. Exceptions - TopoDS_FrozenShape if S is not free and cannot be modified. - TopoDS__UnCompatibleShapes if S and C are not compatible.)#"  , py::arg("S"),  py::arg("C")
          )
        .def("Remove",
             (void (TopoDS_Builder::*)( TopoDS_Shape & ,  const TopoDS_Shape &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Shape & ,  const TopoDS_Shape &  ) const>(&TopoDS_Builder::Remove),
             R"#(Remove the Shape C from the Shape S. Exceptions TopoDS_FrozenShape if S is frozen and cannot be modified.)#"  , py::arg("S"),  py::arg("C")
          )
        .def("MakeWire",
             (void (TopoDS_Builder::*)( TopoDS_Wire &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Wire &  ) const>(&TopoDS_Builder::MakeWire),
             R"#(Make an empty Wire.)#"  , py::arg("W")
          )
        .def("MakeShell",
             (void (TopoDS_Builder::*)( TopoDS_Shell &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Shell &  ) const>(&TopoDS_Builder::MakeShell),
             R"#(Make an empty Shell.)#"  , py::arg("S")
          )
        .def("MakeSolid",
             (void (TopoDS_Builder::*)( TopoDS_Solid &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Solid &  ) const>(&TopoDS_Builder::MakeSolid),
             R"#(Make a Solid covering the whole 3D space.)#"  , py::arg("S")
          )
        .def("MakeCompSolid",
             (void (TopoDS_Builder::*)( TopoDS_CompSolid &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_CompSolid &  ) const>(&TopoDS_Builder::MakeCompSolid),
             R"#(Make an empty Composite Solid.)#"  , py::arg("C")
          )
        .def("MakeCompound",
             (void (TopoDS_Builder::*)( TopoDS_Compound &  ) const) static_cast<void (TopoDS_Builder::*)( TopoDS_Compound &  ) const>(&TopoDS_Builder::MakeCompound),
             R"#(Make an empty Compound.)#"  , py::arg("C")
          )
    // 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 TopoDS_HShape from ./opencascade/TopoDS_HShape.hxx
    klass = m.attr("TopoDS_HShape");


    // nested enums

    static_cast<py::class_<TopoDS_HShape ,opencascade::handle<TopoDS_HShape>  , Standard_Transient >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Shape & >()  , py::arg("aShape") )
    // custom constructors
    // methods
        .def("Shape",
             (void (TopoDS_HShape::*)( const TopoDS_Shape &  ) ) static_cast<void (TopoDS_HShape::*)( const TopoDS_Shape &  ) >(&TopoDS_HShape::Shape),
             R"#(Loads this shape with the shape aShape)#"  , py::arg("aShape")
          )
        .def("Shape",
             (void (TopoDS_HShape::*)( const TopoDS_Shape &  ) ) static_cast<void (TopoDS_HShape::*)( const TopoDS_Shape &  ) >(&TopoDS_HShape::Shape),
             R"#(Loads this shape with the shape aShape)#"  , py::arg("aShape")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&TopoDS_HShape::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&TopoDS_HShape::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Shape",
             (const TopoDS_Shape & (TopoDS_HShape::*)() const) static_cast<const TopoDS_Shape & (TopoDS_HShape::*)() const>(&TopoDS_HShape::Shape),
             R"#(Returns a reference to a constant TopoDS_Shape based on this shape.)#"
             
         )
       .def("ChangeShape",
             (TopoDS_Shape & (TopoDS_HShape::*)() ) static_cast<TopoDS_Shape & (TopoDS_HShape::*)() >(&TopoDS_HShape::ChangeShape),
             R"#(Exchanges the TopoDS_Shape object defining this shape for another one referencing the same underlying shape Accesses the list of shapes within the underlying shape referenced by the TopoDS_Shape object. Returns a reference to a TopoDS_Shape based on this shape. The TopoDS_Shape can be modified.)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (TopoDS_HShape::*)() const) static_cast<const opencascade::handle<Standard_Type> & (TopoDS_HShape::*)() const>(&TopoDS_HShape::DynamicType),
             R"#(None)#"
             
         )
       .def("Shape",
             (const TopoDS_Shape & (TopoDS_HShape::*)() const) static_cast<const TopoDS_Shape & (TopoDS_HShape::*)() const>(&TopoDS_HShape::Shape),
             R"#(Returns a reference to a constant TopoDS_Shape based on this shape.)#"
             
         )
       .def("ChangeShape",
             (TopoDS_Shape & (TopoDS_HShape::*)() ) static_cast<TopoDS_Shape & (TopoDS_HShape::*)() >(&TopoDS_HShape::ChangeShape),
             R"#(Exchanges the TopoDS_Shape object defining this shape for another one referencing the same underlying shape Accesses the list of shapes within the underlying shape referenced by the TopoDS_Shape object. Returns a reference to a TopoDS_Shape based on this shape. The TopoDS_Shape can be modified.)#"
             
             , py::return_value_policy::reference_internal
         )
;

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


    // nested enums

    static_cast<py::class_<TopoDS_Iterator , shared_ptr<TopoDS_Iterator>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Shape &,const Standard_Boolean,const Standard_Boolean >()  , py::arg("S"),  py::arg("cumOri")=static_cast<const Standard_Boolean>(Standard_True),  py::arg("cumLoc")=static_cast<const Standard_Boolean>(Standard_True) )
    // custom constructors
    // methods
        .def("Initialize",
             (void (TopoDS_Iterator::*)( const TopoDS_Shape & ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (TopoDS_Iterator::*)( const TopoDS_Shape & ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&TopoDS_Iterator::Initialize),
             R"#(Initializes this iterator with shape S. Note: - If cumOri is true, the function composes all sub-shapes with the orientation of S. - If cumLoc is true, the function multiplies all sub-shapes by the location of S, i.e. it applies to each sub-shape the transformation that is associated with S.)#"  , py::arg("S"),  py::arg("cumOri")=static_cast<const Standard_Boolean>(Standard_True),  py::arg("cumLoc")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("More",
             (Standard_Boolean (TopoDS_Iterator::*)() const) static_cast<Standard_Boolean (TopoDS_Iterator::*)() const>(&TopoDS_Iterator::More),
             R"#(Returns true if there is another sub-shape in the shape which this iterator is scanning.)#" 
          )
        .def("Next",
             (void (TopoDS_Iterator::*)() ) static_cast<void (TopoDS_Iterator::*)() >(&TopoDS_Iterator::Next),
             R"#(Moves on to the next sub-shape in the shape which this iterator is scanning. Exceptions Standard_NoMoreObject if there are no more sub-shapes in the shape.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Value",
             (const TopoDS_Shape & (TopoDS_Iterator::*)() const) static_cast<const TopoDS_Shape & (TopoDS_Iterator::*)() const>(&TopoDS_Iterator::Value),
             R"#(Returns the current sub-shape in the shape which this iterator is scanning. Exceptions Standard_NoSuchObject if there is no current sub-shape.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<TopoDS_Shape , shared_ptr<TopoDS_Shape>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("IsNull",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::IsNull),
             R"#(Returns true if this shape is null. In other words, it references no underlying shape with the potential to be given a location and an orientation.)#" 
          )
        .def("Nullify",
             (void (TopoDS_Shape::*)() ) static_cast<void (TopoDS_Shape::*)() >(&TopoDS_Shape::Nullify),
             R"#(Destroys the reference to the underlying shape stored in this shape. As a result, this shape becomes null.)#" 
          )
        .def("Location",
             (void (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) >(&TopoDS_Shape::Location),
             R"#(Sets the shape local coordinate system.)#"  , py::arg("theLoc"),  py::arg("theRaiseExc")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Located",
             (TopoDS_Shape (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) const) static_cast<TopoDS_Shape (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) const>(&TopoDS_Shape::Located),
             R"#(Returns a shape similar to <me> with the local coordinate system set to <Loc>.)#"  , py::arg("theLoc"),  py::arg("theRaiseExc")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Orientation",
             (TopAbs_Orientation (TopoDS_Shape::*)() const) static_cast<TopAbs_Orientation (TopoDS_Shape::*)() const>(&TopoDS_Shape::Orientation),
             R"#(Returns the shape orientation.)#" 
          )
        .def("Orientation",
             (void (TopoDS_Shape::*)( TopAbs_Orientation  ) ) static_cast<void (TopoDS_Shape::*)( TopAbs_Orientation  ) >(&TopoDS_Shape::Orientation),
             R"#(Sets the shape orientation.)#"  , py::arg("theOrient")
          )
        .def("Oriented",
             (TopoDS_Shape (TopoDS_Shape::*)( TopAbs_Orientation  ) const) static_cast<TopoDS_Shape (TopoDS_Shape::*)( TopAbs_Orientation  ) const>(&TopoDS_Shape::Oriented),
             R"#(Returns a shape similar to <me> with the orientation set to <Or>.)#"  , py::arg("theOrient")
          )
        .def("ShapeType",
             (TopAbs_ShapeEnum (TopoDS_Shape::*)() const) static_cast<TopAbs_ShapeEnum (TopoDS_Shape::*)() const>(&TopoDS_Shape::ShapeType),
             R"#(Returns the value of the TopAbs_ShapeEnum enumeration that corresponds to this shape, for example VERTEX, EDGE, and so on. Exceptions Standard_NullObject if this shape is null.)#" 
          )
        .def("Free",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Free),
             R"#(Returns the free flag.)#" 
          )
        .def("Free",
             (void (TopoDS_Shape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( Standard_Boolean  ) >(&TopoDS_Shape::Free),
             R"#(Sets the free flag.)#"  , py::arg("theIsFree")
          )
        .def("Locked",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Locked),
             R"#(Returns the locked flag.)#" 
          )
        .def("Locked",
             (void (TopoDS_Shape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( Standard_Boolean  ) >(&TopoDS_Shape::Locked),
             R"#(Sets the locked flag.)#"  , py::arg("theIsLocked")
          )
        .def("Modified",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Modified),
             R"#(Returns the modification flag.)#" 
          )
        .def("Modified",
             (void (TopoDS_Shape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( Standard_Boolean  ) >(&TopoDS_Shape::Modified),
             R"#(Sets the modification flag.)#"  , py::arg("theIsModified")
          )
        .def("Checked",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Checked),
             R"#(Returns the checked flag.)#" 
          )
        .def("Checked",
             (void (TopoDS_Shape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( Standard_Boolean  ) >(&TopoDS_Shape::Checked),
             R"#(Sets the checked flag.)#"  , py::arg("theIsChecked")
          )
        .def("Orientable",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Orientable),
             R"#(Returns the orientability flag.)#" 
          )
        .def("Orientable",
             (void (TopoDS_Shape::*)( const Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( const Standard_Boolean  ) >(&TopoDS_Shape::Orientable),
             R"#(Sets the orientability flag.)#"  , py::arg("theIsOrientable")
          )
        .def("Closed",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Closed),
             R"#(Returns the closedness flag.)#" 
          )
        .def("Closed",
             (void (TopoDS_Shape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( Standard_Boolean  ) >(&TopoDS_Shape::Closed),
             R"#(Sets the closedness flag.)#"  , py::arg("theIsClosed")
          )
        .def("Infinite",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Infinite),
             R"#(Returns the infinity flag.)#" 
          )
        .def("Infinite",
             (void (TopoDS_Shape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( Standard_Boolean  ) >(&TopoDS_Shape::Infinite),
             R"#(Sets the infinity flag.)#"  , py::arg("theIsInfinite")
          )
        .def("Convex",
             (Standard_Boolean (TopoDS_Shape::*)() const) static_cast<Standard_Boolean (TopoDS_Shape::*)() const>(&TopoDS_Shape::Convex),
             R"#(Returns the convexness flag.)#" 
          )
        .def("Convex",
             (void (TopoDS_Shape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( Standard_Boolean  ) >(&TopoDS_Shape::Convex),
             R"#(Sets the convexness flag.)#"  , py::arg("theIsConvex")
          )
        .def("Move",
             (void (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) ) static_cast<void (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) >(&TopoDS_Shape::Move),
             R"#(Multiplies the Shape location by thePosition.)#"  , py::arg("thePosition"),  py::arg("theRaiseExc")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Moved",
             (TopoDS_Shape (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) const) static_cast<TopoDS_Shape (TopoDS_Shape::*)( const TopLoc_Location & ,  const Standard_Boolean  ) const>(&TopoDS_Shape::Moved),
             R"#(Returns a shape similar to <me> with a location multiplied by thePosition.)#"  , py::arg("thePosition"),  py::arg("theRaiseExc")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Reverse",
             (void (TopoDS_Shape::*)() ) static_cast<void (TopoDS_Shape::*)() >(&TopoDS_Shape::Reverse),
             R"#(Reverses the orientation, using the Reverse method from the TopAbs package.)#" 
          )
        .def("Reversed",
             (TopoDS_Shape (TopoDS_Shape::*)() const) static_cast<TopoDS_Shape (TopoDS_Shape::*)() const>(&TopoDS_Shape::Reversed),
             R"#(Returns a shape similar to <me> with the orientation reversed, using the Reverse method from the TopAbs package.)#" 
          )
        .def("Complement",
             (void (TopoDS_Shape::*)() ) static_cast<void (TopoDS_Shape::*)() >(&TopoDS_Shape::Complement),
             R"#(Complements the orientation, using the Complement method from the TopAbs package.)#" 
          )
        .def("Complemented",
             (TopoDS_Shape (TopoDS_Shape::*)() const) static_cast<TopoDS_Shape (TopoDS_Shape::*)() const>(&TopoDS_Shape::Complemented),
             R"#(Returns a shape similar to <me> with the orientation complemented, using the Complement method from the TopAbs package.)#" 
          )
        .def("Compose",
             (void (TopoDS_Shape::*)( TopAbs_Orientation  ) ) static_cast<void (TopoDS_Shape::*)( TopAbs_Orientation  ) >(&TopoDS_Shape::Compose),
             R"#(Updates the Shape Orientation by composition with theOrient, using the Compose method from the TopAbs package.)#"  , py::arg("theOrient")
          )
        .def("Composed",
             (TopoDS_Shape (TopoDS_Shape::*)( TopAbs_Orientation  ) const) static_cast<TopoDS_Shape (TopoDS_Shape::*)( TopAbs_Orientation  ) const>(&TopoDS_Shape::Composed),
             R"#(Returns a shape similar to <me> with the orientation composed with theOrient, using the Compose method from the TopAbs package.)#"  , py::arg("theOrient")
          )
        .def("NbChildren",
             (Standard_Integer (TopoDS_Shape::*)() const) static_cast<Standard_Integer (TopoDS_Shape::*)() const>(&TopoDS_Shape::NbChildren),
             R"#(Returns the number of direct sub-shapes (children).)#" 
          )
        .def("IsPartner",
             (Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const) static_cast<Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const>(&TopoDS_Shape::IsPartner),
             R"#(Returns True if two shapes are partners, i.e. if they share the same TShape. Locations and Orientations may differ.)#"  , py::arg("theOther")
          )
        .def("IsSame",
             (Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const) static_cast<Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const>(&TopoDS_Shape::IsSame),
             R"#(Returns True if two shapes are same, i.e. if they share the same TShape with the same Locations. Orientations may differ.)#"  , py::arg("theOther")
          )
        .def("IsEqual",
             (Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const) static_cast<Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const>(&TopoDS_Shape::IsEqual),
             R"#(Returns True if two shapes are equal, i.e. if they share the same TShape with the same Locations and Orientations.)#"  , py::arg("theOther")
          )
        .def("IsNotEqual",
             (Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const) static_cast<Standard_Boolean (TopoDS_Shape::*)( const TopoDS_Shape &  ) const>(&TopoDS_Shape::IsNotEqual),
             R"#(Negation of the IsEqual method.)#"  , py::arg("theOther")
          )
        .def("EmptyCopy",
             (void (TopoDS_Shape::*)() ) static_cast<void (TopoDS_Shape::*)() >(&TopoDS_Shape::EmptyCopy),
             R"#(Replace <me> by a new Shape with the same Orientation and Location and a new TShape with the same geometry and no sub-shapes.)#" 
          )
        .def("EmptyCopied",
             (TopoDS_Shape (TopoDS_Shape::*)() const) static_cast<TopoDS_Shape (TopoDS_Shape::*)() const>(&TopoDS_Shape::EmptyCopied),
             R"#(Returns a new Shape with the same Orientation and Location and a new TShape with the same geometry and no sub-shapes.)#" 
          )
        .def("TShape",
             (void (TopoDS_Shape::*)( const opencascade::handle<TopoDS_TShape> &  ) ) static_cast<void (TopoDS_Shape::*)( const opencascade::handle<TopoDS_TShape> &  ) >(&TopoDS_Shape::TShape),
             R"#(None)#"  , py::arg("theTShape")
          )
        .def("DumpJson",
             (void (TopoDS_Shape::*)( std::ostream & ,  Standard_Integer  ) const) static_cast<void (TopoDS_Shape::*)( std::ostream & ,  Standard_Integer  ) const>(&TopoDS_Shape::DumpJson),
             R"#(Dumps the content of me into the stream)#"  , py::arg("theOStream"),  py::arg("theDepth")=static_cast<Standard_Integer>(- 1)
          )
    // 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
        .def("__bool__",
             []( const TopoDS_Shape & self ){ return !self.IsNull();},
             R"#(Check if shape is not Null)#"
          )
        .def("_address",
             []( const TopoDS_Shape & self ){ return reinterpret_cast<uintptr_t>(&self);},
             R"#(Get the instance address)#"
          )
        .def("__hash__",
             []( const TopoDS_Shape & self ){ return std::hash<TopoDS_Shape>{}(self);},
             R"#(Get the instance hash)#"
          )
        .def_static("_from_address",
                    []( const uintptr_t addr ){ return reinterpret_cast<TopoDS_Shape*>(addr);},
                    R"#(Cast an address to a shape)#"
, py::arg("address")          )
    // properties
    // methods returning by ref wrapped as properties
       .def("Location",
             (const TopLoc_Location & (TopoDS_Shape::*)() const) static_cast<const TopLoc_Location & (TopoDS_Shape::*)() const>(&TopoDS_Shape::Location),
             R"#(Returns the shape local coordinate system.)#"
             
         )
       .def("TShape",
             (const opencascade::handle<TopoDS_TShape> & (TopoDS_Shape::*)() const) static_cast<const opencascade::handle<TopoDS_TShape> & (TopoDS_Shape::*)() const>(&TopoDS_Shape::TShape),
             R"#(Returns a handle to the actual shape implementation.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<TopoDS_TShape ,opencascade::handle<TopoDS_TShape> ,Py_TopoDS_TShape , Standard_Transient >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("Free",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Free),
             R"#(Returns the free flag.)#" 
          )
        .def("Free",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Free),
             R"#(Sets the free flag.)#"  , py::arg("theIsFree")
          )
        .def("Locked",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Locked),
             R"#(Returns the locked flag.)#" 
          )
        .def("Locked",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Locked),
             R"#(Sets the locked flag.)#"  , py::arg("theIsLocked")
          )
        .def("Modified",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Modified),
             R"#(Returns the modification flag.)#" 
          )
        .def("Modified",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Modified),
             R"#(Sets the modification flag.)#"  , py::arg("theIsModified")
          )
        .def("Checked",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Checked),
             R"#(Returns the checked flag.)#" 
          )
        .def("Checked",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Checked),
             R"#(Sets the checked flag.)#"  , py::arg("theIsChecked")
          )
        .def("Orientable",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Orientable),
             R"#(Returns the orientability flag.)#" 
          )
        .def("Orientable",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Orientable),
             R"#(Sets the orientability flag.)#"  , py::arg("theIsOrientable")
          )
        .def("Closed",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Closed),
             R"#(Returns the closedness flag.)#" 
          )
        .def("Closed",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Closed),
             R"#(Sets the closedness flag.)#"  , py::arg("theIsClosed")
          )
        .def("Infinite",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Infinite),
             R"#(Returns the infinity flag.)#" 
          )
        .def("Infinite",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Infinite),
             R"#(Sets the infinity flag.)#"  , py::arg("theIsInfinite")
          )
        .def("Convex",
             (Standard_Boolean (TopoDS_TShape::*)() const) static_cast<Standard_Boolean (TopoDS_TShape::*)() const>(&TopoDS_TShape::Convex),
             R"#(Returns the convexness flag.)#" 
          )
        .def("Convex",
             (void (TopoDS_TShape::*)( Standard_Boolean  ) ) static_cast<void (TopoDS_TShape::*)( Standard_Boolean  ) >(&TopoDS_TShape::Convex),
             R"#(Sets the convexness flag.)#"  , py::arg("theIsConvex")
          )
        .def("ShapeType",
             (TopAbs_ShapeEnum (TopoDS_TShape::*)() const) static_cast<TopAbs_ShapeEnum (TopoDS_TShape::*)() const>(&TopoDS_TShape::ShapeType),
             R"#(Returns the type as a term of the ShapeEnum enum : VERTEX, EDGE, WIRE, FACE, ....)#" 
          )
        .def("EmptyCopy",
             (opencascade::handle<TopoDS_TShape> (TopoDS_TShape::*)() const) static_cast<opencascade::handle<TopoDS_TShape> (TopoDS_TShape::*)() const>(&TopoDS_TShape::EmptyCopy),
             R"#(Returns a copy of the TShape with no sub-shapes.)#" 
          )
        .def("NbChildren",
             (Standard_Integer (TopoDS_TShape::*)() const) static_cast<Standard_Integer (TopoDS_TShape::*)() const>(&TopoDS_TShape::NbChildren),
             R"#(Returns the number of direct sub-shapes (children).)#" 
          )
        .def("DumpJson",
             (void (TopoDS_TShape::*)( std::ostream & ,  Standard_Integer  ) const) static_cast<void (TopoDS_TShape::*)( std::ostream & ,  Standard_Integer  ) const>(&TopoDS_TShape::DumpJson),
             R"#(Dumps the content of me into the stream)#"  , py::arg("theOStream"),  py::arg("theDepth")=static_cast<Standard_Integer>(- 1)
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&TopoDS_TShape::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&TopoDS_TShape::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (TopoDS_TShape::*)() const) static_cast<const opencascade::handle<Standard_Type> & (TopoDS_TShape::*)() const>(&TopoDS_TShape::DynamicType),
             R"#(None)#"
             
         )
;

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

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


    // nested enums

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

// functions
// ./opencascade/TopoDS.hxx
    m.def("TopoDS_Mismatch",
          (Standard_Boolean (*)( const TopoDS_Shape & ,  const TopAbs_ShapeEnum  ))  static_cast<Standard_Boolean (*)( const TopoDS_Shape & ,  const TopAbs_ShapeEnum  )>(&TopoDS_Mismatch),
          R"#(None)#"  , py::arg("S"),  py::arg("T")
          );
// ./opencascade/TopoDS_AlertAttribute.hxx
// ./opencascade/TopoDS_AlertWithShape.hxx
// ./opencascade/TopoDS_Builder.hxx
// ./opencascade/TopoDS_CompSolid.hxx
// ./opencascade/TopoDS_Compound.hxx
// ./opencascade/TopoDS_Edge.hxx
// ./opencascade/TopoDS_Face.hxx
// ./opencascade/TopoDS_FrozenShape.hxx
// ./opencascade/TopoDS_HShape.hxx
// ./opencascade/TopoDS_Iterator.hxx
// ./opencascade/TopoDS_ListIteratorOfListOfShape.hxx
// ./opencascade/TopoDS_ListOfShape.hxx
// ./opencascade/TopoDS_LockedShape.hxx
// ./opencascade/TopoDS_Shape.hxx
// ./opencascade/TopoDS_Shell.hxx
// ./opencascade/TopoDS_Solid.hxx
// ./opencascade/TopoDS_TCompSolid.hxx
// ./opencascade/TopoDS_TCompound.hxx
// ./opencascade/TopoDS_TEdge.hxx
// ./opencascade/TopoDS_TFace.hxx
// ./opencascade/TopoDS_TShape.hxx
// ./opencascade/TopoDS_TShell.hxx
// ./opencascade/TopoDS_TSolid.hxx
// ./opencascade/TopoDS_TVertex.hxx
// ./opencascade/TopoDS_TWire.hxx
// ./opencascade/TopoDS_UnCompatibleShapes.hxx
// ./opencascade/TopoDS_Vertex.hxx
// ./opencascade/TopoDS_Wire.hxx

// Additional functions

// operators

// register typdefs


// exceptions
register_occ_exception<TopoDS_FrozenShape>(m, "TopoDS_FrozenShape");
register_occ_exception<TopoDS_LockedShape>(m, "TopoDS_LockedShape");
register_occ_exception<TopoDS_UnCompatibleShapes>(m, "TopoDS_UnCompatibleShapes");

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

};

// user-defined post-inclusion per module

// user-defined post