File: DsgPrs.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 (1005 lines) | stat: -rw-r--r-- 88,333 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

// 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 <Geom_Curve.hxx>
#include <Geom_Surface.hxx>
#include <Prs3d_DimensionAspect.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Circ.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 <gp_Circ.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Elips.hxx>
#include <Geom_OffsetCurve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Plane.hxx>
#include <gp_Circ.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Plane.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_TrimmedCurve.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 <gp_Elips.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <gp_Circ.hxx>
#include <gp_Elips.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 <gp_Circ.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 <gp_Circ.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 <Prs3d_LineAspect.hxx>
#include <Prs3d_ArrowAspect.hxx>
#include <Prs3d_TextAspect.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>

// module includes
#include <DsgPrs.hxx>
#include <DsgPrs_AnglePresentation.hxx>
#include <DsgPrs_ArrowSide.hxx>
#include <DsgPrs_Chamf2dPresentation.hxx>
#include <DsgPrs_ConcentricPresentation.hxx>
#include <DsgPrs_DatumPrs.hxx>
#include <DsgPrs_DiameterPresentation.hxx>
#include <DsgPrs_EllipseRadiusPresentation.hxx>
#include <DsgPrs_EqualDistancePresentation.hxx>
#include <DsgPrs_EqualRadiusPresentation.hxx>
#include <DsgPrs_FilletRadiusPresentation.hxx>
#include <DsgPrs_FixPresentation.hxx>
#include <DsgPrs_IdenticPresentation.hxx>
#include <DsgPrs_LengthPresentation.hxx>
#include <DsgPrs_MidPointPresentation.hxx>
#include <DsgPrs_OffsetPresentation.hxx>
#include <DsgPrs_ParalPresentation.hxx>
#include <DsgPrs_PerpenPresentation.hxx>
#include <DsgPrs_RadiusPresentation.hxx>
#include <DsgPrs_ShadedPlanePresentation.hxx>
#include <DsgPrs_ShapeDirPresentation.hxx>
#include <DsgPrs_SymbPresentation.hxx>
#include <DsgPrs_SymmetricPresentation.hxx>
#include <DsgPrs_TangentPresentation.hxx>
#include <DsgPrs_XYZAxisPresentation.hxx>
#include <DsgPrs_XYZPlanePresentation.hxx>

// template related includes


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

// user-defined inclusion per module

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


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

//Python trampoline classes

