File: BinTools.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 (838 lines) | stat: -rw-r--r-- 51,537 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

// 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_Shape.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom2d_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <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 <BinTools_LocationSet.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 <Geom_Curve.hxx>
#include <Geom_Surface.hxx>
#include <Geom2d_Curve.hxx>
#include <Poly_Polygon3D.hxx>
#include <Poly_PolygonOnTriangulation.hxx>
#include <Poly_Triangulation.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 <gp_Pnt.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Curve.hxx>
#include <Geom2d_Curve.hxx>
#include <Geom_Surface.hxx>
#include <Poly_Polygon3D.hxx>
#include <Poly_PolygonOnTriangulation.hxx>
#include <Poly_Triangulation.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Surface.hxx>

// module includes
#include <BinTools.hxx>
#include <BinTools_Curve2dSet.hxx>
#include <BinTools_CurveSet.hxx>
#include <BinTools_FormatVersion.hxx>
#include <BinTools_IStream.hxx>
#include <BinTools_LocationSet.hxx>
#include <BinTools_LocationSetPtr.hxx>
#include <BinTools_ObjectType.hxx>
#include <BinTools_OStream.hxx>
#include <BinTools_ShapeReader.hxx>
#include <BinTools_ShapeSet.hxx>
#include <BinTools_ShapeSetBase.hxx>
#include <BinTools_ShapeWriter.hxx>
#include <BinTools_SurfaceSet.hxx>

// template related includes


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

// user-defined inclusion per module

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


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

//Python trampoline classes

