File: IntCurveSurface.cpp

package info (click to toggle)
python-ocp 7.8.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 64,720 kB
  • sloc: cpp: 362,337; pascal: 33; python: 23; makefile: 4
file content (1085 lines) | stat: -rw-r--r-- 77,030 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085

// 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 <IntCurveSurface_TheHCurveTool.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <IntCurveSurface_ThePolygonOfHInter.hxx>
#include <IntCurveSurface_ThePolygonToolOfHInter.hxx>
#include <IntCurveSurface_ThePolyhedronOfHInter.hxx>
#include <IntCurveSurface_ThePolyhedronToolOfHInter.hxx>
#include <IntCurveSurface_TheInterferenceOfHInter.hxx>
#include <IntCurveSurface_TheCSFunctionOfHInter.hxx>
#include <IntCurveSurface_TheExactHInter.hxx>
#include <IntCurveSurface_TheQuadCurvExactHInter.hxx>
#include <IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx>
#include <Bnd_BoundSortBox.hxx>
#include <IntAna_IntConicQuad.hxx>
#include <Bnd_Box.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <IntCurveSurface_TheHCurveTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <IntCurveSurface_TheHCurveTool.hxx>
#include <math_FunctionSetRoot.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntCurveSurface_ThePolygonOfHInter.hxx>
#include <IntCurveSurface_ThePolygonToolOfHInter.hxx>
#include <IntCurveSurface_ThePolyhedronOfHInter.hxx>
#include <IntCurveSurface_ThePolyhedronToolOfHInter.hxx>
#include <Bnd_BoundSortBox.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntCurveSurface_TheHCurveTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_HSurfaceTool.hxx>
#include <IntCurveSurface_TheHCurveTool.hxx>
#include <IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IntCurveSurface_TheHCurveTool.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>

// module includes
#include <IntCurveSurface_HInter.hxx>
#include <IntCurveSurface_Intersection.hxx>
#include <IntCurveSurface_IntersectionPoint.hxx>
#include <IntCurveSurface_IntersectionSegment.hxx>
#include <IntCurveSurface_SequenceOfPnt.hxx>
#include <IntCurveSurface_SequenceOfSeg.hxx>
#include <IntCurveSurface_TheCSFunctionOfHInter.hxx>
#include <IntCurveSurface_TheExactHInter.hxx>
#include <IntCurveSurface_TheHCurveTool.hxx>
#include <IntCurveSurface_TheInterferenceOfHInter.hxx>
#include <IntCurveSurface_ThePolygonOfHInter.hxx>
#include <IntCurveSurface_ThePolygonToolOfHInter.hxx>
#include <IntCurveSurface_ThePolyhedronOfHInter.hxx>
#include <IntCurveSurface_ThePolyhedronToolOfHInter.hxx>
#include <IntCurveSurface_TheQuadCurvExactHInter.hxx>
#include <IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx>
#include <IntCurveSurface_TransitionOnCurve.hxx>

// template related includes

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

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


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

// user-defined inclusion per module

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


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

//Python trampoline classes