// classes

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

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

    // nested enums

    static_cast<py::class_<DsgPrs , shared_ptr<DsgPrs>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("ComputeSymbol_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_DimensionAspect> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const DsgPrs_ArrowSide ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_DimensionAspect> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const DsgPrs_ArrowSide ,  const Standard_Boolean  ) >(&DsgPrs::ComputeSymbol),
                    R"#(draws symbols ((one or two) arrows,(one or two)points at thebeginning and at the end of the dimension)#"  , py::arg("aPresentation"),  py::arg("anAspect"),  py::arg("pt1"),  py::arg("pt2"),  py::arg("dir1"),  py::arg("dir2"),  py::arg("ArrowSide"),  py::arg("drawFromCenter")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def_static("ComputePlanarFacesLengthPresentation_s",
                    (void (*)( const Standard_Real ,  const Standard_Real ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const gp_Pln & ,  gp_Pnt & ,  gp_Pnt & ,  gp_Dir &  ) ) static_cast<void (*)( const Standard_Real ,  const Standard_Real ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const gp_Pln & ,  gp_Pnt & ,  gp_Pnt & ,  gp_Dir &  ) >(&DsgPrs::ComputePlanarFacesLengthPresentation),
                    R"#(None)#"  , py::arg("FirstArrowLength"),  py::arg("SecondArrowLength"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("DirAttach"),  py::arg("OffsetPoint"),  py::arg("PlaneOfFaces"),  py::arg("EndOfArrow1"),  py::arg("EndOfArrow2"),  py::arg("DirOfArrow1")
          )
        .def_static("ComputeRadiusLine_s",
                    (void (*)( const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean ,  gp_Pnt & ,  gp_Pnt &  ) ) static_cast<void (*)( const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean ,  gp_Pnt & ,  gp_Pnt &  ) >(&DsgPrs::ComputeRadiusLine),
                    R"#(None)#"  , py::arg("aCenter"),  py::arg("anEndOfArrow"),  py::arg("aPosition"),  py::arg("drawFromCenter"),  py::arg("aRadLineOrign"),  py::arg("aRadLineEnd")
          )
        .def_static("DistanceFromApex_s",
                    (Standard_Real (*)( const gp_Elips & ,  const gp_Pnt & ,  const Standard_Real  ) ) static_cast<Standard_Real (*)( const gp_Elips & ,  const gp_Pnt & ,  const Standard_Real  ) >(&DsgPrs::DistanceFromApex),
                    R"#(computes length of ellipse arc in parametric units)#"  , py::arg("elips"),  py::arg("Apex"),  py::arg("par")
          )
    // static methods using call by reference i.s.o. return
        .def_static("ComputeCurvilinearFacesLengthPresentation_s",
            [](const Standard_Real FirstArrowLength,const Standard_Real SecondArrowLength,const opencascade::handle<Geom_Surface> & SecondSurf,const gp_Pnt & AttachmentPoint1,const gp_Pnt & AttachmentPoint2,const gp_Dir & DirAttach,gp_Pnt & EndOfArrow2,gp_Dir & DirOfArrow1,Geom_Curve& VCurve,Geom_Curve& UCurve ){
                Standard_Real  FirstU;
                Standard_Real  deltaU;
                Standard_Real  FirstV;
                Standard_Real  deltaV;
                opencascade::handle<Geom_Curve>  VCurve_ptr; VCurve_ptr = &VCurve;
                opencascade::handle<Geom_Curve>  UCurve_ptr; UCurve_ptr = &UCurve;

                DsgPrs::ComputeCurvilinearFacesLengthPresentation(FirstArrowLength,SecondArrowLength,SecondSurf,AttachmentPoint1,AttachmentPoint2,DirAttach,EndOfArrow2,DirOfArrow1,VCurve_ptr,UCurve_ptr,FirstU,deltaU,FirstV,deltaV);
                if ( VCurve_ptr.get() != &VCurve ) copy_if_copy_constructible(VCurve, *VCurve_ptr);
                if ( UCurve_ptr.get() != &UCurve ) copy_if_copy_constructible(UCurve, *UCurve_ptr);

return std::make_tuple(FirstU,deltaU,FirstV,deltaV); },
            R"#(None)#"  , py::arg("FirstArrowLength"),  py::arg("SecondArrowLength"),  py::arg("SecondSurf"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("DirAttach"),  py::arg("EndOfArrow2"),  py::arg("DirOfArrow1"),  py::arg("VCurve"),  py::arg("UCurve")
          )
        .def_static("ComputeFacesAnglePresentation_s",
            [](const Standard_Real ArrowLength,const Standard_Real Value,const gp_Pnt & CenterPoint,const gp_Pnt & AttachmentPoint1,const gp_Pnt & AttachmentPoint2,const gp_Dir & dir1,const gp_Dir & dir2,const gp_Dir & axisdir,const Standard_Boolean isPlane,const gp_Ax1 & AxisOfSurf,const gp_Pnt & OffsetPoint,gp_Circ & AngleCirc,gp_Pnt & EndOfArrow1,gp_Pnt & EndOfArrow2,gp_Dir & DirOfArrow1,gp_Dir & DirOfArrow2,gp_Pnt & ProjAttachPoint2,gp_Circ & AttachCirc ){
                Standard_Real  FirstParAngleCirc;
                Standard_Real  LastParAngleCirc;
                Standard_Real  FirstParAttachCirc;
                Standard_Real  LastParAttachCirc;

                DsgPrs::ComputeFacesAnglePresentation(ArrowLength,Value,CenterPoint,AttachmentPoint1,AttachmentPoint2,dir1,dir2,axisdir,isPlane,AxisOfSurf,OffsetPoint,AngleCirc,FirstParAngleCirc,LastParAngleCirc,EndOfArrow1,EndOfArrow2,DirOfArrow1,DirOfArrow2,ProjAttachPoint2,AttachCirc,FirstParAttachCirc,LastParAttachCirc);
                
return std::make_tuple(FirstParAngleCirc,LastParAngleCirc,FirstParAttachCirc,LastParAttachCirc); },
            R"#(None)#"  , py::arg("ArrowLength"),  py::arg("Value"),  py::arg("CenterPoint"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("dir1"),  py::arg("dir2"),  py::arg("axisdir"),  py::arg("isPlane"),  py::arg("AxisOfSurf"),  py::arg("OffsetPoint"),  py::arg("AngleCirc"),  py::arg("EndOfArrow1"),  py::arg("EndOfArrow2"),  py::arg("DirOfArrow1"),  py::arg("DirOfArrow2"),  py::arg("ProjAttachPoint2"),  py::arg("AttachCirc")
          )
        .def_static("ComputeFilletRadiusPresentation_s",
            [](const Standard_Real ArrowLength,const Standard_Real Value,const gp_Pnt & Position,const gp_Dir & NormalDir,const gp_Pnt & FirstPoint,const gp_Pnt & SecondPoint,const gp_Pnt & Center,const gp_Pnt & BasePnt,const Standard_Boolean drawRevers,gp_Circ & FilletCirc,gp_Pnt & EndOfArrow,gp_Dir & DirOfArrow,gp_Pnt & DrawPosition ){
                Standard_Boolean  SpecCase;
                Standard_Real  FirstParCirc;
                Standard_Real  LastParCirc;

                DsgPrs::ComputeFilletRadiusPresentation(ArrowLength,Value,Position,NormalDir,FirstPoint,SecondPoint,Center,BasePnt,drawRevers,SpecCase,FilletCirc,FirstParCirc,LastParCirc,EndOfArrow,DirOfArrow,DrawPosition);
                
return std::make_tuple(SpecCase,FirstParCirc,LastParCirc); },
            R"#(computes Geometry for fillet radius presentation; special case flag SpecCase equal Standard_True if radius of fillet circle = 0 or if anngle between Vec1(Center, FirstPoint) and Vec2(Center,SecondPoint) equal 0 or PI)#"  , py::arg("ArrowLength"),  py::arg("Value"),  py::arg("Position"),  py::arg("NormalDir"),  py::arg("FirstPoint"),  py::arg("SecondPoint"),  py::arg("Center"),  py::arg("BasePnt"),  py::arg("drawRevers"),  py::arg("FilletCirc"),  py::arg("EndOfArrow"),  py::arg("DirOfArrow"),  py::arg("DrawPosition")
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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

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

    // nested enums

    static_cast<py::class_<DsgPrs_AnglePresentation , shared_ptr<DsgPrs_AnglePresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Circ & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Circ & ,  const gp_Circ & ,  const Standard_Real  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Circ & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Circ & ,  const gp_Circ & ,  const Standard_Real  ) >(&DsgPrs_AnglePresentation::Add),
                    R"#(Draws the presenation of the full angle of a cone. VminCircle - a circle at V parameter = Vmin VmaxCircle - a circle at V parameter = Vmax aCircle - a circle at V parameter from projection of aPosition to axis of the cone)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aVal"),  py::arg("aText"),  py::arg("aCircle"),  py::arg("aPosition"),  py::arg("Apex"),  py::arg("VminCircle"),  py::arg("VmaxCircle"),  py::arg("aArrowSize")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_AnglePresentation::Add),
                    R"#(Draws the representation of the angle defined by dir1 and dir2, centered on CenterPoint, using the offset point OffsetPoint. Lines are drawn to points AttachmentPoint1 and AttachmentPoint2)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("CenterPoint"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("dir1"),  py::arg("dir2"),  py::arg("OffsetPoint")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_AnglePresentation::Add),
                    R"#(Same as above, but <thevalstring> contains conversion in Session units....)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("thevalstring"),  py::arg("CenterPoint"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("dir1"),  py::arg("dir2"),  py::arg("OffsetPoint")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_AnglePresentation::Add),
                    R"#(Same as above, may add one or two Arrows according to <ArrowSide> value)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("thevalstring"),  py::arg("CenterPoint"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("dir1"),  py::arg("dir2"),  py::arg("OffsetPoint"),  py::arg("ArrowSide")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_AnglePresentation::Add),
                    R"#(Same as above, but axisdir contains the axis direction useful for Revol that can be opened with 180 degrees)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("thevalstring"),  py::arg("CenterPoint"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("dir1"),  py::arg("dir2"),  py::arg("axisdir"),  py::arg("OffsetPoint")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Dir & ,  const Standard_Boolean ,  const gp_Ax1 & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Dir & ,  const Standard_Boolean ,  const gp_Ax1 & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_AnglePresentation::Add),
                    R"#(Same as above,may add one or two Arrows according to <ArrowSide> value)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("thevalstring"),  py::arg("CenterPoint"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("dir1"),  py::arg("dir2"),  py::arg("axisdir"),  py::arg("isPlane"),  py::arg("AxisOfSurf"),  py::arg("OffsetPoint"),  py::arg("ArrowSide")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Ax1 & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Ax1 & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_AnglePresentation::Add),
                    R"#(simple representation of a poor lonesome angle dimension Draw a line from <theCenter> to <AttachmentPoint1>, then operates a rotation around the perpmay add one or two Arrows according to <ArrowSide> value. The attributes (color,arrowsize,...) are driven by the Drawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("theCenter"),  py::arg("AttachmentPoint1"),  py::arg("theAxe"),  py::arg("ArrowSide")
          )
    // 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 DsgPrs_Chamf2dPresentation from ./opencascade/DsgPrs_Chamf2dPresentation.hxx
    klass = m.attr("DsgPrs_Chamf2dPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_Chamf2dPresentation , shared_ptr<DsgPrs_Chamf2dPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const TCollection_ExtendedString &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const TCollection_ExtendedString &  ) >(&DsgPrs_Chamf2dPresentation::Add),
                    R"#(Defines the display of elements showing 2D chamfers on shapes. These include the text aText, the point of attachment, aPntAttach and the end point aPntEnd. These arguments are added to the presentation object aPresentation. Their display attributes are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aPntAttach"),  py::arg("aPntEnd"),  py::arg("aText")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const TCollection_ExtendedString & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const TCollection_ExtendedString & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_Chamf2dPresentation::Add),
                    R"#(Defines the display of texts, symbols and icons used to present 2D chamfers. These include the text aText, the point of attachment, aPntAttach and the end point aPntEnd. These arguments are added to the presentation object aPresentation. Their display attributes are defined by the attribute manager aDrawer. The arrow at the point of attachment has a display defined by a value of the enumeration DsgPrs_Arrowside.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aPntAttach"),  py::arg("aPntEnd"),  py::arg("aText"),  py::arg("ArrowSide")
          )
    // 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 DsgPrs_ConcentricPresentation from ./opencascade/DsgPrs_ConcentricPresentation.hxx
    klass = m.attr("DsgPrs_ConcentricPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_ConcentricPresentation , shared_ptr<DsgPrs_ConcentricPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const Standard_Real ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const Standard_Real ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_ConcentricPresentation::Add),
                    R"#(Defines the display of elements showing relations of concentricity between shapes. These include the center aCenter, the radius aRadius, the direction aNorm and the point aPoint. These arguments are added to the presentation object aPresentation. Their display attributes are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aCenter"),  py::arg("aRadius"),  py::arg("aNorm"),  py::arg("aPoint")
          )
    // 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 DsgPrs_DatumPrs from ./opencascade/DsgPrs_DatumPrs.hxx
    klass = m.attr("DsgPrs_DatumPrs");

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

    // nested enums

    static_cast<py::class_<DsgPrs_DatumPrs , shared_ptr<DsgPrs_DatumPrs>  , Prs3d_Root >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const gp_Ax2 & ,  const opencascade::handle<Prs3d_Drawer> &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const gp_Ax2 & ,  const opencascade::handle<Prs3d_Drawer> &  ) >(&DsgPrs_DatumPrs::Add),
                    R"#(Draw XYZ axes at specified location with attributes defined by the attribute manager theDrawer: - Prs3d_DatumAspect defines arrow, line and length trihedron axis parameters, - Prs3d_TextAspect defines displayed text. The thihedron origin and axis directions are defined by theDatum coordinate system. DsgPrs_XYZAxisPresentation framework is used to create graphical primitives for each axis. Axes are marked with "X", "Y", "Z" text.)#"  , py::arg("thePresentation"),  py::arg("theDatum"),  py::arg("theDrawer")
          )
    // 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 DsgPrs_DiameterPresentation from ./opencascade/DsgPrs_DiameterPresentation.hxx
    klass = m.attr("DsgPrs_DiameterPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_DiameterPresentation , shared_ptr<DsgPrs_DiameterPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Circ & ,  const DsgPrs_ArrowSide ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Circ & ,  const DsgPrs_ArrowSide ,  const Standard_Boolean  ) >(&DsgPrs_DiameterPresentation::Add),
                    R"#(Draws the diameter of the circle aCircle displayed in the presentation aPresentation and with attributes defined by the attribute manager aDrawer. The point AttachmentPoint defines the point of contact between the circle and the diameter presentation. The value of the enumeration ArrowSide controls whether arrows will be displayed at either or both ends of the length. The text aText labels the diameter.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint"),  py::arg("aCircle"),  py::arg("ArrowSide"),  py::arg("IsDiamSymbol")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Circ & ,  const Standard_Real ,  const Standard_Real ,  const DsgPrs_ArrowSide ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Circ & ,  const Standard_Real ,  const Standard_Real ,  const DsgPrs_ArrowSide ,  const Standard_Boolean  ) >(&DsgPrs_DiameterPresentation::Add),
                    R"#(Draws the diameter of the arc anArc displayed in the presentation aPresentation and with attributes defined by the attribute manager aDrawer. The point AttachmentPoint defines the point of contact between the arc and the diameter presentation. The value of the enumeration ArrowSide controls whether arrows will be displayed at either or both ends of the length. The parameters uFirst and uLast define the first and last points of the arc. The text aText labels the diameter.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint"),  py::arg("aCircle"),  py::arg("uFirst"),  py::arg("uLast"),  py::arg("ArrowSide"),  py::arg("IsDiamSymbol")
          )
    // 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 DsgPrs_EllipseRadiusPresentation from ./opencascade/DsgPrs_EllipseRadiusPresentation.hxx
    klass = m.attr("DsgPrs_EllipseRadiusPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_EllipseRadiusPresentation , shared_ptr<DsgPrs_EllipseRadiusPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_EllipseRadiusPresentation::Add),
                    R"#(draws a Radius (Major or Minor) representation for whole ellipse case)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("aText"),  py::arg("AttachmentPoint"),  py::arg("anEndOfArrow"),  py::arg("aCenter"),  py::arg("IsMaxRadius"),  py::arg("ArrowSide")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Elips & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const gp_Elips & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_EllipseRadiusPresentation::Add),
                    R"#(draws a Radius (Major or Minor) representation for arc of an ellipse case)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("aText"),  py::arg("anEllipse"),  py::arg("AttachmentPoint"),  py::arg("anEndOfArrow"),  py::arg("aCenter"),  py::arg("uFirst"),  py::arg("IsInDomain"),  py::arg("IsMaxRadius"),  py::arg("ArrowSide")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const opencascade::handle<Geom_OffsetCurve> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const Standard_Real ,  const TCollection_ExtendedString & ,  const opencascade::handle<Geom_OffsetCurve> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_EllipseRadiusPresentation::Add),
                    R"#(draws a Radius (Major or Minor) representation for arc of an offset curve from ellipse)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theval"),  py::arg("aText"),  py::arg("aCurve"),  py::arg("AttachmentPoint"),  py::arg("anEndOfArrow"),  py::arg("aCenter"),  py::arg("uFirst"),  py::arg("IsInDomain"),  py::arg("IsMaxRadius"),  py::arg("ArrowSide")
          )
    // 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 DsgPrs_EqualDistancePresentation from ./opencascade/DsgPrs_EqualDistancePresentation.hxx
    klass = m.attr("DsgPrs_EqualDistancePresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_EqualDistancePresentation , shared_ptr<DsgPrs_EqualDistancePresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const opencascade::handle<Geom_Plane> &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const opencascade::handle<Geom_Plane> &  ) >(&DsgPrs_EqualDistancePresentation::Add),
                    R"#(Adds the points Point1, Point2, Point3 Point4, and the plane Plane to the presentation object aPresentation. The display attributes of these elements is defined by the attribute manager aDrawer. The distance is the length of a projection from the shape to the plane. These distances are used to compare two shapes by this vector alone.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("Point1"),  py::arg("Point2"),  py::arg("Point3"),  py::arg("Point4"),  py::arg("Plane")
          )
        .def_static("AddInterval_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide ,  gp_Pnt & ,  gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide ,  gp_Pnt & ,  gp_Pnt &  ) >(&DsgPrs_EqualDistancePresentation::AddInterval),
                    R"#(is used for presentation of interval between two lines or two points or between a line and a point.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aPoint1"),  py::arg("aPoint2"),  py::arg("aDir"),  py::arg("aPosition"),  py::arg("anArrowSide"),  py::arg("anExtremePnt1"),  py::arg("anExtremePnt2")
          )
        .def_static("AddIntervalBetweenTwoArcs_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Circ & ,  const gp_Circ & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Circ & ,  const gp_Circ & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_EqualDistancePresentation::AddIntervalBetweenTwoArcs),
                    R"#(is used for presentation of interval between two arcs. One of arcs can have a zero radius.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aCircle1"),  py::arg("aCircle2"),  py::arg("aPoint1"),  py::arg("aPoint2"),  py::arg("aPoint3"),  py::arg("aPoint4"),  py::arg("anArrowSide")
          )
    // 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 DsgPrs_EqualRadiusPresentation from ./opencascade/DsgPrs_EqualRadiusPresentation.hxx
    klass = m.attr("DsgPrs_EqualRadiusPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_EqualRadiusPresentation , shared_ptr<DsgPrs_EqualRadiusPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const opencascade::handle<Geom_Plane> &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const opencascade::handle<Geom_Plane> &  ) >(&DsgPrs_EqualRadiusPresentation::Add),
                    R"#(Adds the points FirstCenter, SecondCenter, FirstPoint, SecondPoint, and the plane Plane to the presentation object aPresentation. The display attributes of these elements is defined by the attribute manager aDrawer. FirstCenter and SecondCenter are the centers of the first and second shapes respectively, and FirstPoint and SecondPoint are the attachment points of the radii to arcs.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("FirstCenter"),  py::arg("SecondCenter"),  py::arg("FirstPoint"),  py::arg("SecondPoint"),  py::arg("Plane")
          )
    // 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 DsgPrs_FilletRadiusPresentation from ./opencascade/DsgPrs_FilletRadiusPresentation.hxx
    klass = m.attr("DsgPrs_FilletRadiusPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_FilletRadiusPresentation , shared_ptr<DsgPrs_FilletRadiusPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
        .def_static("Add_s",
            [](const opencascade::handle<Prs3d_Presentation> & aPresentation,const opencascade::handle<Prs3d_Drawer> & aDrawer,const Standard_Real thevalue,const TCollection_ExtendedString & aText,const gp_Pnt & aPosition,const gp_Dir & aNormalDir,const gp_Pnt & aBasePnt,const gp_Pnt & aFirstPoint,const gp_Pnt & aSecondPoint,const gp_Pnt & aCenter,const DsgPrs_ArrowSide ArrowPrs,const Standard_Boolean drawRevers,gp_Pnt & DrawPosition,gp_Pnt & EndOfArrow,Geom_TrimmedCurve& TrimCurve ){
                Standard_Boolean  HasCircle;
                opencascade::handle<Geom_TrimmedCurve>  TrimCurve_ptr; TrimCurve_ptr = &TrimCurve;

                DsgPrs_FilletRadiusPresentation::Add(aPresentation,aDrawer,thevalue,aText,aPosition,aNormalDir,aBasePnt,aFirstPoint,aSecondPoint,aCenter,ArrowPrs,drawRevers,DrawPosition,EndOfArrow,TrimCurve_ptr,HasCircle);
                if ( TrimCurve_ptr.get() != &TrimCurve ) copy_if_copy_constructible(TrimCurve, *TrimCurve_ptr);

return std::make_tuple(HasCircle); },
            R"#(Adds a display of the radius of a fillet to the presentation aPresentation. The display ttributes defined by the attribute manager aDrawer. the value specifies the length of the radius.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("thevalue"),  py::arg("aText"),  py::arg("aPosition"),  py::arg("aNormalDir"),  py::arg("aBasePnt"),  py::arg("aFirstPoint"),  py::arg("aSecondPoint"),  py::arg("aCenter"),  py::arg("ArrowPrs"),  py::arg("drawRevers"),  py::arg("DrawPosition"),  py::arg("EndOfArrow"),  py::arg("TrimCurve")
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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

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

    // nested enums

    static_cast<py::class_<DsgPrs_FixPresentation , shared_ptr<DsgPrs_FixPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const Standard_Real  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const Standard_Real  ) >(&DsgPrs_FixPresentation::Add),
                    R"#(draws the presentation of fixed objects by drawing the 'fix' symbol at position <aPntEnd>. A binding segment is drawn between <aPntAttach> ( which belongs to the fixed object) and <aPntEnd>. aSymbSize is the size of the 'fix'symbol)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aPntAttach"),  py::arg("aPntEnd"),  py::arg("aNormPln"),  py::arg("aSymbSize")
          )
    // 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 DsgPrs_IdenticPresentation from ./opencascade/DsgPrs_IdenticPresentation.hxx
    klass = m.attr("DsgPrs_IdenticPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_IdenticPresentation , shared_ptr<DsgPrs_IdenticPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_IdenticPresentation::Add),
                    R"#(draws a line between <aPntAttach> and <aPntOffset>.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("aPntAttach"),  py::arg("aPntOffset")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_IdenticPresentation::Add),
                    R"#(draws the 'identic' presentation by drawing a line between <aFAttach> and <aSAttach> , and a linkimg segment between <aPntOffset> and its projection on the precedent line.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("aFAttach"),  py::arg("aSAttach"),  py::arg("aPntOffset")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_IdenticPresentation::Add),
                    R"#(draws the 'identic' presentation in the case of circles : draws an arc of circle between <aFAttach> and <aSAttach> of center <aCenter> and of radius dist(aCenter, aFAttach), and draws a segment between <aPntOffset> and its projection on the arc.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("aAx2"),  py::arg("aCenter"),  py::arg("aFAttach"),  py::arg("aSAttach"),  py::arg("aPntOffset")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_IdenticPresentation::Add),
                    R"#(draws the 'identic' presentation in the case of circles : draws an arc of circle between <aFAttach> and <aSAttach> of center <aCenter> and of radius dist(aCenter, aFAttach), and draws a segment between <aPntOffset> and <aPntOnCirc>)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("aAx2"),  py::arg("aCenter"),  py::arg("aFAttach"),  py::arg("aSAttach"),  py::arg("aPntOffset"),  py::arg("aPntOnCirc")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Elips & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Elips & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_IdenticPresentation::Add),
                    R"#(draws the 'identic' presentation in the case of ellipses: draws an arc of the anEllipse between <aFAttach> and <aSAttach> and draws a segment between <aPntOffset> and <aPntOnElli>)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("anEllipse"),  py::arg("aFAttach"),  py::arg("aSAttach"),  py::arg("aPntOffset"),  py::arg("aPntOnElli")
          )
    // 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 DsgPrs_LengthPresentation from ./opencascade/DsgPrs_LengthPresentation.hxx
    klass = m.attr("DsgPrs_LengthPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_LengthPresentation , shared_ptr<DsgPrs_LengthPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_LengthPresentation::Add),
                    R"#(Draws a line segment representing a length in the display aPresentation. This segment joins the points AttachmentPoint1 and AttachmentPoint2, along the direction aDirection. The text aText will be displayed at the offset point OffsetPoint. The line and text attributes are specified by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection"),  py::arg("OffsetPoint")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_LengthPresentation::Add),
                    R"#(Draws a line segment representing a length in the display aPresentation. This segment joins the points AttachmentPoint1 and AttachmentPoint2, along the direction aDirection. The text aText will be displayed at the offset point OffsetPoint. The value of the enumeration ArrowSide controls whether arrows will be displayed at either or both ends of the length. The line, text and arrow attributes are specified by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection"),  py::arg("OffsetPoint"),  py::arg("ArrowSide")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pln & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pln & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_LengthPresentation::Add),
                    R"#(Draws a line segment representing a length in the display aPresentation. This segment joins the points AttachmentPoint1 and AttachmentPoint2, along the direction aDirection. The text aText will be displayed at the offset point OffsetPoint. The value of the enumeration ArrowSide controls whether arrows will be displayed at either or both ends of the length. The plane PlaneOfFaces is used if length is null. The line, text and arrow attributes are specified by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("PlaneOfFaces"),  py::arg("aDirection"),  py::arg("OffsetPoint"),  py::arg("ArrowSide")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const opencascade::handle<Geom_Surface> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const opencascade::handle<Geom_Surface> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_LengthPresentation::Add),
                    R"#(Draws a line segment representing a length in the display aPresentation. This segment joins the points AttachmentPoint1 and AttachmentPoint2, along the direction aDirection. AttachmentPoint2 lies on the curvilinear faces SecondSurf. The text aText will be displayed at the offset point OffsetPoint. The value of the enumeration ArrowSide controls whether arrows will be displayed at either or both ends of the length. The line, text and arrow attributes are specified by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("SecondSurf"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection"),  py::arg("OffsetPoint"),  py::arg("ArrowSide")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_LengthPresentation::Add),
                    R"#(Draws a line segment representing a length in the display aPresentation. This segment joins the points AttachmentPoint1 and AttachmentPoint2, along the direction aDirection. The value of the enumeration ArrowSide controls whether arrows will be displayed at either or both ends of the length. The line and arrow attributes are specified by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("Pt1"),  py::arg("Pt2"),  py::arg("ArrowSide")
          )
    // 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 DsgPrs_MidPointPresentation from ./opencascade/DsgPrs_MidPointPresentation.hxx
    klass = m.attr("DsgPrs_MidPointPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_MidPointPresentation , shared_ptr<DsgPrs_MidPointPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) >(&DsgPrs_MidPointPresentation::Add),
                    R"#(draws the representation of a MidPoint between two vertices.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theAxe"),  py::arg("MidPoint"),  py::arg("Position"),  py::arg("AttachPoint"),  py::arg("first")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Ax2 & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) >(&DsgPrs_MidPointPresentation::Add),
                    R"#(draws the representation of a MidPoint between two lines or linear segments.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("theAxe"),  py::arg("MidPoint"),  py::arg("Position"),  py::arg("AttachPoint"),  py::arg("Point1"),  py::arg("Point2"),  py::arg("first")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Circ & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Circ & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) >(&DsgPrs_MidPointPresentation::Add),
                    R"#(draws the representation of a MidPoint between two entire circles or two circular arcs.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aCircle"),  py::arg("MidPoint"),  py::arg("Position"),  py::arg("AttachPoint"),  py::arg("Point1"),  py::arg("Point2"),  py::arg("first")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Elips & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Elips & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean  ) >(&DsgPrs_MidPointPresentation::Add),
                    R"#(draws the representation of a MidPoint between two entire ellipses or two elliptic arcs.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("anElips"),  py::arg("MidPoint"),  py::arg("Position"),  py::arg("AttachPoint"),  py::arg("Point1"),  py::arg("Point2"),  py::arg("first")
          )
    // 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 DsgPrs_OffsetPresentation from ./opencascade/DsgPrs_OffsetPresentation.hxx
    klass = m.attr("DsgPrs_OffsetPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_OffsetPresentation , shared_ptr<DsgPrs_OffsetPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_OffsetPresentation::Add),
                    R"#(Defines the display of elements showing offset shapes. These include the two points of attachment AttachmentPoint1 and AttachmentPoint1, the two directions aDirection and aDirection2, and the offset point OffsetPoint. These arguments are added to the presentation object aPresentation. Their display attributes are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection"),  py::arg("aDirection2"),  py::arg("OffsetPoint")
          )
        .def_static("AddAxes_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_OffsetPresentation::AddAxes),
                    R"#(draws the representation of axes alignment Constraint between the point AttachmentPoint1 and the point AttachmentPoint2, along direction aDirection, using the offset point OffsetPoint.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection"),  py::arg("aDirection2"),  py::arg("OffsetPoint")
          )
    // 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 DsgPrs_ParalPresentation from ./opencascade/DsgPrs_ParalPresentation.hxx
    klass = m.attr("DsgPrs_ParalPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_ParalPresentation , shared_ptr<DsgPrs_ParalPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt &  ) >(&DsgPrs_ParalPresentation::Add),
                    R"#(Defines the display of elements showing relations of parallelism between shapes. These include the two points of attachment AttachmentPoint1 and AttachmentPoint1, the direction aDirection, and the offset point OffsetPoint. These arguments are added to the presentation object aPresentation. Their display attributes are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection"),  py::arg("OffsetPoint")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide  ) >(&DsgPrs_ParalPresentation::Add),
                    R"#(Defines the display of elements showing relations of parallelism between shapes. These include the two points of attachment AttachmentPoint1 and AttachmentPoint1, the direction aDirection, the offset point OffsetPoint and the text aText. These arguments are added to the presentation object aPresentation. Their display attributes are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection"),  py::arg("OffsetPoint"),  py::arg("ArrowSide")
          )
    // 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 DsgPrs_PerpenPresentation from ./opencascade/DsgPrs_PerpenPresentation.hxx
    klass = m.attr("DsgPrs_PerpenPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_PerpenPresentation , shared_ptr<DsgPrs_PerpenPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&DsgPrs_PerpenPresentation::Add),
                    R"#(Defines the display of elements showing perpendicular constraints between shapes. These include the two axis points pAx1 and pAx2, the two points pnt1 and pnt2, the offset point OffsetPoint and the two Booleans intOut1} and intOut2{. These arguments are added to the presentation object aPresentation. Their display attributes are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("pAx1"),  py::arg("pAx2"),  py::arg("pnt1"),  py::arg("pnt2"),  py::arg("OffsetPoint"),  py::arg("intOut1"),  py::arg("intOut2")
          )
    // 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 DsgPrs_RadiusPresentation from ./opencascade/DsgPrs_RadiusPresentation.hxx
    klass = m.attr("DsgPrs_RadiusPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_RadiusPresentation , shared_ptr<DsgPrs_RadiusPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Circ & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Circ & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&DsgPrs_RadiusPresentation::Add),
                    R"#(Adds the point AttachmentPoint, the circle aCircle, the text aText, and the parameters firstparam and lastparam to the presentation object aPresentation. The display attributes of these elements is defined by the attribute manager aDrawer. If the Boolean drawFromCenter is false, the arrowhead will point towards the center of aCircle. If the Boolean reverseArrow is true, the arrowhead will point away from the attachment point.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint"),  py::arg("aCircle"),  py::arg("firstparam"),  py::arg("lastparam"),  py::arg("drawFromCenter")=static_cast<const Standard_Boolean>(Standard_True),  py::arg("reverseArrow")=static_cast<const Standard_Boolean>(Standard_False)
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide ,  const Standard_Boolean ,  const Standard_Boolean  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt & ,  const DsgPrs_ArrowSide ,  const Standard_Boolean ,  const Standard_Boolean  ) >(&DsgPrs_RadiusPresentation::Add),
                    R"#(Adds the circle aCircle, the text aText, the points AttachmentPoint, Center and EndOfArrow to the presentation object aPresentation. The display attributes of these elements is defined by the attribute manager aDrawer. The value of the enumeration Arrowside determines the type of arrow displayed: whether there will be arrowheads at both ends or only one, for example. If the Boolean drawFromCenter is false, the arrowhead will point towards the center of aCircle. If the Boolean reverseArrow is true, the arrowhead will point away from the attachment point.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("AttachmentPoint"),  py::arg("Center"),  py::arg("EndOfArrow"),  py::arg("ArrowSide"),  py::arg("drawFromCenter")=static_cast<const Standard_Boolean>(Standard_True),  py::arg("reverseArrow")=static_cast<const Standard_Boolean>(Standard_False)
          )
    // 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 DsgPrs_ShadedPlanePresentation from ./opencascade/DsgPrs_ShadedPlanePresentation.hxx
    klass = m.attr("DsgPrs_ShadedPlanePresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_ShadedPlanePresentation , shared_ptr<DsgPrs_ShadedPlanePresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_ShadedPlanePresentation::Add),
                    R"#(Adds the points aPt1, aPt2 and aPt3 to the presentation object, aPresentation. The display attributes of the shaded plane are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aPt1"),  py::arg("aPt2"),  py::arg("aPt3")
          )
    // 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 DsgPrs_ShapeDirPresentation from ./opencascade/DsgPrs_ShapeDirPresentation.hxx
    klass = m.attr("DsgPrs_ShapeDirPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_ShapeDirPresentation , shared_ptr<DsgPrs_ShapeDirPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TopoDS_Shape & ,  const Standard_Integer  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TopoDS_Shape & ,  const Standard_Integer  ) >(&DsgPrs_ShapeDirPresentation::Add),
                    R"#(Adds the shape shape and the mode mode to the presentation object prs. The display attributes of the normal are defined by the attribute manager aDrawer. mode determines whether the first or the last point of the normal is given to the presentation object. If the first point: 0; if the last point, 1.)#"  , py::arg("prs"),  py::arg("aDrawer"),  py::arg("shape"),  py::arg("mode")
          )
    // 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 DsgPrs_SymbPresentation from ./opencascade/DsgPrs_SymbPresentation.hxx
    klass = m.attr("DsgPrs_SymbPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_SymbPresentation , shared_ptr<DsgPrs_SymbPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const TCollection_ExtendedString & ,  const gp_Pnt &  ) >(&DsgPrs_SymbPresentation::Add),
                    R"#(Adds the text aText and the point OffsetPoint to the presentation object aPresentation. The display attributes of the shaded plane are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aText"),  py::arg("OffsetPoint")
          )
    // 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 DsgPrs_SymmetricPresentation from ./opencascade/DsgPrs_SymmetricPresentation.hxx
    klass = m.attr("DsgPrs_SymmetricPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_SymmetricPresentation , shared_ptr<DsgPrs_SymmetricPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Lin & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Dir & ,  const gp_Lin & ,  const gp_Pnt &  ) >(&DsgPrs_SymmetricPresentation::Add),
                    R"#(Adds the points OffsetPoint, AttachmentPoint1, AttachmentPoint2, the direction aDirection1 and the axis anAxis to the presentation object aPresentation. The display attributes of the symmetry are defined by the attribute manager aDrawer. This syntax is used for display of symmetries between two segments.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aDirection1"),  py::arg("aAxis"),  py::arg("OffsetPoint")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Circ & ,  const gp_Lin & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Circ & ,  const gp_Lin & ,  const gp_Pnt &  ) >(&DsgPrs_SymmetricPresentation::Add),
                    R"#(Adds the points OffsetPoint, AttachmentPoint1, AttachmentPoint2, the direction aDirection1 the circle aCircle1 and the axis anAxis to the presentation object aPresentation. The display attributes of the symmetry are defined by the attribute manager aDrawer. This syntax is used for display of symmetries between two arcs.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aCircle1"),  py::arg("aAxis"),  py::arg("OffsetPoint")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Lin & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Lin & ,  const gp_Pnt &  ) >(&DsgPrs_SymmetricPresentation::Add),
                    R"#(Adds the points OffsetPoint, AttachmentPoint1, AttachmentPoint2 and the axis anAxis to the presentation object aPresentation. The display attributes of the symmetry are defined by the attribute manager aDrawer. This syntax is used for display of symmetries between two vertices.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("AttachmentPoint1"),  py::arg("AttachmentPoint2"),  py::arg("aAxis"),  py::arg("OffsetPoint")
          )
    // 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 DsgPrs_TangentPresentation from ./opencascade/DsgPrs_TangentPresentation.hxx
    klass = m.attr("DsgPrs_TangentPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_TangentPresentation , shared_ptr<DsgPrs_TangentPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Dir & ,  const Standard_Real  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Dir & ,  const Standard_Real  ) >(&DsgPrs_TangentPresentation::Add),
                    R"#(Adds the point OffsetPoint, the direction aDirection and the length aLength to the presentation object aPresentation. The display attributes of the tangent are defined by the attribute manager aDrawer.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("OffsetPoint"),  py::arg("aDirection"),  py::arg("aLength")
          )
    // 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 DsgPrs_XYZAxisPresentation from ./opencascade/DsgPrs_XYZAxisPresentation.hxx
    klass = m.attr("DsgPrs_XYZAxisPresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_XYZAxisPresentation , shared_ptr<DsgPrs_XYZAxisPresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_LineAspect> & ,  const gp_Dir & ,  const Standard_Real ,  const Standard_CString ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_LineAspect> & ,  const gp_Dir & ,  const Standard_Real ,  const Standard_CString ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_XYZAxisPresentation::Add),
                    R"#(Draws each axis of a trihedron displayed in the presentation aPresentation and with lines shown by the values of aLineAspect. Each axis is defined by: - the first and last points aPfirst and aPlast - the direction aDir and - the value aVal which provides a value for length. The value for length is provided so that the trihedron can vary in length relative to the scale of shape display. Each axis will be identified as X, Y, or Z by the text aText.)#"  , py::arg("aPresentation"),  py::arg("anLineAspect"),  py::arg("aDir"),  py::arg("aVal"),  py::arg("aText"),  py::arg("aPfirst"),  py::arg("aPlast")
          )
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_LineAspect> & ,  const opencascade::handle<Prs3d_ArrowAspect> & ,  const opencascade::handle<Prs3d_TextAspect> & ,  const gp_Dir & ,  const Standard_Real ,  const Standard_CString ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_LineAspect> & ,  const opencascade::handle<Prs3d_ArrowAspect> & ,  const opencascade::handle<Prs3d_TextAspect> & ,  const gp_Dir & ,  const Standard_Real ,  const Standard_CString ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_XYZAxisPresentation::Add),
                    R"#(draws the presentation X ,Y ,Z axis)#"  , py::arg("aPresentation"),  py::arg("aLineAspect"),  py::arg("anArrowAspect"),  py::arg("aTextAspect"),  py::arg("aDir"),  py::arg("aVal"),  py::arg("aText"),  py::arg("aPfirst"),  py::arg("aPlast")
          )
    // 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 DsgPrs_XYZPlanePresentation from ./opencascade/DsgPrs_XYZPlanePresentation.hxx
    klass = m.attr("DsgPrs_XYZPlanePresentation");

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

    // nested enums

    static_cast<py::class_<DsgPrs_XYZPlanePresentation , shared_ptr<DsgPrs_XYZPlanePresentation>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Add_s",
                    (void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Prs3d_Presentation> & ,  const opencascade::handle<Prs3d_Drawer> & ,  const gp_Pnt & ,  const gp_Pnt & ,  const gp_Pnt &  ) >(&DsgPrs_XYZPlanePresentation::Add),
                    R"#(Draws each plane of a trihedron displayed in the presentation aPresentation and with attributes defined by the attribute manager aDrawer. Each triangular plane is defined by the points aPt1 aPt2 and aPt3.)#"  , py::arg("aPresentation"),  py::arg("aDrawer"),  py::arg("aPt1"),  py::arg("aPt2"),  py::arg("aPt3")
          )
    // 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/DsgPrs.hxx