// classes

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

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

    // nested enums

    static_cast<py::class_<BinTools , shared_ptr<BinTools>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("PutReal_s",
                    (Standard_OStream & (*)( std::ostream & ,  const Standard_Real &  ) ) static_cast<Standard_OStream & (*)( std::ostream & ,  const Standard_Real &  ) >(&BinTools::PutReal),
                    R"#(None)#"  , py::arg("OS"),  py::arg("theValue")
          )
        .def_static("PutShortReal_s",
                    (Standard_OStream & (*)( std::ostream & ,  const Standard_ShortReal &  ) ) static_cast<Standard_OStream & (*)( std::ostream & ,  const Standard_ShortReal &  ) >(&BinTools::PutShortReal),
                    R"#(None)#"  , py::arg("OS"),  py::arg("theValue")
          )
        .def_static("PutInteger_s",
                    (Standard_OStream & (*)( std::ostream & ,  const Standard_Integer  ) ) static_cast<Standard_OStream & (*)( std::ostream & ,  const Standard_Integer  ) >(&BinTools::PutInteger),
                    R"#(None)#"  , py::arg("OS"),  py::arg("theValue")
          )
        .def_static("PutBool_s",
                    (Standard_OStream & (*)( std::ostream & ,  const Standard_Boolean  ) ) static_cast<Standard_OStream & (*)( std::ostream & ,  const Standard_Boolean  ) >(&BinTools::PutBool),
                    R"#(None)#"  , py::arg("OS"),  py::arg("theValue")
          )
        .def_static("PutExtChar_s",
                    (Standard_OStream & (*)( std::ostream & ,  const Standard_ExtCharacter  ) ) static_cast<Standard_OStream & (*)( std::ostream & ,  const Standard_ExtCharacter  ) >(&BinTools::PutExtChar),
                    R"#(None)#"  , py::arg("OS"),  py::arg("theValue")
          )
        .def_static("GetReal_s",
                    (Standard_IStream & (*)( std::istream & ,  Standard_Real &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  Standard_Real &  ) >(&BinTools::GetReal),
                    R"#(None)#"  , py::arg("IS"),  py::arg("theValue")
          )
        .def_static("GetShortReal_s",
                    (Standard_IStream & (*)( std::istream & ,  Standard_ShortReal &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  Standard_ShortReal &  ) >(&BinTools::GetShortReal),
                    R"#(None)#"  , py::arg("IS"),  py::arg("theValue")
          )
        .def_static("GetInteger_s",
                    (Standard_IStream & (*)( std::istream & ,  Standard_Integer &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  Standard_Integer &  ) >(&BinTools::GetInteger),
                    R"#(None)#"  , py::arg("IS"),  py::arg("theValue")
          )
        .def_static("GetBool_s",
                    (Standard_IStream & (*)( std::istream & ,  Standard_Boolean &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  Standard_Boolean &  ) >(&BinTools::GetBool),
                    R"#(None)#"  , py::arg("IS"),  py::arg("theValue")
          )
        .def_static("GetExtChar_s",
                    (Standard_IStream & (*)( std::istream & ,  Standard_ExtCharacter &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  Standard_ExtCharacter &  ) >(&BinTools::GetExtChar),
                    R"#(None)#"  , py::arg("IS"),  py::arg("theValue")
          )
        .def_static("Write_s",
                    (void (*)( const TopoDS_Shape & ,  std::ostream & ,  const Message_ProgressRange &  ) ) static_cast<void (*)( const TopoDS_Shape & ,  std::ostream & ,  const Message_ProgressRange &  ) >(&BinTools::Write),
                    R"#(Writes the shape to the stream in binary format BinTools_FormatVersion_CURRENT. This alias writes shape with triangulation data.)#"  , py::arg("theShape"),  py::arg("theStream"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def_static("Write_s",
                    (void (*)( const TopoDS_Shape & ,  std::ostream & ,  const Standard_Boolean ,  const Standard_Boolean ,  const BinTools_FormatVersion ,  const Message_ProgressRange &  ) ) static_cast<void (*)( const TopoDS_Shape & ,  std::ostream & ,  const Standard_Boolean ,  const Standard_Boolean ,  const BinTools_FormatVersion ,  const Message_ProgressRange &  ) >(&BinTools::Write),
                    R"#(Writes the shape to the stream in binary format of specified version.)#"  , py::arg("theShape"),  py::arg("theStream"),  py::arg("theWithTriangles"),  py::arg("theWithNormals"),  py::arg("theVersion"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def_static("Read_s",
                    (void (*)( TopoDS_Shape & ,  std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (*)( TopoDS_Shape & ,  std::istream & ,  const Message_ProgressRange &  ) >(&BinTools::Read),
                    R"#(Reads a shape from <theStream> and returns it in <theShape>.)#"  , py::arg("theShape"),  py::arg("theStream"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def_static("Write_s",
                    (Standard_Boolean (*)( const TopoDS_Shape & ,  const Standard_CString ,  const Message_ProgressRange &  ) ) static_cast<Standard_Boolean (*)( const TopoDS_Shape & ,  const Standard_CString ,  const Message_ProgressRange &  ) >(&BinTools::Write),
                    R"#(Writes the shape to the file in binary format BinTools_FormatVersion_CURRENT.)#"  , py::arg("theShape"),  py::arg("theFile"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def_static("Write_s",
                    (Standard_Boolean (*)( const TopoDS_Shape & ,  const Standard_CString ,  const Standard_Boolean ,  const Standard_Boolean ,  const BinTools_FormatVersion ,  const Message_ProgressRange &  ) ) static_cast<Standard_Boolean (*)( const TopoDS_Shape & ,  const Standard_CString ,  const Standard_Boolean ,  const Standard_Boolean ,  const BinTools_FormatVersion ,  const Message_ProgressRange &  ) >(&BinTools::Write),
                    R"#(Writes the shape to the file in binary format of specified version.)#"  , py::arg("theShape"),  py::arg("theFile"),  py::arg("theWithTriangles"),  py::arg("theWithNormals"),  py::arg("theVersion"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def_static("Read_s",
                    (Standard_Boolean (*)( TopoDS_Shape & ,  const Standard_CString ,  const Message_ProgressRange &  ) ) static_cast<Standard_Boolean (*)( TopoDS_Shape & ,  const Standard_CString ,  const Message_ProgressRange &  ) >(&BinTools::Read),
                    R"#(Reads a shape from <theFile> and returns it in <theShape>.)#"  , py::arg("theShape"),  py::arg("theFile"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // 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 BinTools_Curve2dSet from ./opencascade/BinTools_Curve2dSet.hxx
    klass = m.attr("BinTools_Curve2dSet");


    // nested enums

    static_cast<py::class_<BinTools_Curve2dSet , shared_ptr<BinTools_Curve2dSet>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BinTools_Curve2dSet::*)() ) static_cast<void (BinTools_Curve2dSet::*)() >(&BinTools_Curve2dSet::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Add",
             (Standard_Integer (BinTools_Curve2dSet::*)( const opencascade::handle<Geom2d_Curve> &  ) ) static_cast<Standard_Integer (BinTools_Curve2dSet::*)( const opencascade::handle<Geom2d_Curve> &  ) >(&BinTools_Curve2dSet::Add),
             R"#(Incorporate a new Curve in the set and returns its index.)#"  , py::arg("C")
          )
        .def("Curve2d",
             (opencascade::handle<Geom2d_Curve> (BinTools_Curve2dSet::*)( const Standard_Integer  ) const) static_cast<opencascade::handle<Geom2d_Curve> (BinTools_Curve2dSet::*)( const Standard_Integer  ) const>(&BinTools_Curve2dSet::Curve2d),
             R"#(Returns the Curve of index <I>.)#"  , py::arg("I")
          )
        .def("Index",
             (Standard_Integer (BinTools_Curve2dSet::*)( const opencascade::handle<Geom2d_Curve> &  ) const) static_cast<Standard_Integer (BinTools_Curve2dSet::*)( const opencascade::handle<Geom2d_Curve> &  ) const>(&BinTools_Curve2dSet::Index),
             R"#(Returns the index of <L>.)#"  , py::arg("C")
          )
        .def("Write",
             (void (BinTools_Curve2dSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const) static_cast<void (BinTools_Curve2dSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const>(&BinTools_Curve2dSet::Write),
             R"#(Writes the content of me on the stream <OS> in a format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Read",
             (void (BinTools_Curve2dSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_Curve2dSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_Curve2dSet::Read),
             R"#(Reads the content of me from the stream <IS>. me is first cleared.)#"  , py::arg("IS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("WriteCurve2d_s",
                    (void (*)( const opencascade::handle<Geom2d_Curve> & ,  BinTools_OStream &  ) ) static_cast<void (*)( const opencascade::handle<Geom2d_Curve> & ,  BinTools_OStream &  ) >(&BinTools_Curve2dSet::WriteCurve2d),
                    R"#(Dumps the curve on the binary stream, that can be read back.)#"  , py::arg("C"),  py::arg("OS")
          )
        .def_static("ReadCurve2d_s",
                    (Standard_IStream & (*)( std::istream & ,  opencascade::handle<Geom2d_Curve> &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  opencascade::handle<Geom2d_Curve> &  ) >(&BinTools_Curve2dSet::ReadCurve2d),
                    R"#(Reads the curve from the stream. The curve is assumed to have been written with the Write method.)#"  , py::arg("IS"),  py::arg("C")
          )
    // 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 BinTools_CurveSet from ./opencascade/BinTools_CurveSet.hxx
    klass = m.attr("BinTools_CurveSet");


    // nested enums

    static_cast<py::class_<BinTools_CurveSet , shared_ptr<BinTools_CurveSet>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BinTools_CurveSet::*)() ) static_cast<void (BinTools_CurveSet::*)() >(&BinTools_CurveSet::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Add",
             (Standard_Integer (BinTools_CurveSet::*)( const opencascade::handle<Geom_Curve> &  ) ) static_cast<Standard_Integer (BinTools_CurveSet::*)( const opencascade::handle<Geom_Curve> &  ) >(&BinTools_CurveSet::Add),
             R"#(Incorporate a new Curve in the set and returns its index.)#"  , py::arg("C")
          )
        .def("Curve",
             (opencascade::handle<Geom_Curve> (BinTools_CurveSet::*)( const Standard_Integer  ) const) static_cast<opencascade::handle<Geom_Curve> (BinTools_CurveSet::*)( const Standard_Integer  ) const>(&BinTools_CurveSet::Curve),
             R"#(Returns the Curve of index <I>.)#"  , py::arg("I")
          )
        .def("Index",
             (Standard_Integer (BinTools_CurveSet::*)( const opencascade::handle<Geom_Curve> &  ) const) static_cast<Standard_Integer (BinTools_CurveSet::*)( const opencascade::handle<Geom_Curve> &  ) const>(&BinTools_CurveSet::Index),
             R"#(Returns the index of <L>.)#"  , py::arg("C")
          )
        .def("Write",
             (void (BinTools_CurveSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const) static_cast<void (BinTools_CurveSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const>(&BinTools_CurveSet::Write),
             R"#(Writes the content of me on the stream <OS> in a format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Read",
             (void (BinTools_CurveSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_CurveSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_CurveSet::Read),
             R"#(Reads the content of me from the stream <IS>. me is first cleared.)#"  , py::arg("IS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("WriteCurve_s",
                    (void (*)( const opencascade::handle<Geom_Curve> & ,  BinTools_OStream &  ) ) static_cast<void (*)( const opencascade::handle<Geom_Curve> & ,  BinTools_OStream &  ) >(&BinTools_CurveSet::WriteCurve),
                    R"#(Dumps the curve on the stream in binary format that can be read back.)#"  , py::arg("C"),  py::arg("OS")
          )
        .def_static("ReadCurve_s",
                    (Standard_IStream & (*)( std::istream & ,  opencascade::handle<Geom_Curve> &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  opencascade::handle<Geom_Curve> &  ) >(&BinTools_CurveSet::ReadCurve),
                    R"#(Reads the curve from the stream. The curve is assumed to have been written with the Write method)#"  , py::arg("IS"),  py::arg("C")
          )
    // 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 BinTools_IStream from ./opencascade/BinTools_IStream.hxx
    klass = m.attr("BinTools_IStream");


    // nested enums

    static_cast<py::class_<BinTools_IStream , shared_ptr<BinTools_IStream>  >>(klass)
    // constructors
        .def(py::init< std::istream & >()  , py::arg("theStream") )
    // custom constructors
    // methods
        .def("ReadType",
             (BinTools_ObjectType (BinTools_IStream::*)() ) static_cast<BinTools_ObjectType (BinTools_IStream::*)() >(&BinTools_IStream::ReadType),
             R"#(Reads and returns the type.)#" 
          )
        .def("ShapeType",
             (TopAbs_ShapeEnum (BinTools_IStream::*)() ) static_cast<TopAbs_ShapeEnum (BinTools_IStream::*)() >(&BinTools_IStream::ShapeType),
             R"#(Returns the shape type by the last retrieved type.)#" 
          )
        .def("ShapeOrientation",
             (TopAbs_Orientation (BinTools_IStream::*)() ) static_cast<TopAbs_Orientation (BinTools_IStream::*)() >(&BinTools_IStream::ShapeOrientation),
             R"#(Returns the shape orientation by the last retrieved type.)#" 
          )
        .def("Position",
             (uint64_t (BinTools_IStream::*)() ) static_cast<uint64_t (BinTools_IStream::*)() >(&BinTools_IStream::Position),
             R"#(Returns the current position in the stream.)#" 
          )
        .def("GoTo",
             (void (BinTools_IStream::*)( const uint64_t &  ) ) static_cast<void (BinTools_IStream::*)( const uint64_t &  ) >(&BinTools_IStream::GoTo),
             R"#(Moves the current stream position to the given one.)#"  , py::arg("thePosition")
          )
        .def("IsReference",
             (Standard_Boolean (BinTools_IStream::*)() ) static_cast<Standard_Boolean (BinTools_IStream::*)() >(&BinTools_IStream::IsReference),
             R"#(Returns true if the last restored type is one of a reference)#" 
          )
        .def("ReadReference",
             (uint64_t (BinTools_IStream::*)() ) static_cast<uint64_t (BinTools_IStream::*)() >(&BinTools_IStream::ReadReference),
             R"#(Reads a reference IStream using the last restored type.)#" 
          )
        .def("UpdatePosition",
             (void (BinTools_IStream::*)() ) static_cast<void (BinTools_IStream::*)() >(&BinTools_IStream::UpdatePosition),
             R"#(Makes up to date the myPosition because myStream was used outside and position is changed.)#" 
          )
        .def("ReadReal",
             (Standard_Real (BinTools_IStream::*)() ) static_cast<Standard_Real (BinTools_IStream::*)() >(&BinTools_IStream::ReadReal),
             R"#(Reads real value from the stream.)#" 
          )
        .def("ReadInteger",
             (Standard_Integer (BinTools_IStream::*)() ) static_cast<Standard_Integer (BinTools_IStream::*)() >(&BinTools_IStream::ReadInteger),
             R"#(Reads integer value from the stream.)#" 
          )
        .def("ReadPnt",
             (gp_Pnt (BinTools_IStream::*)() ) static_cast<gp_Pnt (BinTools_IStream::*)() >(&BinTools_IStream::ReadPnt),
             R"#(Reads point coordinates value from the stream.)#" 
          )
        .def("ReadByte",
             (Standard_Byte (BinTools_IStream::*)() ) static_cast<Standard_Byte (BinTools_IStream::*)() >(&BinTools_IStream::ReadByte),
             R"#(Reads byte value from the stream.)#" 
          )
        .def("ReadBool",
             (Standard_Boolean (BinTools_IStream::*)() ) static_cast<Standard_Boolean (BinTools_IStream::*)() >(&BinTools_IStream::ReadBool),
             R"#(Reads boolean value from the stream (stored as one byte).)#" 
          )
        .def("ReadShortReal",
             (Standard_ShortReal (BinTools_IStream::*)() ) static_cast<Standard_ShortReal (BinTools_IStream::*)() >(&BinTools_IStream::ReadShortReal),
             R"#(Reads short real value from the stream.)#" 
          )
    // methods using call by reference i.s.o. return
        .def("ReadBools",
             []( BinTools_IStream &self   ){
                 Standard_Boolean  theBool1;
                Standard_Boolean  theBool2;
                Standard_Boolean  theBool3;

                 self.ReadBools(theBool1,theBool2,theBool3);
                 
                 return std::make_tuple(theBool1,theBool2,theBool3); },
             R"#(Reads 3 boolean values from one byte)#" 
          )
        .def("ReadBools",
             []( BinTools_IStream &self   ){
                 Standard_Boolean  theBool1;
                Standard_Boolean  theBool2;
                Standard_Boolean  theBool3;
                Standard_Boolean  theBool4;
                Standard_Boolean  theBool5;
                Standard_Boolean  theBool6;
                Standard_Boolean  theBool7;

                 self.ReadBools(theBool1,theBool2,theBool3,theBool4,theBool5,theBool6,theBool7);
                 
                 return std::make_tuple(theBool1,theBool2,theBool3,theBool4,theBool5,theBool6,theBool7); },
             R"#(Reads 7 boolean values from one byte)#" 
          )
    // 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("LastType",
             (const BinTools_ObjectType & (BinTools_IStream::*)() ) static_cast<const BinTools_ObjectType & (BinTools_IStream::*)() >(&BinTools_IStream::LastType),
             R"#(Returns the last read type.)#"
             
         )
       .def("Stream",
             (Standard_IStream & (BinTools_IStream::*)() ) static_cast<Standard_IStream & (BinTools_IStream::*)() >(&BinTools_IStream::Stream),
             R"#(Returns the original IStream.)#"
             
             , py::return_value_policy::reference_internal
         )
;

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


    // nested enums

    static_cast<py::class_<BinTools_LocationSet , shared_ptr<BinTools_LocationSet>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BinTools_LocationSet::*)() ) static_cast<void (BinTools_LocationSet::*)() >(&BinTools_LocationSet::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Add",
             (Standard_Integer (BinTools_LocationSet::*)( const TopLoc_Location &  ) ) static_cast<Standard_Integer (BinTools_LocationSet::*)( const TopLoc_Location &  ) >(&BinTools_LocationSet::Add),
             R"#(Incorporate a new Location in the set and returns its index.)#"  , py::arg("L")
          )
        .def("Location",
             (const TopLoc_Location & (BinTools_LocationSet::*)( const Standard_Integer  ) const) static_cast<const TopLoc_Location & (BinTools_LocationSet::*)( const Standard_Integer  ) const>(&BinTools_LocationSet::Location),
             R"#(Returns the location of index <I>.)#"  , py::arg("I")
          )
        .def("Index",
             (Standard_Integer (BinTools_LocationSet::*)( const TopLoc_Location &  ) const) static_cast<Standard_Integer (BinTools_LocationSet::*)( const TopLoc_Location &  ) const>(&BinTools_LocationSet::Index),
             R"#(Returns the index of <L>.)#"  , py::arg("L")
          )
        .def("NbLocations",
             (Standard_Integer (BinTools_LocationSet::*)() const) static_cast<Standard_Integer (BinTools_LocationSet::*)() const>(&BinTools_LocationSet::NbLocations),
             R"#(Returns number of locations.)#" 
          )
        .def("Write",
             (void (BinTools_LocationSet::*)( std::ostream &  ) const) static_cast<void (BinTools_LocationSet::*)( std::ostream &  ) const>(&BinTools_LocationSet::Write),
             R"#(Writes the content of me on the stream <OS> in a format that can be read back by Read.)#"  , py::arg("OS")
          )
        .def("Read",
             (void (BinTools_LocationSet::*)( std::istream &  ) ) static_cast<void (BinTools_LocationSet::*)( std::istream &  ) >(&BinTools_LocationSet::Read),
             R"#(Reads the content of me from the stream <IS>. me is first cleared.)#"  , py::arg("IS")
          )
    // 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 BinTools_OStream from ./opencascade/BinTools_OStream.hxx
    klass = m.attr("BinTools_OStream");


    // nested enums

    static_cast<py::class_<BinTools_OStream , shared_ptr<BinTools_OStream>  >>(klass)
    // constructors
        .def(py::init< std::ostream & >()  , py::arg("theStream") )
    // custom constructors
    // methods
        .def("WriteReference",
             (void (BinTools_OStream::*)( const uint64_t &  ) ) static_cast<void (BinTools_OStream::*)( const uint64_t &  ) >(&BinTools_OStream::WriteReference),
             R"#(Writes the reference to the given position (an offset between the current and the given one).)#"  , py::arg("thePosition")
          )
        .def("WriteShape",
             (void (BinTools_OStream::*)( const TopAbs_ShapeEnum & ,  const TopAbs_Orientation &  ) ) static_cast<void (BinTools_OStream::*)( const TopAbs_ShapeEnum & ,  const TopAbs_Orientation &  ) >(&BinTools_OStream::WriteShape),
             R"#(Writes an identifier of shape type and orientation into the stream.)#"  , py::arg("theType"),  py::arg("theOrientation")
          )
        .def("PutBools",
             (void (BinTools_OStream::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BinTools_OStream::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&BinTools_OStream::PutBools),
             R"#(Writes 3 booleans as one byte to the stream.)#"  , py::arg("theValue1"),  py::arg("theValue2"),  py::arg("theValue3")
          )
        .def("PutBools",
             (void (BinTools_OStream::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (BinTools_OStream::*)( const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&BinTools_OStream::PutBools),
             R"#(Writes 7 booleans as one byte to the stream.)#"  , py::arg("theValue1"),  py::arg("theValue2"),  py::arg("theValue3"),  py::arg("theValue4"),  py::arg("theValue5"),  py::arg("theValue6"),  py::arg("theValue7")
          )
    // 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("Position",
             (const uint64_t & (BinTools_OStream::*)() ) static_cast<const uint64_t & (BinTools_OStream::*)() >(&BinTools_OStream::Position),
             R"#(Returns the current position of the stream)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<BinTools_ShapeSetBase , shared_ptr<BinTools_ShapeSetBase>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("IsWithTriangles",
             (Standard_Boolean (BinTools_ShapeSetBase::*)() const) static_cast<Standard_Boolean (BinTools_ShapeSetBase::*)() const>(&BinTools_ShapeSetBase::IsWithTriangles),
             R"#(Return true if shape should be stored with triangles.)#" 
          )
        .def("IsWithNormals",
             (Standard_Boolean (BinTools_ShapeSetBase::*)() const) static_cast<Standard_Boolean (BinTools_ShapeSetBase::*)() const>(&BinTools_ShapeSetBase::IsWithNormals),
             R"#(Return true if shape should be stored triangulation with normals.)#" 
          )
        .def("SetWithTriangles",
             (void (BinTools_ShapeSetBase::*)( const Standard_Boolean  ) ) static_cast<void (BinTools_ShapeSetBase::*)( const Standard_Boolean  ) >(&BinTools_ShapeSetBase::SetWithTriangles),
             R"#(Define if shape will be stored with triangles. Ignored (always written) if face defines only triangulation (no surface).)#"  , py::arg("theWithTriangles")
          )
        .def("SetWithNormals",
             (void (BinTools_ShapeSetBase::*)( const Standard_Boolean  ) ) static_cast<void (BinTools_ShapeSetBase::*)( const Standard_Boolean  ) >(&BinTools_ShapeSetBase::SetWithNormals),
             R"#(Define if shape will be stored triangulation with normals. Ignored (always written) if face defines only triangulation (no surface).)#"  , py::arg("theWithNormals")
          )
        .def("SetFormatNb",
             (void (BinTools_ShapeSetBase::*)( const Standard_Integer  ) ) static_cast<void (BinTools_ShapeSetBase::*)( const Standard_Integer  ) >(&BinTools_ShapeSetBase::SetFormatNb),
             R"#(Sets the BinTools_FormatVersion.)#"  , py::arg("theFormatNb")
          )
        .def("FormatNb",
             (Standard_Integer (BinTools_ShapeSetBase::*)() const) static_cast<Standard_Integer (BinTools_ShapeSetBase::*)() const>(&BinTools_ShapeSetBase::FormatNb),
             R"#(Returns the BinTools_FormatVersion.)#" 
          )
        .def("Clear",
             (void (BinTools_ShapeSetBase::*)() ) static_cast<void (BinTools_ShapeSetBase::*)() >(&BinTools_ShapeSetBase::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Write",
             (void (BinTools_ShapeSetBase::*)( std::ostream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSetBase::*)( std::ostream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSetBase::Write),
             R"#(Writes the content of me on the stream <OS> in binary format that can be read back by Read.)#"  , py::arg("arg"),  py::arg("arg")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Read",
             (void (BinTools_ShapeSetBase::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSetBase::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSetBase::Read),
             R"#(Reads the content of me from the binary stream <IS>. me is first cleared.)#"  , py::arg("arg"),  py::arg("arg")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Write",
             (void (BinTools_ShapeSetBase::*)( const TopoDS_Shape & ,  std::ostream &  ) ) static_cast<void (BinTools_ShapeSetBase::*)( const TopoDS_Shape & ,  std::ostream &  ) >(&BinTools_ShapeSetBase::Write),
             R"#(Writes on <OS> the shape <S>. Writes the orientation, the index of the TShape and the index of the Location.)#"  , py::arg("arg"),  py::arg("arg")
          )
        .def("Read",
             (void (BinTools_ShapeSetBase::*)( std::istream & ,  TopoDS_Shape &  ) ) static_cast<void (BinTools_ShapeSetBase::*)( std::istream & ,  TopoDS_Shape &  ) >(&BinTools_ShapeSetBase::Read),
             R"#(An empty virtual method for redefinition in shape-reader.)#"  , py::arg("arg"),  py::arg("arg")
          )
    // 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 BinTools_SurfaceSet from ./opencascade/BinTools_SurfaceSet.hxx
    klass = m.attr("BinTools_SurfaceSet");


    // nested enums

    static_cast<py::class_<BinTools_SurfaceSet , shared_ptr<BinTools_SurfaceSet>  >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BinTools_SurfaceSet::*)() ) static_cast<void (BinTools_SurfaceSet::*)() >(&BinTools_SurfaceSet::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Add",
             (Standard_Integer (BinTools_SurfaceSet::*)( const opencascade::handle<Geom_Surface> &  ) ) static_cast<Standard_Integer (BinTools_SurfaceSet::*)( const opencascade::handle<Geom_Surface> &  ) >(&BinTools_SurfaceSet::Add),
             R"#(Incorporate a new Surface in the set and returns its index.)#"  , py::arg("S")
          )
        .def("Surface",
             (opencascade::handle<Geom_Surface> (BinTools_SurfaceSet::*)( const Standard_Integer  ) const) static_cast<opencascade::handle<Geom_Surface> (BinTools_SurfaceSet::*)( const Standard_Integer  ) const>(&BinTools_SurfaceSet::Surface),
             R"#(Returns the Surface of index <I>.)#"  , py::arg("I")
          )
        .def("Index",
             (Standard_Integer (BinTools_SurfaceSet::*)( const opencascade::handle<Geom_Surface> &  ) const) static_cast<Standard_Integer (BinTools_SurfaceSet::*)( const opencascade::handle<Geom_Surface> &  ) const>(&BinTools_SurfaceSet::Index),
             R"#(Returns the index of <L>.)#"  , py::arg("S")
          )
        .def("Write",
             (void (BinTools_SurfaceSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const) static_cast<void (BinTools_SurfaceSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const>(&BinTools_SurfaceSet::Write),
             R"#(Writes the content of me on the stream <OS> in binary format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Read",
             (void (BinTools_SurfaceSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_SurfaceSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_SurfaceSet::Read),
             R"#(Reads the content of me from the stream <IS>. me is first cleared.)#"  , py::arg("IS"),  py::arg("therange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("WriteSurface_s",
                    (void (*)( const opencascade::handle<Geom_Surface> & ,  BinTools_OStream &  ) ) static_cast<void (*)( const opencascade::handle<Geom_Surface> & ,  BinTools_OStream &  ) >(&BinTools_SurfaceSet::WriteSurface),
                    R"#(Dumps the surface on the stream in binary format that can be read back.)#"  , py::arg("S"),  py::arg("OS")
          )
        .def_static("ReadSurface_s",
                    (Standard_IStream & (*)( std::istream & ,  opencascade::handle<Geom_Surface> &  ) ) static_cast<Standard_IStream & (*)( std::istream & ,  opencascade::handle<Geom_Surface> &  ) >(&BinTools_SurfaceSet::ReadSurface),
                    R"#(Reads the surface from the stream. The surface is assumed to have been written with the Write method.)#"  , py::arg("IS"),  py::arg("S")
          )
    // 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 BinTools_ShapeReader from ./opencascade/BinTools_ShapeReader.hxx
    klass = m.attr("BinTools_ShapeReader");


    // nested enums

    static_cast<py::class_<BinTools_ShapeReader , shared_ptr<BinTools_ShapeReader>  , BinTools_ShapeSetBase >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BinTools_ShapeReader::*)() ) static_cast<void (BinTools_ShapeReader::*)() >(&BinTools_ShapeReader::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Read",
             (void (BinTools_ShapeReader::*)( std::istream & ,  TopoDS_Shape &  ) ) static_cast<void (BinTools_ShapeReader::*)( std::istream & ,  TopoDS_Shape &  ) >(&BinTools_ShapeReader::Read),
             R"#(Reads the shape from stream using previously restored shapes and objects by references.)#"  , py::arg("theStream"),  py::arg("theShape")
          )
        .def("ReadLocation",
             (const TopLoc_Location * (BinTools_ShapeReader::*)( BinTools_IStream &  ) ) static_cast<const TopLoc_Location * (BinTools_ShapeReader::*)( BinTools_IStream &  ) >(&BinTools_ShapeReader::ReadLocation),
             R"#(Reads location from the stream.)#"  , py::arg("theStream")
          )
    // 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 BinTools_ShapeSet from ./opencascade/BinTools_ShapeSet.hxx
    klass = m.attr("BinTools_ShapeSet");


    // nested enums

    static_cast<py::class_<BinTools_ShapeSet , shared_ptr<BinTools_ShapeSet>  , BinTools_ShapeSetBase >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BinTools_ShapeSet::*)() ) static_cast<void (BinTools_ShapeSet::*)() >(&BinTools_ShapeSet::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Add",
             (Standard_Integer (BinTools_ShapeSet::*)( const TopoDS_Shape &  ) ) static_cast<Standard_Integer (BinTools_ShapeSet::*)( const TopoDS_Shape &  ) >(&BinTools_ShapeSet::Add),
             R"#(Stores <S> and its sub-shape. Returns the index of <S>. The method AddGeometry is called on each sub-shape.)#"  , py::arg("S")
          )
        .def("Shape",
             (const TopoDS_Shape & (BinTools_ShapeSet::*)( const Standard_Integer  ) ) static_cast<const TopoDS_Shape & (BinTools_ShapeSet::*)( const Standard_Integer  ) >(&BinTools_ShapeSet::Shape),
             R"#(Returns the sub-shape of index <I>.)#"  , py::arg("I")
          )
        .def("Index",
             (Standard_Integer (BinTools_ShapeSet::*)( const TopoDS_Shape &  ) const) static_cast<Standard_Integer (BinTools_ShapeSet::*)( const TopoDS_Shape &  ) const>(&BinTools_ShapeSet::Index),
             R"#(Returns the index of <S>.)#"  , py::arg("S")
          )
        .def("NbShapes",
             (Standard_Integer (BinTools_ShapeSet::*)() const) static_cast<Standard_Integer (BinTools_ShapeSet::*)() const>(&BinTools_ShapeSet::NbShapes),
             R"#(Returns number of shapes read from file.)#" 
          )
        .def("Write",
             (void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSet::Write),
             R"#(Writes the content of me on the stream <OS> in binary format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Read",
             (void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSet::Read),
             R"#(Reads the content of me from the binary stream <IS>. me is first cleared.)#"  , py::arg("IS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("Write",
             (void (BinTools_ShapeSet::*)( const TopoDS_Shape & ,  std::ostream &  ) ) static_cast<void (BinTools_ShapeSet::*)( const TopoDS_Shape & ,  std::ostream &  ) >(&BinTools_ShapeSet::Write),
             R"#(Writes on <OS> the shape <S>. Writes the orientation, the index of the TShape and the index of the Location.)#"  , py::arg("S"),  py::arg("OS")
          )
        .def("WriteGeometry",
             (void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const) static_cast<void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const>(&BinTools_ShapeSet::WriteGeometry),
             R"#(Writes the geometry of me on the stream <OS> in a binary format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("ReadGeometry",
             (void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSet::ReadGeometry),
             R"#(Reads the geometry of me from the stream <IS>.)#"  , py::arg("IS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("ReadFlagsAndSubs",
             (void (BinTools_ShapeSet::*)( TopoDS_Shape & ,  const TopAbs_ShapeEnum ,  std::istream & ,  const Standard_Integer  ) ) static_cast<void (BinTools_ShapeSet::*)( TopoDS_Shape & ,  const TopAbs_ShapeEnum ,  std::istream & ,  const Standard_Integer  ) >(&BinTools_ShapeSet::ReadFlagsAndSubs),
             R"#(Reads from <IS> a shape flags and sub-shapes and modifies S.)#"  , py::arg("S"),  py::arg("T"),  py::arg("IS"),  py::arg("NbShapes")
          )
        .def("ReadSubs",
             (void (BinTools_ShapeSet::*)( TopoDS_Shape & ,  std::istream & ,  const Standard_Integer  ) ) static_cast<void (BinTools_ShapeSet::*)( TopoDS_Shape & ,  std::istream & ,  const Standard_Integer  ) >(&BinTools_ShapeSet::ReadSubs),
             R"#(Reads from <IS> a shape and returns it in S. <NbShapes> is the number of tshapes in the set.)#"  , py::arg("S"),  py::arg("IS"),  py::arg("NbShapes")
          )
        .def("Read",
             (void (BinTools_ShapeSet::*)( std::istream & ,  TopoDS_Shape &  ) ) static_cast<void (BinTools_ShapeSet::*)( std::istream & ,  TopoDS_Shape &  ) >(&BinTools_ShapeSet::Read),
             R"#(An empty virtual method for redefinition in shape-reader.)#"  , py::arg("arg"),  py::arg("arg")
          )
        .def("WriteShape",
             (void (BinTools_ShapeSet::*)( const TopoDS_Shape & ,  std::ostream &  ) const) static_cast<void (BinTools_ShapeSet::*)( const TopoDS_Shape & ,  std::ostream &  ) const>(&BinTools_ShapeSet::WriteShape),
             R"#(Writes the shape <S> on the stream <OS> in a binary format that can be read back by Read.)#"  , py::arg("S"),  py::arg("OS")
          )
        .def("ReadShape",
             (void (BinTools_ShapeSet::*)( const TopAbs_ShapeEnum ,  std::istream & ,  TopoDS_Shape &  ) ) static_cast<void (BinTools_ShapeSet::*)( const TopAbs_ShapeEnum ,  std::istream & ,  TopoDS_Shape &  ) >(&BinTools_ShapeSet::ReadShape),
             R"#(Reads a shape of type <T> from the stream <IS> and returns it in <S>.)#"  , py::arg("T"),  py::arg("IS"),  py::arg("S")
          )
        .def("AddShape",
             (void (BinTools_ShapeSet::*)( const TopoDS_Shape &  ) ) static_cast<void (BinTools_ShapeSet::*)( const TopoDS_Shape &  ) >(&BinTools_ShapeSet::AddShape),
             R"#(Stores the shape <S>.)#"  , py::arg("S")
          )
        .def("AddShapes",
             (void (BinTools_ShapeSet::*)( TopoDS_Shape & ,  const TopoDS_Shape &  ) ) static_cast<void (BinTools_ShapeSet::*)( TopoDS_Shape & ,  const TopoDS_Shape &  ) >(&BinTools_ShapeSet::AddShapes),
             R"#(Inserts the shape <S2> in the shape <S1>.)#"  , py::arg("S1"),  py::arg("S2")
          )
        .def("ReadPolygon3D",
             (void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSet::ReadPolygon3D),
             R"#(Reads the 3d polygons of me from the stream <IS>.)#"  , py::arg("IS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("WritePolygon3D",
             (void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const) static_cast<void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const>(&BinTools_ShapeSet::WritePolygon3D),
             R"#(Writes the 3d polygons on the stream <OS> in a format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("ReadTriangulation",
             (void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSet::ReadTriangulation),
             R"#(Reads the triangulation of me from the stream <IS>.)#"  , py::arg("IS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("WriteTriangulation",
             (void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const) static_cast<void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const>(&BinTools_ShapeSet::WriteTriangulation),
             R"#(Writes the triangulation on the stream <OS> in a format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("ReadPolygonOnTriangulation",
             (void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) ) static_cast<void (BinTools_ShapeSet::*)( std::istream & ,  const Message_ProgressRange &  ) >(&BinTools_ShapeSet::ReadPolygonOnTriangulation),
             R"#(Reads the polygons on triangulation of me from the stream <IS>.)#"  , py::arg("IS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
        .def("WritePolygonOnTriangulation",
             (void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const) static_cast<void (BinTools_ShapeSet::*)( std::ostream & ,  const Message_ProgressRange &  ) const>(&BinTools_ShapeSet::WritePolygonOnTriangulation),
             R"#(Writes the polygons on triangulation on the stream <OS> in a format that can be read back by Read.)#"  , py::arg("OS"),  py::arg("theRange")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Locations",
             (const BinTools_LocationSet & (BinTools_ShapeSet::*)() const) static_cast<const BinTools_LocationSet & (BinTools_ShapeSet::*)() const>(&BinTools_ShapeSet::Locations),
             R"#(None)#"
             
         )
       .def("ChangeLocations",
             (BinTools_LocationSet & (BinTools_ShapeSet::*)() ) static_cast<BinTools_LocationSet & (BinTools_ShapeSet::*)() >(&BinTools_ShapeSet::ChangeLocations),
             R"#(None)#"
             
             , py::return_value_policy::reference_internal
         )
;

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


    // nested enums

    static_cast<py::class_<BinTools_ShapeWriter , shared_ptr<BinTools_ShapeWriter>  , BinTools_ShapeSetBase >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Clear",
             (void (BinTools_ShapeWriter::*)() ) static_cast<void (BinTools_ShapeWriter::*)() >(&BinTools_ShapeWriter::Clear),
             R"#(Clears the content of the set.)#" 
          )
        .def("Write",
             (void (BinTools_ShapeWriter::*)( const TopoDS_Shape & ,  std::ostream &  ) ) static_cast<void (BinTools_ShapeWriter::*)( const TopoDS_Shape & ,  std::ostream &  ) >(&BinTools_ShapeWriter::Write),
             R"#(Writes the shape to stream using previously stored shapes and objects to refer them.)#"  , py::arg("theShape"),  py::arg("theStream")
          )
        .def("WriteLocation",
             (void (BinTools_ShapeWriter::*)( BinTools_OStream & ,  const TopLoc_Location &  ) ) static_cast<void (BinTools_ShapeWriter::*)( BinTools_OStream & ,  const TopLoc_Location &  ) >(&BinTools_ShapeWriter::WriteLocation),
             R"#(Writes location to the stream (all the needed sub-information or reference if it is already used).)#"  , py::arg("theStream"),  py::arg("theLocation")
          )
    // 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/BinTools.hxx
// ./opencascade/BinTools_Curve2dSet.hxx
// ./opencascade/BinTools_CurveSet.hxx
// ./opencascade/BinTools_FormatVersion.hxx
// ./opencascade/BinTools_IStream.hxx
// ./opencascade/BinTools_LocationSet.hxx
// ./opencascade/BinTools_LocationSetPtr.hxx
// ./opencascade/BinTools_OStream.hxx
// ./opencascade/BinTools_ObjectType.hxx
// ./opencascade/BinTools_ShapeReader.hxx
// ./opencascade/BinTools_ShapeSet.hxx
// ./opencascade/BinTools_ShapeSetBase.hxx
// ./opencascade/BinTools_ShapeWriter.hxx
// ./opencascade/BinTools_SurfaceSet.hxx

// Additional functions

// operators

// register typdefs


// exceptions

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

};

// user-defined post-inclusion per module

// user-defined post