// classes

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_Intersection , shared_ptr_nodelete<IntCurveSurface_Intersection>  >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("IsDone",
             (Standard_Boolean (IntCurveSurface_Intersection::*)() const) static_cast<Standard_Boolean (IntCurveSurface_Intersection::*)() const>(&IntCurveSurface_Intersection::IsDone),
             R"#(returns the <done> field.)#" 
          )
        .def("NbPoints",
             (Standard_Integer (IntCurveSurface_Intersection::*)() const) static_cast<Standard_Integer (IntCurveSurface_Intersection::*)() const>(&IntCurveSurface_Intersection::NbPoints),
             R"#(returns the number of IntersectionPoint if IsDone returns True. else NotDone is raised.)#" 
          )
        .def("Point",
             (const IntCurveSurface_IntersectionPoint & (IntCurveSurface_Intersection::*)( const Standard_Integer  ) const) static_cast<const IntCurveSurface_IntersectionPoint & (IntCurveSurface_Intersection::*)( const Standard_Integer  ) const>(&IntCurveSurface_Intersection::Point),
             R"#(returns the IntersectionPoint of range <Index> raises NotDone if the computation has failed or if the computation has not been done raises OutOfRange if Index is not in the range <1..NbPoints>)#"  , py::arg("Index")
          )
        .def("NbSegments",
             (Standard_Integer (IntCurveSurface_Intersection::*)() const) static_cast<Standard_Integer (IntCurveSurface_Intersection::*)() const>(&IntCurveSurface_Intersection::NbSegments),
             R"#(returns the number of IntersectionSegment if IsDone returns True. else NotDone is raised.)#" 
          )
        .def("Segment",
             (const IntCurveSurface_IntersectionSegment & (IntCurveSurface_Intersection::*)( const Standard_Integer  ) const) static_cast<const IntCurveSurface_IntersectionSegment & (IntCurveSurface_Intersection::*)( const Standard_Integer  ) const>(&IntCurveSurface_Intersection::Segment),
             R"#(returns the IntersectionSegment of range <Index> raises NotDone if the computation has failed or if the computation has not been done raises OutOfRange if Index is not in the range <1..NbSegment>)#"  , py::arg("Index")
          )
        .def("IsParallel",
             (Standard_Boolean (IntCurveSurface_Intersection::*)() const) static_cast<Standard_Boolean (IntCurveSurface_Intersection::*)() const>(&IntCurveSurface_Intersection::IsParallel),
             R"#(Returns true if curve is parallel or belongs surface This case is recognized only for some pairs of analytical curves and surfaces (plane - line, ...))#" 
          )
        .def("Dump",
             (void (IntCurveSurface_Intersection::*)() const) static_cast<void (IntCurveSurface_Intersection::*)() const>(&IntCurveSurface_Intersection::Dump),
             R"#(Dump all the fields.)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_IntersectionPoint , shared_ptr<IntCurveSurface_IntersectionPoint>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const gp_Pnt &,const Standard_Real,const Standard_Real,const Standard_Real,const IntCurveSurface_TransitionOnCurve >()  , py::arg("P"),  py::arg("USurf"),  py::arg("VSurf"),  py::arg("UCurv"),  py::arg("TrCurv") )
    // custom constructors
    // methods
        .def("SetValues",
             (void (IntCurveSurface_IntersectionPoint::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const IntCurveSurface_TransitionOnCurve  ) ) static_cast<void (IntCurveSurface_IntersectionPoint::*)( const gp_Pnt & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const IntCurveSurface_TransitionOnCurve  ) >(&IntCurveSurface_IntersectionPoint::SetValues),
             R"#(Set the fields of the current IntersectionPoint.)#"  , py::arg("P"),  py::arg("USurf"),  py::arg("VSurf"),  py::arg("UCurv"),  py::arg("TrCurv")
          )
        .def("U",
             (Standard_Real (IntCurveSurface_IntersectionPoint::*)() const) static_cast<Standard_Real (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::U),
             R"#(returns the U parameter on the surface.)#" 
          )
        .def("V",
             (Standard_Real (IntCurveSurface_IntersectionPoint::*)() const) static_cast<Standard_Real (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::V),
             R"#(returns the V parameter on the surface.)#" 
          )
        .def("W",
             (Standard_Real (IntCurveSurface_IntersectionPoint::*)() const) static_cast<Standard_Real (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::W),
             R"#(returns the parameter on the curve.)#" 
          )
        .def("Transition",
             (IntCurveSurface_TransitionOnCurve (IntCurveSurface_IntersectionPoint::*)() const) static_cast<IntCurveSurface_TransitionOnCurve (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::Transition),
             R"#(returns the Transition of the point.)#" 
          )
        .def("Dump",
             (void (IntCurveSurface_IntersectionPoint::*)() const) static_cast<void (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::Dump),
             R"#(Dump all the fields.)#" 
          )
        .def("U",
             (Standard_Real (IntCurveSurface_IntersectionPoint::*)() const) static_cast<Standard_Real (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::U),
             R"#(returns the U parameter on the surface.)#" 
          )
        .def("V",
             (Standard_Real (IntCurveSurface_IntersectionPoint::*)() const) static_cast<Standard_Real (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::V),
             R"#(returns the V parameter on the surface.)#" 
          )
        .def("W",
             (Standard_Real (IntCurveSurface_IntersectionPoint::*)() const) static_cast<Standard_Real (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::W),
             R"#(returns the parameter on the curve.)#" 
          )
        .def("Transition",
             (IntCurveSurface_TransitionOnCurve (IntCurveSurface_IntersectionPoint::*)() const) static_cast<IntCurveSurface_TransitionOnCurve (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::Transition),
             R"#(returns the Transition of the point.)#" 
          )
    // methods using call by reference i.s.o. return
        .def("Values",
             []( IntCurveSurface_IntersectionPoint &self , gp_Pnt & P,IntCurveSurface_TransitionOnCurve & TrCurv ){
                 Standard_Real  USurf;
                Standard_Real  VSurf;
                Standard_Real  UCurv;

                 self.Values(P,USurf,VSurf,UCurv,TrCurv);
                 
                 return std::make_tuple(USurf,VSurf,UCurv); },
             R"#(Get the fields of the current IntersectionPoint.)#"  , py::arg("P"),  py::arg("TrCurv")
          )
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Pnt",
             (const gp_Pnt & (IntCurveSurface_IntersectionPoint::*)() const) static_cast<const gp_Pnt & (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::Pnt),
             R"#(returns the geometric point.)#"
             
         )
       .def("Pnt",
             (const gp_Pnt & (IntCurveSurface_IntersectionPoint::*)() const) static_cast<const gp_Pnt & (IntCurveSurface_IntersectionPoint::*)() const>(&IntCurveSurface_IntersectionPoint::Pnt),
             R"#(returns the geometric point.)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_IntersectionSegment , shared_ptr<IntCurveSurface_IntersectionSegment>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const IntCurveSurface_IntersectionPoint &,const IntCurveSurface_IntersectionPoint & >()  , py::arg("P1"),  py::arg("P2") )
    // custom constructors
    // methods
        .def("SetValues",
             (void (IntCurveSurface_IntersectionSegment::*)( const IntCurveSurface_IntersectionPoint & ,  const IntCurveSurface_IntersectionPoint &  ) ) static_cast<void (IntCurveSurface_IntersectionSegment::*)( const IntCurveSurface_IntersectionPoint & ,  const IntCurveSurface_IntersectionPoint &  ) >(&IntCurveSurface_IntersectionSegment::SetValues),
             R"#(None)#"  , py::arg("P1"),  py::arg("P2")
          )
        .def("Values",
             (void (IntCurveSurface_IntersectionSegment::*)( IntCurveSurface_IntersectionPoint & ,  IntCurveSurface_IntersectionPoint &  ) const) static_cast<void (IntCurveSurface_IntersectionSegment::*)( IntCurveSurface_IntersectionPoint & ,  IntCurveSurface_IntersectionPoint &  ) const>(&IntCurveSurface_IntersectionSegment::Values),
             R"#(None)#"  , py::arg("P1"),  py::arg("P2")
          )
        .def("FirstPoint",
             (void (IntCurveSurface_IntersectionSegment::*)( IntCurveSurface_IntersectionPoint &  ) const) static_cast<void (IntCurveSurface_IntersectionSegment::*)( IntCurveSurface_IntersectionPoint &  ) const>(&IntCurveSurface_IntersectionSegment::FirstPoint),
             R"#(None)#"  , py::arg("P1")
          )
        .def("SecondPoint",
             (void (IntCurveSurface_IntersectionSegment::*)( IntCurveSurface_IntersectionPoint &  ) const) static_cast<void (IntCurveSurface_IntersectionSegment::*)( IntCurveSurface_IntersectionPoint &  ) const>(&IntCurveSurface_IntersectionSegment::SecondPoint),
             R"#(None)#"  , py::arg("P2")
          )
        .def("Dump",
             (void (IntCurveSurface_IntersectionSegment::*)() const) static_cast<void (IntCurveSurface_IntersectionSegment::*)() const>(&IntCurveSurface_IntersectionSegment::Dump),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("FirstPoint",
             (const IntCurveSurface_IntersectionPoint & (IntCurveSurface_IntersectionSegment::*)() const) static_cast<const IntCurveSurface_IntersectionPoint & (IntCurveSurface_IntersectionSegment::*)() const>(&IntCurveSurface_IntersectionSegment::FirstPoint),
             R"#(None)#"
             
         )
       .def("SecondPoint",
             (const IntCurveSurface_IntersectionPoint & (IntCurveSurface_IntersectionSegment::*)() const) static_cast<const IntCurveSurface_IntersectionPoint & (IntCurveSurface_IntersectionSegment::*)() const>(&IntCurveSurface_IntersectionSegment::SecondPoint),
             R"#(None)#"
             
         )
;

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_TheCSFunctionOfHInter , shared_ptr<IntCurveSurface_TheCSFunctionOfHInter>  , math_FunctionSetWithDerivatives >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_Curve> & >()  , py::arg("S"),  py::arg("C") )
    // custom constructors
    // methods
        .def("NbVariables",
             (Standard_Integer (IntCurveSurface_TheCSFunctionOfHInter::*)() const) static_cast<Standard_Integer (IntCurveSurface_TheCSFunctionOfHInter::*)() const>(&IntCurveSurface_TheCSFunctionOfHInter::NbVariables),
             R"#(None)#" 
          )
        .def("NbEquations",
             (Standard_Integer (IntCurveSurface_TheCSFunctionOfHInter::*)() const) static_cast<Standard_Integer (IntCurveSurface_TheCSFunctionOfHInter::*)() const>(&IntCurveSurface_TheCSFunctionOfHInter::NbEquations),
             R"#(None)#" 
          )
        .def("Value",
             (Standard_Boolean (IntCurveSurface_TheCSFunctionOfHInter::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) ) static_cast<Standard_Boolean (IntCurveSurface_TheCSFunctionOfHInter::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> &  ) >(&IntCurveSurface_TheCSFunctionOfHInter::Value),
             R"#(None)#"  , py::arg("X"),  py::arg("F")
          )
        .def("Derivatives",
             (Standard_Boolean (IntCurveSurface_TheCSFunctionOfHInter::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (IntCurveSurface_TheCSFunctionOfHInter::*)(  const math_VectorBase<double> & ,  math_Matrix &  ) >(&IntCurveSurface_TheCSFunctionOfHInter::Derivatives),
             R"#(None)#"  , py::arg("X"),  py::arg("D")
          )
        .def("Values",
             (Standard_Boolean (IntCurveSurface_TheCSFunctionOfHInter::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) ) static_cast<Standard_Boolean (IntCurveSurface_TheCSFunctionOfHInter::*)(  const math_VectorBase<double> & ,  math_VectorBase<double> & ,  math_Matrix &  ) >(&IntCurveSurface_TheCSFunctionOfHInter::Values),
             R"#(None)#"  , py::arg("X"),  py::arg("F"),  py::arg("D")
          )
        .def("Root",
             (Standard_Real (IntCurveSurface_TheCSFunctionOfHInter::*)() const) static_cast<Standard_Real (IntCurveSurface_TheCSFunctionOfHInter::*)() const>(&IntCurveSurface_TheCSFunctionOfHInter::Root),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Point",
             (const gp_Pnt & (IntCurveSurface_TheCSFunctionOfHInter::*)() const) static_cast<const gp_Pnt & (IntCurveSurface_TheCSFunctionOfHInter::*)() const>(&IntCurveSurface_TheCSFunctionOfHInter::Point),
             R"#(None)#"
             
         )
       .def("AuxillarSurface",
             (const opencascade::handle<Adaptor3d_Surface> & (IntCurveSurface_TheCSFunctionOfHInter::*)() const) static_cast<const opencascade::handle<Adaptor3d_Surface> & (IntCurveSurface_TheCSFunctionOfHInter::*)() const>(&IntCurveSurface_TheCSFunctionOfHInter::AuxillarSurface),
             R"#(None)#"
             
         )
       .def("AuxillarCurve",
             (const opencascade::handle<Adaptor3d_Curve> & (IntCurveSurface_TheCSFunctionOfHInter::*)() const) static_cast<const opencascade::handle<Adaptor3d_Curve> & (IntCurveSurface_TheCSFunctionOfHInter::*)() const>(&IntCurveSurface_TheCSFunctionOfHInter::AuxillarCurve),
             R"#(None)#"
             
         )
;

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


    // nested enums

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

                 self.ParameterOnSurface(U,V);
                 
                 return std::make_tuple(U,V); },
             R"#(None)#" 
          )
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Point",
             (const gp_Pnt & (IntCurveSurface_TheExactHInter::*)() const) static_cast<const gp_Pnt & (IntCurveSurface_TheExactHInter::*)() const>(&IntCurveSurface_TheExactHInter::Point),
             R"#(returns the intersection point The exception NotDone is raised if IsDone is false. The exception DomainError is raised if IsEmpty is true.)#"
             
         )
       .def("Function",
             (IntCurveSurface_TheCSFunctionOfHInter & (IntCurveSurface_TheExactHInter::*)() ) static_cast<IntCurveSurface_TheCSFunctionOfHInter & (IntCurveSurface_TheExactHInter::*)() >(&IntCurveSurface_TheExactHInter::Function),
             R"#(return the math function which is used to compute the intersection)#"
             
             , py::return_value_policy::reference_internal
         )