// ./opencascade/DsgPrs_AnglePresentation.hxx
// ./opencascade/DsgPrs_ArrowSide.hxx
// ./opencascade/DsgPrs_Chamf2dPresentation.hxx
// ./opencascade/DsgPrs_ConcentricPresentation.hxx
// ./opencascade/DsgPrs_DatumPrs.hxx
// ./opencascade/DsgPrs_DiameterPresentation.hxx
// ./opencascade/DsgPrs_EllipseRadiusPresentation.hxx
// ./opencascade/DsgPrs_EqualDistancePresentation.hxx
// ./opencascade/DsgPrs_EqualRadiusPresentation.hxx
// ./opencascade/DsgPrs_FilletRadiusPresentation.hxx
// ./opencascade/DsgPrs_FixPresentation.hxx
// ./opencascade/DsgPrs_IdenticPresentation.hxx
// ./opencascade/DsgPrs_LengthPresentation.hxx
// ./opencascade/DsgPrs_MidPointPresentation.hxx
// ./opencascade/DsgPrs_OffsetPresentation.hxx
// ./opencascade/DsgPrs_ParalPresentation.hxx
// ./opencascade/DsgPrs_PerpenPresentation.hxx
// ./opencascade/DsgPrs_RadiusPresentation.hxx
// ./opencascade/DsgPrs_ShadedPlanePresentation.hxx
// ./opencascade/DsgPrs_ShapeDirPresentation.hxx
// ./opencascade/DsgPrs_SymbPresentation.hxx
// ./opencascade/DsgPrs_SymmetricPresentation.hxx
// ./opencascade/DsgPrs_TangentPresentation.hxx
// ./opencascade/DsgPrs_XYZAxisPresentation.hxx
// ./opencascade/DsgPrs_XYZPlanePresentation.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