;

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

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

    // nested enums

    static_cast<py::class_<IntCurveSurface_TheHCurveTool , shared_ptr<IntCurveSurface_TheHCurveTool>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("FirstParameter_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::FirstParameter),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("LastParameter_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::LastParameter),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Continuity_s",
                    (GeomAbs_Shape (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<GeomAbs_Shape (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Continuity),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("NbIntervals_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const GeomAbs_Shape  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const GeomAbs_Shape  ) >(&IntCurveSurface_TheHCurveTool::NbIntervals),
                    R"#(Returns the number of intervals for continuity <S>. May be one if Continuity(myclass) >= <S>)#"  , py::arg("C"),  py::arg("S")
          )
        .def_static("Intervals_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  NCollection_Array1<Standard_Real> & ,  const GeomAbs_Shape  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  NCollection_Array1<Standard_Real> & ,  const GeomAbs_Shape  ) >(&IntCurveSurface_TheHCurveTool::Intervals),
                    R"#(Stores in <T> the parameters bounding the intervals of continuity <S>.)#"  , py::arg("C"),  py::arg("T"),  py::arg("S")
          )
        .def_static("IsClosed_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::IsClosed),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("IsPeriodic_s",
                    (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::IsPeriodic),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Period_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Period),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Value_s",
                    (gp_Pnt (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real  ) ) static_cast<gp_Pnt (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real  ) >(&IntCurveSurface_TheHCurveTool::Value),
                    R"#(Computes the point of parameter U on the curve.)#"  , py::arg("C"),  py::arg("U")
          )
        .def_static("D0_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt &  ) >(&IntCurveSurface_TheHCurveTool::D0),
                    R"#(Computes the point of parameter U on the curve.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P")
          )
        .def_static("D1_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec &  ) >(&IntCurveSurface_TheHCurveTool::D1),
                    R"#(Computes the point of parameter U on the curve with its first derivative. Raised if the continuity of the current interval is not C1.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P"),  py::arg("V")
          )
        .def_static("D2_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec &  ) >(&IntCurveSurface_TheHCurveTool::D2),
                    R"#(Returns the point P of parameter U, the first and second derivatives V1 and V2. Raised if the continuity of the current interval is not C2.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P"),  py::arg("V1"),  py::arg("V2")
          )
        .def_static("D3_s",
                    (void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec & ,  gp_Vec &  ) ) static_cast<void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  gp_Pnt & ,  gp_Vec & ,  gp_Vec & ,  gp_Vec &  ) >(&IntCurveSurface_TheHCurveTool::D3),
                    R"#(Returns the point P of parameter U, the first, the second and the third derivative. Raised if the continuity of the current interval is not C3.)#"  , py::arg("C"),  py::arg("U"),  py::arg("P"),  py::arg("V1"),  py::arg("V2"),  py::arg("V3")
          )
        .def_static("DN_s",
                    (gp_Vec (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  const Standard_Integer  ) ) static_cast<gp_Vec (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  const Standard_Integer  ) >(&IntCurveSurface_TheHCurveTool::DN),
                    R"#(The returned vector gives the value of the derivative for the order of derivation N. Raised if the continuity of the current interval is not CN. Raised if N < 1.)#"  , py::arg("C"),  py::arg("U"),  py::arg("N")
          )
        .def_static("Resolution_s",
                    (Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real  ) ) static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real  ) >(&IntCurveSurface_TheHCurveTool::Resolution),
                    R"#(Returns the parametric resolution corresponding to the real space resolution <R3d>.)#"  , py::arg("C"),  py::arg("R3d")
          )
        .def_static("GetType_s",
                    (GeomAbs_CurveType (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<GeomAbs_CurveType (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::GetType),
                    R"#(Returns the type of the curve in the current interval : Line, Circle, Ellipse, Hyperbola, Parabola, BezierCurve, BSplineCurve, OtherCurve.)#"  , py::arg("C")
          )
        .def_static("Line_s",
                    (gp_Lin (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<gp_Lin (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Line),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Circle_s",
                    (gp_Circ (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<gp_Circ (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Circle),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Ellipse_s",
                    (gp_Elips (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<gp_Elips (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Ellipse),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Hyperbola_s",
                    (gp_Hypr (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<gp_Hypr (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Hyperbola),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Parabola_s",
                    (gp_Parab (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<gp_Parab (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Parabola),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("Bezier_s",
                    (opencascade::handle<Geom_BezierCurve> (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<opencascade::handle<Geom_BezierCurve> (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::Bezier),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("BSpline_s",
                    (opencascade::handle<Geom_BSplineCurve> (*)( const opencascade::handle<Adaptor3d_Curve> &  ) ) static_cast<opencascade::handle<Geom_BSplineCurve> (*)( const opencascade::handle<Adaptor3d_Curve> &  ) >(&IntCurveSurface_TheHCurveTool::BSpline),
                    R"#(None)#"  , py::arg("C")
          )
        .def_static("NbSamples_s",
                    (Standard_Integer (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<Standard_Integer (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const Standard_Real ,  const Standard_Real  ) >(&IntCurveSurface_TheHCurveTool::NbSamples),
                    R"#(None)#"  , py::arg("C"),  py::arg("U0"),  py::arg("U1")
          )
    // static methods using call by reference i.s.o. return
        .def_static("SamplePars_s",
            [](const opencascade::handle<Adaptor3d_Curve> & C,const Standard_Real U0,const Standard_Real U1,const Standard_Real Defl,const Standard_Integer NbMin,TColStd_HArray1OfReal& Pars ){
                opencascade::handle<TColStd_HArray1OfReal>  Pars_ptr; Pars_ptr = &Pars;

                IntCurveSurface_TheHCurveTool::SamplePars(C,U0,U1,Defl,NbMin,Pars_ptr);
                if ( Pars_ptr.get() != &Pars ) copy_if_copy_constructible(Pars, *Pars_ptr);

 },
            R"#(None)#"  , py::arg("C"),  py::arg("U0"),  py::arg("U1"),  py::arg("Defl"),  py::arg("NbMin"),  py::arg("Pars")
          )
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_TheInterferenceOfHInter , shared_ptr<IntCurveSurface_TheInterferenceOfHInter>  , Intf_Interference >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const IntCurveSurface_ThePolygonOfHInter &,const IntCurveSurface_ThePolyhedronOfHInter & >()  , py::arg("thePolyg"),  py::arg("thePolyh") )
        .def(py::init< const gp_Lin &,const IntCurveSurface_ThePolyhedronOfHInter & >()  , py::arg("theLin"),  py::arg("thePolyh") )
        .def(py::init<  const NCollection_Array1<gp_Lin> &,const IntCurveSurface_ThePolyhedronOfHInter & >()  , py::arg("theLins"),  py::arg("thePolyh") )
        .def(py::init< const IntCurveSurface_ThePolygonOfHInter &,const IntCurveSurface_ThePolyhedronOfHInter &,Bnd_BoundSortBox & >()  , py::arg("thePolyg"),  py::arg("thePolyh"),  py::arg("theBoundSB") )
        .def(py::init< const gp_Lin &,const IntCurveSurface_ThePolyhedronOfHInter &,Bnd_BoundSortBox & >()  , py::arg("theLin"),  py::arg("thePolyh"),  py::arg("theBoundSB") )
        .def(py::init<  const NCollection_Array1<gp_Lin> &,const IntCurveSurface_ThePolyhedronOfHInter &,Bnd_BoundSortBox & >()  , py::arg("theLins"),  py::arg("thePolyh"),  py::arg("theBoundSB") )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Perform),
             R"#(Computes an interference between the Polygon and the Polyhedron.)#"  , py::arg("thePolyg"),  py::arg("thePolyh")
          )
        .def("Perform",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)( const gp_Lin & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)( const gp_Lin & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Perform),
             R"#(Computes an interference between the Straight Line and the Polyhedron.)#"  , py::arg("theLin"),  py::arg("thePolyh")
          )
        .def("Perform",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)(  const NCollection_Array1<gp_Lin> & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)(  const NCollection_Array1<gp_Lin> & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Perform),
             R"#(Computes an interference between the Straight Lines and the Polyhedron.)#"  , py::arg("theLins"),  py::arg("thePolyh")
          )
        .def("Perform",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Perform),
             R"#(Computes an interference between the Polygon and the Polyhedron.)#"  , py::arg("thePolyg"),  py::arg("thePolyh"),  py::arg("theBoundSB")
          )
        .def("Perform",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)( const gp_Lin & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)( const gp_Lin & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Perform),
             R"#(Computes an interference between the Straight Line and the Polyhedron.)#"  , py::arg("theLin"),  py::arg("thePolyh"),  py::arg("theBoundSB")
          )
        .def("Perform",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)(  const NCollection_Array1<gp_Lin> & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)(  const NCollection_Array1<gp_Lin> & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Perform),
             R"#(Computes an interference between the Straight Lines and the Polyhedron.)#"  , py::arg("theLins"),  py::arg("thePolyh"),  py::arg("theBoundSB")
          )
        .def("Interference",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Interference),
             R"#(Compares the boundings between the segment of <thePolyg> and the facets of <thePolyh>.)#"  , py::arg("thePolyg"),  py::arg("thePolyh"),  py::arg("theBoundSB")
          )
        .def("Interference",
             (void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<void (IntCurveSurface_TheInterferenceOfHInter::*)( const IntCurveSurface_ThePolygonOfHInter & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_TheInterferenceOfHInter::Interference),
             R"#(Compares the boundings between the segment of <thePolyg> and the facets of <thePolyh>.)#"  , py::arg("thePolyg"),  py::arg("thePolyh")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_ThePolygonOfHInter , shared_ptr<IntCurveSurface_ThePolygonOfHInter>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_Curve> &,const Standard_Integer >()  , py::arg("Curve"),  py::arg("NbPnt") )
        .def(py::init< const opencascade::handle<Adaptor3d_Curve> &,const Standard_Real,const Standard_Real,const Standard_Integer >()  , py::arg("Curve"),  py::arg("U1"),  py::arg("U2"),  py::arg("NbPnt") )
        .def(py::init< const opencascade::handle<Adaptor3d_Curve> &, const NCollection_Array1<Standard_Real> & >()  , py::arg("Curve"),  py::arg("Upars") )
    // custom constructors
    // methods
        .def("DeflectionOverEstimation",
             (Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)() const) static_cast<Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)() const>(&IntCurveSurface_ThePolygonOfHInter::DeflectionOverEstimation),
             R"#(None)#" 
          )
        .def("SetDeflectionOverEstimation",
             (void (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Real  ) ) static_cast<void (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Real  ) >(&IntCurveSurface_ThePolygonOfHInter::SetDeflectionOverEstimation),
             R"#(None)#"  , py::arg("x")
          )
        .def("Closed",
             (void (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Boolean  ) ) static_cast<void (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Boolean  ) >(&IntCurveSurface_ThePolygonOfHInter::Closed),
             R"#(None)#"  , py::arg("flag")
          )
        .def("Closed",
             (Standard_Boolean (IntCurveSurface_ThePolygonOfHInter::*)() const) static_cast<Standard_Boolean (IntCurveSurface_ThePolygonOfHInter::*)() const>(&IntCurveSurface_ThePolygonOfHInter::Closed),
             R"#(None)#" 
          )
        .def("NbSegments",
             (Standard_Integer (IntCurveSurface_ThePolygonOfHInter::*)() const) static_cast<Standard_Integer (IntCurveSurface_ThePolygonOfHInter::*)() const>(&IntCurveSurface_ThePolygonOfHInter::NbSegments),
             R"#(Give the number of Segments in the polyline.)#" 
          )
        .def("BeginOfSeg",
             (const gp_Pnt & (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Integer  ) const) static_cast<const gp_Pnt & (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Integer  ) const>(&IntCurveSurface_ThePolygonOfHInter::BeginOfSeg),
             R"#(Give the point of range Index in the Polygon.)#"  , py::arg("theIndex")
          )
        .def("EndOfSeg",
             (const gp_Pnt & (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Integer  ) const) static_cast<const gp_Pnt & (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Integer  ) const>(&IntCurveSurface_ThePolygonOfHInter::EndOfSeg),
             R"#(Give the point of range Index in the Polygon.)#"  , py::arg("theIndex")
          )
        .def("InfParameter",
             (Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)() const) static_cast<Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)() const>(&IntCurveSurface_ThePolygonOfHInter::InfParameter),
             R"#(Returns the parameter (On the curve) of the first point of the Polygon)#" 
          )
        .def("SupParameter",
             (Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)() const) static_cast<Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)() const>(&IntCurveSurface_ThePolygonOfHInter::SupParameter),
             R"#(Returns the parameter (On the curve) of the last point of the Polygon)#" 
          )
        .def("ApproxParamOnCurve",
             (Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Integer ,  const Standard_Real  ) const) static_cast<Standard_Real (IntCurveSurface_ThePolygonOfHInter::*)( const Standard_Integer ,  const Standard_Real  ) const>(&IntCurveSurface_ThePolygonOfHInter::ApproxParamOnCurve),
             R"#(Give an approximation of the parameter on the curve according to the discretization of the Curve.)#"  , py::arg("Index"),  py::arg("ParamOnLine")
          )
        .def("Dump",
             (void (IntCurveSurface_ThePolygonOfHInter::*)() const) static_cast<void (IntCurveSurface_ThePolygonOfHInter::*)() const>(&IntCurveSurface_ThePolygonOfHInter::Dump),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Bounding",
             (const Bnd_Box & (IntCurveSurface_ThePolygonOfHInter::*)() const) static_cast<const Bnd_Box & (IntCurveSurface_ThePolygonOfHInter::*)() const>(&IntCurveSurface_ThePolygonOfHInter::Bounding),
             R"#(Give the bounding box of the polygon.)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<IntCurveSurface_ThePolygonToolOfHInter , shared_ptr<IntCurveSurface_ThePolygonToolOfHInter>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Bounding_s",
                    (const Bnd_Box & (*)( const IntCurveSurface_ThePolygonOfHInter &  ) ) static_cast<const Bnd_Box & (*)( const IntCurveSurface_ThePolygonOfHInter &  ) >(&IntCurveSurface_ThePolygonToolOfHInter::Bounding),
                    R"#(Give the bounding box of the polygon.)#"  , py::arg("thePolygon")
          )
        .def_static("DeflectionOverEstimation_s",
                    (Standard_Real (*)( const IntCurveSurface_ThePolygonOfHInter &  ) ) static_cast<Standard_Real (*)( const IntCurveSurface_ThePolygonOfHInter &  ) >(&IntCurveSurface_ThePolygonToolOfHInter::DeflectionOverEstimation),
                    R"#(None)#"  , py::arg("thePolygon")
          )
        .def_static("Closed_s",
                    (Standard_Boolean (*)( const IntCurveSurface_ThePolygonOfHInter &  ) ) static_cast<Standard_Boolean (*)( const IntCurveSurface_ThePolygonOfHInter &  ) >(&IntCurveSurface_ThePolygonToolOfHInter::Closed),
                    R"#(None)#"  , py::arg("thePolygon")
          )
        .def_static("NbSegments_s",
                    (Standard_Integer (*)( const IntCurveSurface_ThePolygonOfHInter &  ) ) static_cast<Standard_Integer (*)( const IntCurveSurface_ThePolygonOfHInter &  ) >(&IntCurveSurface_ThePolygonToolOfHInter::NbSegments),
                    R"#(None)#"  , py::arg("thePolygon")
          )
        .def_static("BeginOfSeg_s",
                    (const gp_Pnt & (*)( const IntCurveSurface_ThePolygonOfHInter & ,  const Standard_Integer  ) ) static_cast<const gp_Pnt & (*)( const IntCurveSurface_ThePolygonOfHInter & ,  const Standard_Integer  ) >(&IntCurveSurface_ThePolygonToolOfHInter::BeginOfSeg),
                    R"#(Give the point of range Index in the Polygon.)#"  , py::arg("thePolygon"),  py::arg("Index")
          )
        .def_static("EndOfSeg_s",
                    (const gp_Pnt & (*)( const IntCurveSurface_ThePolygonOfHInter & ,  const Standard_Integer  ) ) static_cast<const gp_Pnt & (*)( const IntCurveSurface_ThePolygonOfHInter & ,  const Standard_Integer  ) >(&IntCurveSurface_ThePolygonToolOfHInter::EndOfSeg),
                    R"#(Give the point of range Index in the Polygon.)#"  , py::arg("thePolygon"),  py::arg("Index")
          )
        .def_static("Dump_s",
                    (void (*)( const IntCurveSurface_ThePolygonOfHInter &  ) ) static_cast<void (*)( const IntCurveSurface_ThePolygonOfHInter &  ) >(&IntCurveSurface_ThePolygonToolOfHInter::Dump),
                    R"#(None)#"  , py::arg("thePolygon")
          )
    // 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 IntCurveSurface_ThePolyhedronOfHInter from ./opencascade/IntCurveSurface_ThePolyhedronOfHInter.hxx
    klass = m.attr("IntCurveSurface_ThePolyhedronOfHInter");


    // nested enums

    static_cast<py::class_<IntCurveSurface_ThePolyhedronOfHInter , shared_ptr<IntCurveSurface_ThePolyhedronOfHInter>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const Standard_Integer,const Standard_Integer,const Standard_Real,const Standard_Real,const Standard_Real,const Standard_Real >()  , py::arg("Surface"),  py::arg("nbdU"),  py::arg("nbdV"),  py::arg("U1"),  py::arg("V1"),  py::arg("U2"),  py::arg("V2") )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &, const NCollection_Array1<Standard_Real> &, const NCollection_Array1<Standard_Real> & >()  , py::arg("Surface"),  py::arg("Upars"),  py::arg("Vpars") )
    // custom constructors
    // methods
        .def("Destroy",
             (void (IntCurveSurface_ThePolyhedronOfHInter::*)() ) static_cast<void (IntCurveSurface_ThePolyhedronOfHInter::*)() >(&IntCurveSurface_ThePolyhedronOfHInter::Destroy),
             R"#(None)#" 
          )
        .def("DeflectionOverEstimation",
             (void (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Real  ) ) static_cast<void (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Real  ) >(&IntCurveSurface_ThePolyhedronOfHInter::DeflectionOverEstimation),
             R"#(None)#"  , py::arg("flec")
          )
        .def("DeflectionOnTriangle",
             (Standard_Real (IntCurveSurface_ThePolyhedronOfHInter::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Integer  ) const) static_cast<Standard_Real (IntCurveSurface_ThePolyhedronOfHInter::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Integer  ) const>(&IntCurveSurface_ThePolyhedronOfHInter::DeflectionOnTriangle),
             R"#(None)#"  , py::arg("Surface"),  py::arg("Index")
          )
        .def("NbTriangles",
             (Standard_Integer (IntCurveSurface_ThePolyhedronOfHInter::*)() const) static_cast<Standard_Integer (IntCurveSurface_ThePolyhedronOfHInter::*)() const>(&IntCurveSurface_ThePolyhedronOfHInter::NbTriangles),
             R"#(Give the number of triangles in this double array of)#" 
          )
        .def("TriConnex",
             (Standard_Integer (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) const) static_cast<Standard_Integer (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) const>(&IntCurveSurface_ThePolyhedronOfHInter::TriConnex),
             R"#(Give the address Tricon of the triangle connexe to the triangle of address Triang by the edge Pivot Pedge and the third point of this connexe triangle. When we are on a free edge TriCon==0 but the function return the value of the triangle in the other side of Pivot on the free edge. Used to turn around a vertex.)#"  , py::arg("Triang"),  py::arg("Pivot"),  py::arg("Pedge"),  py::arg("TriCon"),  py::arg("OtherP")
          )
        .def("NbPoints",
             (Standard_Integer (IntCurveSurface_ThePolyhedronOfHInter::*)() const) static_cast<Standard_Integer (IntCurveSurface_ThePolyhedronOfHInter::*)() const>(&IntCurveSurface_ThePolyhedronOfHInter::NbPoints),
             R"#(Give the number of point in the double array of triangles ((nbdu+1)*(nbdv+1)).)#" 
          )
        .def("Point",
             (void (IntCurveSurface_ThePolyhedronOfHInter::*)( const gp_Pnt & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (IntCurveSurface_ThePolyhedronOfHInter::*)( const gp_Pnt & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Real  ) >(&IntCurveSurface_ThePolyhedronOfHInter::Point),
             R"#(Set the value of a field of the double array of points.)#"  , py::arg("thePnt"),  py::arg("lig"),  py::arg("col"),  py::arg("U"),  py::arg("V")
          )
        .def("Point",
             (const gp_Pnt & (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  Standard_Real & ,  Standard_Real &  ) const) static_cast<const gp_Pnt & (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  Standard_Real & ,  Standard_Real &  ) const>(&IntCurveSurface_ThePolyhedronOfHInter::Point),
             R"#(Give the point of index i in the MaTriangle.)#"  , py::arg("Index"),  py::arg("U"),  py::arg("V")
          )
        .def("Point",
             (const gp_Pnt & (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer  ) const) static_cast<const gp_Pnt & (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer  ) const>(&IntCurveSurface_ThePolyhedronOfHInter::Point),
             R"#(Give the point of index i in the MaTriangle.)#"  , py::arg("Index")
          )
        .def("Point",
             (void (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  gp_Pnt &  ) const) static_cast<void (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  gp_Pnt &  ) const>(&IntCurveSurface_ThePolyhedronOfHInter::Point),
             R"#(Give the point of index i in the MaTriangle.)#"  , py::arg("Index"),  py::arg("P")
          )
        .def("FillBounding",
             (void (IntCurveSurface_ThePolyhedronOfHInter::*)() ) static_cast<void (IntCurveSurface_ThePolyhedronOfHInter::*)() >(&IntCurveSurface_ThePolyhedronOfHInter::FillBounding),
             R"#(Compute the array of boxes. The box <n> corresponding to the triangle <n>.)#" 
          )
        .def("DeflectionOverEstimation",
             (Standard_Real (IntCurveSurface_ThePolyhedronOfHInter::*)() const) static_cast<Standard_Real (IntCurveSurface_ThePolyhedronOfHInter::*)() const>(&IntCurveSurface_ThePolyhedronOfHInter::DeflectionOverEstimation),
             R"#(None)#" 
          )
        .def("Contain",
             (Standard_Boolean (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  const gp_Pnt &  ) const) static_cast<Standard_Boolean (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  const gp_Pnt &  ) const>(&IntCurveSurface_ThePolyhedronOfHInter::Contain),
             R"#(Give the plane equation of the triangle of address Triang.)#"  , py::arg("Triang"),  py::arg("ThePnt")
          )
        .def("IsOnBound",
             (Standard_Boolean (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  const Standard_Integer  ) const) static_cast<Standard_Boolean (IntCurveSurface_ThePolyhedronOfHInter::*)( const Standard_Integer ,  const Standard_Integer  ) const>(&IntCurveSurface_ThePolyhedronOfHInter::IsOnBound),
             R"#(This method returns true if the edge based on points with indices Index1 and Index2 represents a boundary edge. It is necessary to take into account the boundary deflection for this edge.)#"  , py::arg("Index1"),  py::arg("Index2")
          )
        .def("GetBorderDeflection",
             (Standard_Real (IntCurveSurface_ThePolyhedronOfHInter::*)() const) static_cast<Standard_Real (IntCurveSurface_ThePolyhedronOfHInter::*)() const>(&IntCurveSurface_ThePolyhedronOfHInter::GetBorderDeflection),
             R"#(This method returns a border deflection.)#" 
          )
        .def("Dump",
             (void (IntCurveSurface_ThePolyhedronOfHInter::*)() const) static_cast<void (IntCurveSurface_ThePolyhedronOfHInter::*)() const>(&IntCurveSurface_ThePolyhedronOfHInter::Dump),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
        .def("Size",
             []( IntCurveSurface_ThePolyhedronOfHInter &self   ){
                 Standard_Integer  nbdu;
                Standard_Integer  nbdv;

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

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

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

                 self.Parameters(Index,U,V);
                 
                 return std::make_tuple(U,V); },
             R"#(None)#"  , py::arg("Index")
          )
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Bounding",
             (const Bnd_Box & (IntCurveSurface_ThePolyhedronOfHInter::*)() const) static_cast<const Bnd_Box & (IntCurveSurface_ThePolyhedronOfHInter::*)() const>(&IntCurveSurface_ThePolyhedronOfHInter::Bounding),
             R"#(Give the bounding box of the MaTriangle.)#"
             
         )
       .def("ComponentsBounding",
             (const opencascade::handle<Bnd_HArray1OfBox> & (IntCurveSurface_ThePolyhedronOfHInter::*)() const) static_cast<const opencascade::handle<Bnd_HArray1OfBox> & (IntCurveSurface_ThePolyhedronOfHInter::*)() const>(&IntCurveSurface_ThePolyhedronOfHInter::ComponentsBounding),
             R"#(Give the array of boxes. The box <n> corresponding to the triangle <n>.)#"
             
         )
;

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

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

    // nested enums

    static_cast<py::class_<IntCurveSurface_ThePolyhedronToolOfHInter , shared_ptr<IntCurveSurface_ThePolyhedronToolOfHInter>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Bounding_s",
                    (const Bnd_Box & (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<const Bnd_Box & (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::Bounding),
                    R"#(Give the bounding box of the PolyhedronTool.)#"  , py::arg("thePolyh")
          )
        .def_static("ComponentsBounding_s",
                    (const opencascade::handle<Bnd_HArray1OfBox> & (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<const opencascade::handle<Bnd_HArray1OfBox> & (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::ComponentsBounding),
                    R"#(Give the array of boxes. The box <n> corresponding to the triangle <n>.)#"  , py::arg("thePolyh")
          )
        .def_static("DeflectionOverEstimation_s",
                    (Standard_Real (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<Standard_Real (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::DeflectionOverEstimation),
                    R"#(Give the tolerance of the polygon.)#"  , py::arg("thePolyh")
          )
        .def_static("NbTriangles_s",
                    (Standard_Integer (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<Standard_Integer (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::NbTriangles),
                    R"#(Give the number of triangles in this polyhedral surface.)#"  , py::arg("thePolyh")
          )
        .def_static("Point_s",
                    (const gp_Pnt & (*)( const IntCurveSurface_ThePolyhedronOfHInter & ,  const Standard_Integer  ) ) static_cast<const gp_Pnt & (*)( const IntCurveSurface_ThePolyhedronOfHInter & ,  const Standard_Integer  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::Point),
                    R"#(Give the point of index i in the polyhedral surface.)#"  , py::arg("thePolyh"),  py::arg("Index")
          )
        .def_static("TriConnex_s",
                    (Standard_Integer (*)( const IntCurveSurface_ThePolyhedronOfHInter & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) ) static_cast<Standard_Integer (*)( const IntCurveSurface_ThePolyhedronOfHInter & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer &  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::TriConnex),
                    R"#(Give the address Tricon of the triangle connexe to the triangle of address Triang by the edge Pivot Pedge and the third point of this connexe triangle. When we are on a free edge TriCon==0 but the function return the value of the triangle in the other side of Pivot on the free edge. Used to turn around a vertex.)#"  , py::arg("thePolyh"),  py::arg("Triang"),  py::arg("Pivot"),  py::arg("Pedge"),  py::arg("TriCon"),  py::arg("OtherP")
          )
        .def_static("IsOnBound_s",
                    (Standard_Boolean (*)( const IntCurveSurface_ThePolyhedronOfHInter & ,  const Standard_Integer ,  const Standard_Integer  ) ) static_cast<Standard_Boolean (*)( const IntCurveSurface_ThePolyhedronOfHInter & ,  const Standard_Integer ,  const Standard_Integer  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::IsOnBound),
                    R"#(This method returns true if the edge based on points with indices Index1 and Index2 represents a boundary edge. It is necessary to take into account the boundary deflection for this edge.)#"  , py::arg("thePolyh"),  py::arg("Index1"),  py::arg("Index2")
          )
        .def_static("GetBorderDeflection_s",
                    (Standard_Real (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<Standard_Real (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::GetBorderDeflection),
                    R"#(This method returns a border deflection of the polyhedron.)#"  , py::arg("thePolyh")
          )
        .def_static("Dump_s",
                    (void (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<void (*)( const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_ThePolyhedronToolOfHInter::Dump),
                    R"#(None)#"  , py::arg("thePolyh")
          )
    // static methods using call by reference i.s.o. return
        .def_static("Triangle_s",
            [](const IntCurveSurface_ThePolyhedronOfHInter & thePolyh,const Standard_Integer Index ){
                Standard_Integer  P1;
                Standard_Integer  P2;
                Standard_Integer  P3;

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

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_TheQuadCurvExactHInter , shared_ptr<IntCurveSurface_TheQuadCurvExactHInter>  >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const opencascade::handle<Adaptor3d_Curve> & >()  , py::arg("S"),  py::arg("C") )
    // custom constructors
    // methods
        .def("IsDone",
             (Standard_Boolean (IntCurveSurface_TheQuadCurvExactHInter::*)() const) static_cast<Standard_Boolean (IntCurveSurface_TheQuadCurvExactHInter::*)() const>(&IntCurveSurface_TheQuadCurvExactHInter::IsDone),
             R"#(None)#" 
          )
        .def("NbRoots",
             (Standard_Integer (IntCurveSurface_TheQuadCurvExactHInter::*)() const) static_cast<Standard_Integer (IntCurveSurface_TheQuadCurvExactHInter::*)() const>(&IntCurveSurface_TheQuadCurvExactHInter::NbRoots),
             R"#(None)#" 
          )
        .def("Root",
             (Standard_Real (IntCurveSurface_TheQuadCurvExactHInter::*)( const Standard_Integer  ) const) static_cast<Standard_Real (IntCurveSurface_TheQuadCurvExactHInter::*)( const Standard_Integer  ) const>(&IntCurveSurface_TheQuadCurvExactHInter::Root),
             R"#(None)#"  , py::arg("Index")
          )
        .def("NbIntervals",
             (Standard_Integer (IntCurveSurface_TheQuadCurvExactHInter::*)() const) static_cast<Standard_Integer (IntCurveSurface_TheQuadCurvExactHInter::*)() const>(&IntCurveSurface_TheQuadCurvExactHInter::NbIntervals),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
        .def("Intervals",
             []( IntCurveSurface_TheQuadCurvExactHInter &self , const Standard_Integer Index ){
                 Standard_Real  U1;
                Standard_Real  U2;

                 self.Intervals(Index,U1,U2);
                 
                 return std::make_tuple(U1,U2); },
             R"#(U1 and U2 are the parameters of a segment on the curve.)#"  , py::arg("Index")
          )
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter , shared_ptr<IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter>  , math_FunctionWithDerivative >>(klass)
    // constructors
        .def(py::init< const IntSurf_Quadric &,const opencascade::handle<Adaptor3d_Curve> & >()  , py::arg("Q"),  py::arg("C") )
    // custom constructors
    // methods
        .def("Value",
             (Standard_Boolean (IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::*)( const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::*)( const Standard_Real ,  Standard_Real &  ) >(&IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::Value),
             R"#(Computes the value of the signed distance between the implicit surface and the point at parameter Param on the parametrised curve. Value always returns True.)#"  , py::arg("Param"),  py::arg("F")
          )
        .def("Derivative",
             (Standard_Boolean (IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::*)( const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::*)( const Standard_Real ,  Standard_Real &  ) >(&IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::Derivative),
             R"#(Computes the derivative of the previous function at parameter Param. Derivative always returns True.)#"  , py::arg("Param"),  py::arg("D")
          )
        .def("Values",
             (Standard_Boolean (IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::*)( const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) ) static_cast<Standard_Boolean (IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::*)( const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) >(&IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter::Values),
             R"#(Computes the value and the derivative of the function. returns True.)#"  , py::arg("Param"),  py::arg("F"),  py::arg("D")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<IntCurveSurface_HInter , shared_ptr<IntCurveSurface_HInter>  , IntCurveSurface_Intersection >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Perform",
             (void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntCurveSurface_HInter::Perform),
             R"#(Compute the Intersection between the curve and the surface)#"  , py::arg("Curve"),  py::arg("Surface")
          )
        .def("Perform",
             (void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const IntCurveSurface_ThePolygonOfHInter & ,  const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const IntCurveSurface_ThePolygonOfHInter & ,  const opencascade::handle<Adaptor3d_Surface> &  ) >(&IntCurveSurface_HInter::Perform),
             R"#(Compute the Intersection between the curve and the surface. The Curve is already sampled and its polygon : <Polygon> is given.)#"  , py::arg("Curve"),  py::arg("Polygon"),  py::arg("Surface")
          )
        .def("Perform",
             (void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const IntCurveSurface_ThePolygonOfHInter & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const IntCurveSurface_ThePolygonOfHInter & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_HInter::Perform),
             R"#(Compute the Intersection between the curve and the surface. The Curve is already sampled and its polygon : <Polygon> is given. The Surface is also sampled and <Polyhedron> is given.)#"  , py::arg("Curve"),  py::arg("ThePolygon"),  py::arg("Surface"),  py::arg("Polyhedron")
          )
        .def("Perform",
             (void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const IntCurveSurface_ThePolygonOfHInter & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) ) static_cast<void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const IntCurveSurface_ThePolygonOfHInter & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntCurveSurface_ThePolyhedronOfHInter & ,  Bnd_BoundSortBox &  ) >(&IntCurveSurface_HInter::Perform),
             R"#(Compute the Intersection between the curve and the surface. The Curve is already sampled and its polygon : <Polygon> is given. The Surface is also sampled and <Polyhedron> is given.)#"  , py::arg("Curve"),  py::arg("ThePolygon"),  py::arg("Surface"),  py::arg("Polyhedron"),  py::arg("BndBSB")
          )
        .def("Perform",
             (void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) ) static_cast<void (IntCurveSurface_HInter::*)( const opencascade::handle<Adaptor3d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const IntCurveSurface_ThePolyhedronOfHInter &  ) >(&IntCurveSurface_HInter::Perform),
             R"#(Compute the Intersection between the curve and the surface. The Surface is already sampled and its polyhedron : <Polyhedron> is given.)#"  , py::arg("Curve"),  py::arg("Surface"),  py::arg("Polyhedron")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

// functions
// ./opencascade/IntCurveSurface_HInter.hxx
// ./opencascade/IntCurveSurface_Intersection.hxx
// ./opencascade/IntCurveSurface_IntersectionPoint.hxx
// ./opencascade/IntCurveSurface_IntersectionSegment.hxx
// ./opencascade/IntCurveSurface_SequenceOfPnt.hxx
// ./opencascade/IntCurveSurface_SequenceOfSeg.hxx
// ./opencascade/IntCurveSurface_TheCSFunctionOfHInter.hxx
// ./opencascade/IntCurveSurface_TheExactHInter.hxx
// ./opencascade/IntCurveSurface_TheHCurveTool.hxx
// ./opencascade/IntCurveSurface_TheInterferenceOfHInter.hxx
// ./opencascade/IntCurveSurface_ThePolygonOfHInter.hxx
// ./opencascade/IntCurveSurface_ThePolygonToolOfHInter.hxx
// ./opencascade/IntCurveSurface_ThePolyhedronOfHInter.hxx
// ./opencascade/IntCurveSurface_ThePolyhedronToolOfHInter.hxx
// ./opencascade/IntCurveSurface_TheQuadCurvExactHInter.hxx
// ./opencascade/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx
// ./opencascade/IntCurveSurface_TransitionOnCurve.hxx

// Additional functions

// operators

// register typdefs
    register_template_NCollection_Sequence<IntCurveSurface_IntersectionPoint>(m,"IntCurveSurface_SequenceOfPnt");
    register_template_NCollection_Sequence<IntCurveSurface_IntersectionSegment>(m,"IntCurveSurface_SequenceOfSeg");


// exceptions

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

};

// user-defined post-inclusion per module

// user-defined post