File: ChFi3d.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 (921 lines) | stat: -rw-r--r-- 96,489 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

// 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 <BRepAdaptor_Surface.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <TopOpeBRepDS_HDataStructure.hxx>
#include <TopOpeBRepBuild_HBuilder.hxx>
#include <ChFiDS_Spine.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <BRepBlend_Line.hxx>
#include <Blend_Function.hxx>
#include <Blend_FuncInv.hxx>
#include <Blend_SurfRstFunction.hxx>
#include <Blend_SurfPointFuncInv.hxx>
#include <Blend_SurfCurvFuncInv.hxx>
#include <Blend_RstRstFunction.hxx>
#include <Blend_CurvPointFuncInv.hxx>
#include <BRepTopAdaptor_TopolTool.hxx>
#include <AppBlend_Approx.hxx>
#include <ChFiDS_Spine.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <Adaptor3d_TopolTool.hxx>
#include <BRepBlend_Line.hxx>
#include <ChFiDS_Spine.hxx>
#include <Law_Function.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Geom_Curve.hxx>

// module includes
#include <ChFi3d.hxx>
#include <ChFi3d_Builder.hxx>
#include <ChFi3d_Builder_0.hxx>
#include <ChFi3d_ChBuilder.hxx>
#include <ChFi3d_FilBuilder.hxx>
#include <ChFi3d_FilletShape.hxx>
#include <ChFi3d_SearchSing.hxx>

// template related includes


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

// user-defined inclusion per module

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


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

//Python trampoline classes
    class Py_ChFi3d_Builder : public ChFi3d_Builder{
    public:
        using ChFi3d_Builder::ChFi3d_Builder;


        // public pure virtual


        // protected pure virtual
        void SimulKPart(const opencascade::handle<ChFiDS_SurfData> & SD) const  override { PYBIND11_OVERLOAD_PURE(void,ChFi3d_Builder,SimulKPart,SD) };
        Standard_Boolean SimulSurf(opencascade::handle<ChFiDS_SurfData> & Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const Standard_Real TolGuide,Standard_Real & First,Standard_Real & Last,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecOnS1,const Standard_Boolean RecOnS2, const math_VectorBase<double> & Soldep,Standard_Integer & Intf,Standard_Integer & Intl) override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,ChFi3d_Builder,SimulSurf,Data,Guide,Spine,Choix,S1,I1,S2,I2,TolGuide,First,Last,Inside,Appro,Forward,RecOnS1,RecOnS2,Soldep,Intf,Intl) };
        void SetRegul() override { PYBIND11_OVERLOAD_PURE(void,ChFi3d_Builder,SetRegul,) };
        Standard_Boolean PerformSurf(NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const Standard_Real MaxStep,const Standard_Real Fleche,const Standard_Real TolGuide,Standard_Real & First,Standard_Real & Last,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecOnS1,const Standard_Boolean RecOnS2, const math_VectorBase<double> & Soldep,Standard_Integer & Intf,Standard_Integer & Intl) override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,ChFi3d_Builder,PerformSurf,Data,Guide,Spine,Choix,S1,I1,S2,I2,MaxStep,Fleche,TolGuide,First,Last,Inside,Appro,Forward,RecOnS1,RecOnS2,Soldep,Intf,Intl) };
        void PerformTwoCorner(const Standard_Integer Index) override { PYBIND11_OVERLOAD_PURE(void,ChFi3d_Builder,PerformTwoCorner,Index) };
        void PerformThreeCorner(const Standard_Integer Index) override { PYBIND11_OVERLOAD_PURE(void,ChFi3d_Builder,PerformThreeCorner,Index) };
        void ExtentOneCorner(const TopoDS_Vertex & V,const opencascade::handle<ChFiDS_Stripe> & S) override { PYBIND11_OVERLOAD_PURE(void,ChFi3d_Builder,ExtentOneCorner,V,S) };
        void ExtentTwoCorner(const TopoDS_Vertex & V, const NCollection_List<opencascade::handle<ChFiDS_Stripe>> & LS) override { PYBIND11_OVERLOAD_PURE(void,ChFi3d_Builder,ExtentTwoCorner,V,LS) };
        void ExtentThreeCorner(const TopoDS_Vertex & V, const NCollection_List<opencascade::handle<ChFiDS_Stripe>> & LS) override { PYBIND11_OVERLOAD_PURE(void,ChFi3d_Builder,ExtentThreeCorner,V,LS) };
        Standard_Boolean PerformFirstSection(const opencascade::handle<ChFiDS_Spine> & S,const opencascade::handle<ChFiDS_ElSpine> & HGuide,const Standard_Integer Choix,opencascade::handle<BRepAdaptor_Surface> & S1,opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I1,const opencascade::handle<Adaptor3d_TopolTool> & I2,const Standard_Real Par,math_VectorBase<double> & SolDep,TopAbs_State & Pos1,TopAbs_State & Pos2) const  override { PYBIND11_OVERLOAD_PURE(Standard_Boolean,ChFi3d_Builder,PerformFirstSection,S,HGuide,Choix,S1,S2,I1,I2,Par,SolDep,Pos1,Pos2) };


        // private pure virtual

    };

// classes

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

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

    // nested enums

    static_cast<py::class_<ChFi3d , shared_ptr<ChFi3d>  >>(klass)
    // constructors
    // custom constructors
    // methods
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("DefineConnectType_s",
                    (ChFiDS_TypeOfConcavity (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const TopoDS_Face & ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<ChFiDS_TypeOfConcavity (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const TopoDS_Face & ,  const Standard_Real ,  const Standard_Boolean  ) >(&ChFi3d::DefineConnectType),
                    R"#(Defines the type of concavity in the edge of connection of two faces)#"  , py::arg("E"),  py::arg("F1"),  py::arg("F2"),  py::arg("SinTol"),  py::arg("CorrectPoint")
          )
        .def_static("IsTangentFaces_s",
                    (Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const TopoDS_Face & ,  const GeomAbs_Shape  ) ) static_cast<Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const TopoDS_Face & ,  const GeomAbs_Shape  ) >(&ChFi3d::IsTangentFaces),
                    R"#(Returns true if theEdge between theFace1 and theFace2 is tangent)#"  , py::arg("theEdge"),  py::arg("theFace1"),  py::arg("theFace2"),  py::arg("Order")=static_cast<const GeomAbs_Shape>(GeomAbs_G1)
          )
        .def_static("ConcaveSide_s",
                    (Standard_Integer (*)( const BRepAdaptor_Surface & ,  const BRepAdaptor_Surface & ,  const TopoDS_Edge & ,  TopAbs_Orientation & ,  TopAbs_Orientation &  ) ) static_cast<Standard_Integer (*)( const BRepAdaptor_Surface & ,  const BRepAdaptor_Surface & ,  const TopoDS_Edge & ,  TopAbs_Orientation & ,  TopAbs_Orientation &  ) >(&ChFi3d::ConcaveSide),
                    R"#(Returns Reversed in Or1 and(or) Or2 if the concave edge defined by the interior of faces F1 and F2, in the neighbourhood of their boundary E is of the edge opposite to the normal of their surface support. The orientation of faces is not taken into consideration in the calculation. The function returns 0 if the calculation fails (tangence), if not, it returns the number of choice of the fillet or chamfer corresponding to the orientations calculated and to the tangent to the guide line read in E.)#"  , py::arg("S1"),  py::arg("S2"),  py::arg("E"),  py::arg("Or1"),  py::arg("Or2")
          )
        .def_static("NextSide_s",
                    (Standard_Integer (*)( TopAbs_Orientation & ,  TopAbs_Orientation & ,  const TopAbs_Orientation ,  const TopAbs_Orientation ,  const Standard_Integer  ) ) static_cast<Standard_Integer (*)( TopAbs_Orientation & ,  TopAbs_Orientation & ,  const TopAbs_Orientation ,  const TopAbs_Orientation ,  const Standard_Integer  ) >(&ChFi3d::NextSide),
                    R"#(Same as ConcaveSide, but the orientations are logically deduced from the result of the call of ConcaveSide on the first pair of faces of the fillet or chamnfer.)#"  , py::arg("Or1"),  py::arg("Or2"),  py::arg("OrSave1"),  py::arg("OrSave2"),  py::arg("ChoixSauv")
          )
        .def_static("NextSide_s",
                    (void (*)( TopAbs_Orientation & ,  const TopAbs_Orientation ,  const TopAbs_Orientation  ) ) static_cast<void (*)( TopAbs_Orientation & ,  const TopAbs_Orientation ,  const TopAbs_Orientation  ) >(&ChFi3d::NextSide),
                    R"#(Same as the other NextSide, but the calculation is done on an edge only.)#"  , py::arg("Or"),  py::arg("OrSave"),  py::arg("OrFace")
          )
        .def_static("SameSide_s",
                    (Standard_Boolean (*)( const TopAbs_Orientation ,  const TopAbs_Orientation ,  const TopAbs_Orientation ,  const TopAbs_Orientation ,  const TopAbs_Orientation  ) ) static_cast<Standard_Boolean (*)( const TopAbs_Orientation ,  const TopAbs_Orientation ,  const TopAbs_Orientation ,  const TopAbs_Orientation ,  const TopAbs_Orientation  ) >(&ChFi3d::SameSide),
                    R"#(Enables to determine while processing an angle, if two fillets or chamfers constituting a face have identic or opposed concave edges.)#"  , py::arg("Or"),  py::arg("OrSave1"),  py::arg("OrSave2"),  py::arg("OrFace1"),  py::arg("OrFace2")
          )
    // 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 ChFi3d_Builder from ./opencascade/ChFi3d_Builder.hxx
    klass = m.attr("ChFi3d_Builder");


    // nested enums

    static_cast<py::class_<ChFi3d_Builder , shared_ptr<ChFi3d_Builder> ,Py_ChFi3d_Builder >>(klass)
    // constructors
    // custom constructors
    // methods
        .def("SetParams",
             (void (ChFi3d_Builder::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) ) static_cast<void (ChFi3d_Builder::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real  ) >(&ChFi3d_Builder::SetParams),
             R"#(None)#"  , py::arg("Tang"),  py::arg("Tesp"),  py::arg("T2d"),  py::arg("TApp3d"),  py::arg("TolApp2d"),  py::arg("Fleche")
          )
        .def("SetContinuity",
             (void (ChFi3d_Builder::*)( const GeomAbs_Shape ,  const Standard_Real  ) ) static_cast<void (ChFi3d_Builder::*)( const GeomAbs_Shape ,  const Standard_Real  ) >(&ChFi3d_Builder::SetContinuity),
             R"#(None)#"  , py::arg("InternalContinuity"),  py::arg("AngularTolerance")
          )
        .def("Remove",
             (void (ChFi3d_Builder::*)( const TopoDS_Edge &  ) ) static_cast<void (ChFi3d_Builder::*)( const TopoDS_Edge &  ) >(&ChFi3d_Builder::Remove),
             R"#(extracts from the list the contour containing edge E.)#"  , py::arg("E")
          )
        .def("Contains",
             (Standard_Integer (ChFi3d_Builder::*)( const TopoDS_Edge &  ) const) static_cast<Standard_Integer (ChFi3d_Builder::*)( const TopoDS_Edge &  ) const>(&ChFi3d_Builder::Contains),
             R"#(gives the number of the contour containing E or 0 if E does not belong to any contour.)#"  , py::arg("E")
          )
        .def("Contains",
             (Standard_Integer (ChFi3d_Builder::*)( const TopoDS_Edge & ,  Standard_Integer &  ) const) static_cast<Standard_Integer (ChFi3d_Builder::*)( const TopoDS_Edge & ,  Standard_Integer &  ) const>(&ChFi3d_Builder::Contains),
             R"#(gives the number of the contour containing E or 0 if E does not belong to any contour. Sets in IndexInSpine the index of E in the contour if it's found)#"  , py::arg("E"),  py::arg("IndexInSpine")
          )
        .def("NbElements",
             (Standard_Integer (ChFi3d_Builder::*)() const) static_cast<Standard_Integer (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::NbElements),
             R"#(gives the number of disjoint contours on which the fillets are calculated)#" 
          )
        .def("Value",
             (opencascade::handle<ChFiDS_Spine> (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<opencascade::handle<ChFiDS_Spine> (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::Value),
             R"#(gives the n'th set of edges (contour) if I >NbElements())#"  , py::arg("I")
          )
        .def("Length",
             (Standard_Real (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<Standard_Real (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::Length),
             R"#(returns the length of the contour of index IC.)#"  , py::arg("IC")
          )
        .def("FirstVertex",
             (TopoDS_Vertex (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<TopoDS_Vertex (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::FirstVertex),
             R"#(returns the First vertex V of the contour of index IC.)#"  , py::arg("IC")
          )
        .def("LastVertex",
             (TopoDS_Vertex (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<TopoDS_Vertex (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::LastVertex),
             R"#(returns the Last vertex V of the contour of index IC.)#"  , py::arg("IC")
          )
        .def("Abscissa",
             (Standard_Real (ChFi3d_Builder::*)( const Standard_Integer ,  const TopoDS_Vertex &  ) const) static_cast<Standard_Real (ChFi3d_Builder::*)( const Standard_Integer ,  const TopoDS_Vertex &  ) const>(&ChFi3d_Builder::Abscissa),
             R"#(returns the abscissa of the vertex V on the contour of index IC.)#"  , py::arg("IC"),  py::arg("V")
          )
        .def("RelativeAbscissa",
             (Standard_Real (ChFi3d_Builder::*)( const Standard_Integer ,  const TopoDS_Vertex &  ) const) static_cast<Standard_Real (ChFi3d_Builder::*)( const Standard_Integer ,  const TopoDS_Vertex &  ) const>(&ChFi3d_Builder::RelativeAbscissa),
             R"#(returns the relative abscissa([0.,1.]) of the vertex V on the contour of index IC.)#"  , py::arg("IC"),  py::arg("V")
          )
        .def("ClosedAndTangent",
             (Standard_Boolean (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<Standard_Boolean (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::ClosedAndTangent),
             R"#(returns true if the contour of index IC is closed an tangent.)#"  , py::arg("IC")
          )
        .def("Closed",
             (Standard_Boolean (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<Standard_Boolean (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::Closed),
             R"#(returns true if the contour of index IC is closed)#"  , py::arg("IC")
          )
        .def("Compute",
             (void (ChFi3d_Builder::*)() ) static_cast<void (ChFi3d_Builder::*)() >(&ChFi3d_Builder::Compute),
             R"#(general calculation of geometry on all edges, topologic reconstruction.)#" 
          )
        .def("IsDone",
             (Standard_Boolean (ChFi3d_Builder::*)() const) static_cast<Standard_Boolean (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::IsDone),
             R"#(returns True if the computation is success)#" 
          )
        .def("Shape",
             (TopoDS_Shape (ChFi3d_Builder::*)() const) static_cast<TopoDS_Shape (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::Shape),
             R"#(if (Isdone()) makes the result. if (!Isdone()))#" 
          )
        .def("Generated",
             (const TopTools_ListOfShape & (ChFi3d_Builder::*)( const TopoDS_Shape &  ) ) static_cast<const TopTools_ListOfShape & (ChFi3d_Builder::*)( const TopoDS_Shape &  ) >(&ChFi3d_Builder::Generated),
             R"#(Advanced function for the history)#"  , py::arg("EouV")
          )
        .def("NbFaultyContours",
             (Standard_Integer (ChFi3d_Builder::*)() const) static_cast<Standard_Integer (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::NbFaultyContours),
             R"#(Returns the number of contours on which the calculation has failed.)#" 
          )
        .def("FaultyContour",
             (Standard_Integer (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::FaultyContour),
             R"#(Returns the number of I'th contour on which the calculation has failed.)#"  , py::arg("I")
          )
        .def("NbComputedSurfaces",
             (Standard_Integer (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::NbComputedSurfaces),
             R"#(Returns the number of surfaces calculated on the contour IC.)#"  , py::arg("IC")
          )
        .def("ComputedSurface",
             (opencascade::handle<Geom_Surface> (ChFi3d_Builder::*)( const Standard_Integer ,  const Standard_Integer  ) const) static_cast<opencascade::handle<Geom_Surface> (ChFi3d_Builder::*)( const Standard_Integer ,  const Standard_Integer  ) const>(&ChFi3d_Builder::ComputedSurface),
             R"#(Returns the IS'th surface calculated on the contour IC.)#"  , py::arg("IC"),  py::arg("IS")
          )
        .def("NbFaultyVertices",
             (Standard_Integer (ChFi3d_Builder::*)() const) static_cast<Standard_Integer (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::NbFaultyVertices),
             R"#(Returns the number of vertices on which the calculation has failed.)#" 
          )
        .def("FaultyVertex",
             (TopoDS_Vertex (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<TopoDS_Vertex (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::FaultyVertex),
             R"#(Returns the IV'th vertex on which the calculation has failed.)#"  , py::arg("IV")
          )
        .def("HasResult",
             (Standard_Boolean (ChFi3d_Builder::*)() const) static_cast<Standard_Boolean (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::HasResult),
             R"#(returns True if a partial result has been calculated)#" 
          )
        .def("BadShape",
             (TopoDS_Shape (ChFi3d_Builder::*)() const) static_cast<TopoDS_Shape (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::BadShape),
             R"#(if (HasResult()) returns partial result if (!HasResult()))#" 
          )
        .def("StripeStatus",
             (ChFiDS_ErrorStatus (ChFi3d_Builder::*)( const Standard_Integer  ) const) static_cast<ChFiDS_ErrorStatus (ChFi3d_Builder::*)( const Standard_Integer  ) const>(&ChFi3d_Builder::StripeStatus),
             R"#(for the stripe IC ,indication on the cause of failure WalkingFailure,TwistedSurface,Error, Ok)#"  , py::arg("IC")
          )
        .def("Reset",
             (void (ChFi3d_Builder::*)() ) static_cast<void (ChFi3d_Builder::*)() >(&ChFi3d_Builder::Reset),
             R"#(Reset all results of compute and returns the algorithm in the state of the last acquisition to enable modification of contours or areas.)#" 
          )
        .def("Builder",
             (opencascade::handle<TopOpeBRepBuild_HBuilder> (ChFi3d_Builder::*)() const) static_cast<opencascade::handle<TopOpeBRepBuild_HBuilder> (ChFi3d_Builder::*)() const>(&ChFi3d_Builder::Builder),
             R"#(Returns the Builder of topologic operations.)#" 
          )
        .def("SplitKPart",
             (Standard_Boolean (ChFi3d_Builder::*)( const opencascade::handle<ChFiDS_SurfData> & ,  NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & ,  const opencascade::handle<ChFiDS_Spine> & ,  const Standard_Integer ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  Standard_Boolean & ,  Standard_Boolean &  ) ) static_cast<Standard_Boolean (ChFi3d_Builder::*)( const opencascade::handle<ChFiDS_SurfData> & ,  NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & ,  const opencascade::handle<ChFiDS_Spine> & ,  const Standard_Integer ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  Standard_Boolean & ,  Standard_Boolean &  ) >(&ChFi3d_Builder::SplitKPart),
             R"#(Method, implemented in the inheritants, calculates the elements of construction of the surface (fillet or chamfer).)#"  , py::arg("Data"),  py::arg("SetData"),  py::arg("Spine"),  py::arg("Iedge"),  py::arg("S1"),  py::arg("I1"),  py::arg("S2"),  py::arg("I2"),  py::arg("Intf"),  py::arg("Intl")
          )
        .def("PerformTwoCornerbyInter",
             (Standard_Boolean (ChFi3d_Builder::*)( const Standard_Integer  ) ) static_cast<Standard_Boolean (ChFi3d_Builder::*)( const Standard_Integer  ) >(&ChFi3d_Builder::PerformTwoCornerbyInter),
             R"#(None)#"  , py::arg("Index")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<ChFi3d_SearchSing , shared_ptr<ChFi3d_SearchSing>  , math_FunctionWithDerivative >>(klass)
    // constructors
        .def(py::init< const opencascade::handle<Geom_Curve> &,const opencascade::handle<Geom_Curve> & >()  , py::arg("C1"),  py::arg("C2") )
    // custom constructors
    // methods
        .def("Value",
             (Standard_Boolean (ChFi3d_SearchSing::*)( const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (ChFi3d_SearchSing::*)( const Standard_Real ,  Standard_Real &  ) >(&ChFi3d_SearchSing::Value),
             R"#(computes the value of the function <F> for the variable <X>. returns True if the computation was done successfully, False otherwise.)#"  , py::arg("X"),  py::arg("F")
          )
        .def("Derivative",
             (Standard_Boolean (ChFi3d_SearchSing::*)( const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (ChFi3d_SearchSing::*)( const Standard_Real ,  Standard_Real &  ) >(&ChFi3d_SearchSing::Derivative),
             R"#(computes the derivative <D> of the function for the variable <X>. Returns True if the calculation were successfully done, False otherwise.)#"  , py::arg("X"),  py::arg("D")
          )
        .def("Values",
             (Standard_Boolean (ChFi3d_SearchSing::*)( const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) ) static_cast<Standard_Boolean (ChFi3d_SearchSing::*)( const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) >(&ChFi3d_SearchSing::Values),
             R"#(computes the value <F> and the derivative <D> of the function for the variable <X>. Returns True if the calculation were successfully done, False otherwise.)#"  , py::arg("X"),  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 ChFi3d_ChBuilder from ./opencascade/ChFi3d_ChBuilder.hxx
    klass = m.attr("ChFi3d_ChBuilder");


    // nested enums

    static_cast<py::class_<ChFi3d_ChBuilder , shared_ptr<ChFi3d_ChBuilder>  , ChFi3d_Builder >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape &,const Standard_Real >()  , py::arg("S"),  py::arg("Ta")=static_cast<const Standard_Real>(1.0e-2) )
    // custom constructors
    // methods
        .def("Add",
             (void (ChFi3d_ChBuilder::*)( const TopoDS_Edge &  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const TopoDS_Edge &  ) >(&ChFi3d_ChBuilder::Add),
             R"#(initializes a contour with the edge <E> as first (the next are found by propagation ). The two distances (parameters of the chamfer) must be set after. if the edge <E> has more than 2 adjacent faces)#"  , py::arg("E")
          )
        .def("Add",
             (void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const TopoDS_Edge &  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const TopoDS_Edge &  ) >(&ChFi3d_ChBuilder::Add),
             R"#(initializes a new contour with the edge <E> as first (the next are found by propagation ), and the distance <Dis> if the edge <E> has more than 2 adjacent faces)#"  , py::arg("Dis"),  py::arg("E")
          )
        .def("SetDist",
             (void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Integer ,  const TopoDS_Face &  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Integer ,  const TopoDS_Face &  ) >(&ChFi3d_ChBuilder::SetDist),
             R"#(set the distance <Dis> of the fillet contour of index <IC> in the DS with <Dis> on <F>. if the face <F> is not one of common faces of an edge of the contour <IC>)#"  , py::arg("Dis"),  py::arg("IC"),  py::arg("F")
          )
        .def("Add",
             (void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const TopoDS_Edge & ,  const TopoDS_Face &  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const TopoDS_Edge & ,  const TopoDS_Face &  ) >(&ChFi3d_ChBuilder::Add),
             R"#(initializes a new contour with the edge <E> as first (the next are found by propagation ), and the distance <Dis1> and <Dis2> if the edge <E> has more than 2 adjacent faces)#"  , py::arg("Dis1"),  py::arg("Dis2"),  py::arg("E"),  py::arg("F")
          )
        .def("SetDists",
             (void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Integer ,  const TopoDS_Face &  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Integer ,  const TopoDS_Face &  ) >(&ChFi3d_ChBuilder::SetDists),
             R"#(set the distances <Dis1> and <Dis2> of the fillet contour of index <IC> in the DS with <Dis1> on <F>. if the face <F> is not one of common faces of an edge of the contour <IC>)#"  , py::arg("Dis1"),  py::arg("Dis2"),  py::arg("IC"),  py::arg("F")
          )
        .def("AddDA",
             (void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const TopoDS_Edge & ,  const TopoDS_Face &  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const TopoDS_Edge & ,  const TopoDS_Face &  ) >(&ChFi3d_ChBuilder::AddDA),
             R"#(initializes a new contour with the edge <E> as first (the next are found by propagation ), and the distance <Dis1> and <Angle> if the edge <E> has more than 2 adjacent faces)#"  , py::arg("Dis"),  py::arg("Angle"),  py::arg("E"),  py::arg("F")
          )
        .def("SetDistAngle",
             (void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Integer ,  const TopoDS_Face &  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Real ,  const Standard_Real ,  const Standard_Integer ,  const TopoDS_Face &  ) >(&ChFi3d_ChBuilder::SetDistAngle),
             R"#(set the distance <Dis> and <Angle> of the fillet contour of index <IC> in the DS with <Dis> on <F>. if the face <F> is not one of common faces of an edge of the contour <IC>)#"  , py::arg("Dis"),  py::arg("Angle"),  py::arg("IC"),  py::arg("F")
          )
        .def("SetMode",
             (void (ChFi3d_ChBuilder::*)( const ChFiDS_ChamfMode  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const ChFiDS_ChamfMode  ) >(&ChFi3d_ChBuilder::SetMode),
             R"#(set the mode of shamfer)#"  , py::arg("theMode")
          )
        .def("IsChamfer",
             (ChFiDS_ChamfMethod (ChFi3d_ChBuilder::*)( const Standard_Integer  ) const) static_cast<ChFiDS_ChamfMethod (ChFi3d_ChBuilder::*)( const Standard_Integer  ) const>(&ChFi3d_ChBuilder::IsChamfer),
             R"#(renvoi la methode des chanfreins utilisee)#"  , py::arg("IC")
          )
        .def("Mode",
             (ChFiDS_ChamfMode (ChFi3d_ChBuilder::*)() const) static_cast<ChFiDS_ChamfMode (ChFi3d_ChBuilder::*)() const>(&ChFi3d_ChBuilder::Mode),
             R"#(returns the mode of chamfer used)#" 
          )
        .def("ResetContour",
             (void (ChFi3d_ChBuilder::*)( const Standard_Integer  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Integer  ) >(&ChFi3d_ChBuilder::ResetContour),
             R"#(Reset tous rayons du contour IC.)#"  , py::arg("IC")
          )
        .def("Simulate",
             (void (ChFi3d_ChBuilder::*)( const Standard_Integer  ) ) static_cast<void (ChFi3d_ChBuilder::*)( const Standard_Integer  ) >(&ChFi3d_ChBuilder::Simulate),
             R"#(None)#"  , py::arg("IC")
          )
        .def("NbSurf",
             (Standard_Integer (ChFi3d_ChBuilder::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (ChFi3d_ChBuilder::*)( const Standard_Integer  ) const>(&ChFi3d_ChBuilder::NbSurf),
             R"#(None)#"  , py::arg("IC")
          )
        .def("Sect",
             (opencascade::handle<ChFiDS_SecHArray1> (ChFi3d_ChBuilder::*)( const Standard_Integer ,  const Standard_Integer  ) const) static_cast<opencascade::handle<ChFiDS_SecHArray1> (ChFi3d_ChBuilder::*)( const Standard_Integer ,  const Standard_Integer  ) const>(&ChFi3d_ChBuilder::Sect),
             R"#(None)#"  , py::arg("IC"),  py::arg("IS")
          )
        .def("PerformSurf",
             (Standard_Boolean (ChFi3d_ChBuilder::*)( NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & ,  const opencascade::handle<ChFiDS_ElSpine> & ,  const opencascade::handle<ChFiDS_Spine> & ,  const Standard_Integer ,  const opencascade::handle<BRepAdaptor_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<BRepAdaptor_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  Standard_Real & ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,   const math_VectorBase<double> & ,  Standard_Integer & ,  Standard_Integer &  ) ) static_cast<Standard_Boolean (ChFi3d_ChBuilder::*)( NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & ,  const opencascade::handle<ChFiDS_ElSpine> & ,  const opencascade::handle<ChFiDS_Spine> & ,  const Standard_Integer ,  const opencascade::handle<BRepAdaptor_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const opencascade::handle<BRepAdaptor_Surface> & ,  const opencascade::handle<Adaptor3d_TopolTool> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  Standard_Real & ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,  const Standard_Boolean ,   const math_VectorBase<double> & ,  Standard_Integer & ,  Standard_Integer &  ) >(&ChFi3d_ChBuilder::PerformSurf),
             R"#(Methode, implemented in inheritants, calculates the elements of construction of the surface (fillet or chamfer).)#"  , py::arg("Data"),  py::arg("Guide"),  py::arg("Spine"),  py::arg("Choix"),  py::arg("S1"),  py::arg("I1"),  py::arg("S2"),  py::arg("I2"),  py::arg("MaxStep"),  py::arg("Fleche"),  py::arg("TolGuide"),  py::arg("First"),  py::arg("Last"),  py::arg("Inside"),  py::arg("Appro"),  py::arg("Forward"),  py::arg("RecOnS1"),  py::arg("RecOnS2"),  py::arg("Soldep"),  py::arg("Intf"),  py::arg("Intl")
          )
    // methods using call by reference i.s.o. return
        .def("GetDist",
             []( ChFi3d_ChBuilder &self , const Standard_Integer IC ){
                 Standard_Real  Dis;

                 self.GetDist(IC,Dis);
                 
                 return std::make_tuple(Dis); },
             R"#(gives the distances <Dis> of the fillet contour of index <IC> in the DS)#"  , py::arg("IC")
          )
        .def("Dists",
             []( ChFi3d_ChBuilder &self , const Standard_Integer IC ){
                 Standard_Real  Dis1;
                Standard_Real  Dis2;

                 self.Dists(IC,Dis1,Dis2);
                 
                 return std::make_tuple(Dis1,Dis2); },
             R"#(gives the distances <Dis1> and <Dis2> of the fillet contour of index <IC> in the DS)#"  , py::arg("IC")
          )
        .def("GetDistAngle",
             []( ChFi3d_ChBuilder &self , const Standard_Integer IC ){
                 Standard_Real  Dis;
                Standard_Real  Angle;

                 self.GetDistAngle(IC,Dis,Angle);
                 
                 return std::make_tuple(Dis,Angle); },
             R"#(gives the distances <Dis> and <Angle> of the fillet contour of index <IC> in the DS)#"  , py::arg("IC")
          )
        .def("SimulSurf",
             []( ChFi3d_ChBuilder &self , ChFiDS_SurfData& Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const opencascade::handle<BRepAdaptor_Curve2d> & PC1,const opencascade::handle<BRepAdaptor_Surface> & Sref1,const opencascade::handle<BRepAdaptor_Curve2d> & PCref1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const TopAbs_Orientation Or2,const Standard_Real Fleche,const Standard_Real TolGuide,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecP,const Standard_Boolean RecS,const Standard_Boolean RecRst, const math_VectorBase<double> & Soldep ){
                 Standard_Boolean  Decroch1;
                Standard_Real  First;
                Standard_Real  Last;
                opencascade::handle<ChFiDS_SurfData>  Data_ptr; Data_ptr = &Data;

                 self.SimulSurf(Data_ptr,Guide,Spine,Choix,S1,I1,PC1,Sref1,PCref1,Decroch1,S2,I2,Or2,Fleche,TolGuide,First,Last,Inside,Appro,Forward,RecP,RecS,RecRst,Soldep);
                 if ( Data_ptr.get() != &Data ) copy_if_copy_constructible(Data, *Data_ptr);

                 return std::make_tuple(Decroch1,First,Last); },
             R"#(None)#"  , py::arg("Data"),  py::arg("Guide"),  py::arg("Spine"),  py::arg("Choix"),  py::arg("S1"),  py::arg("I1"),  py::arg("PC1"),  py::arg("Sref1"),  py::arg("PCref1"),  py::arg("S2"),  py::arg("I2"),  py::arg("Or2"),  py::arg("Fleche"),  py::arg("TolGuide"),  py::arg("Inside"),  py::arg("Appro"),  py::arg("Forward"),  py::arg("RecP"),  py::arg("RecS"),  py::arg("RecRst"),  py::arg("Soldep")
          )
        .def("SimulSurf",
             []( ChFi3d_ChBuilder &self , ChFiDS_SurfData& Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const TopAbs_Orientation Or1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const opencascade::handle<BRepAdaptor_Curve2d> & PC2,const opencascade::handle<BRepAdaptor_Surface> & Sref2,const opencascade::handle<BRepAdaptor_Curve2d> & PCref2,const Standard_Real Fleche,const Standard_Real TolGuide,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecP,const Standard_Boolean RecS,const Standard_Boolean RecRst, const math_VectorBase<double> & Soldep ){
                 Standard_Boolean  Decroch2;
                Standard_Real  First;
                Standard_Real  Last;
                opencascade::handle<ChFiDS_SurfData>  Data_ptr; Data_ptr = &Data;

                 self.SimulSurf(Data_ptr,Guide,Spine,Choix,S1,I1,Or1,S2,I2,PC2,Sref2,PCref2,Decroch2,Fleche,TolGuide,First,Last,Inside,Appro,Forward,RecP,RecS,RecRst,Soldep);
                 if ( Data_ptr.get() != &Data ) copy_if_copy_constructible(Data, *Data_ptr);

                 return std::make_tuple(Decroch2,First,Last); },
             R"#(None)#"  , py::arg("Data"),  py::arg("Guide"),  py::arg("Spine"),  py::arg("Choix"),  py::arg("S1"),  py::arg("I1"),  py::arg("Or1"),  py::arg("S2"),  py::arg("I2"),  py::arg("PC2"),  py::arg("Sref2"),  py::arg("PCref2"),  py::arg("Fleche"),  py::arg("TolGuide"),  py::arg("Inside"),  py::arg("Appro"),  py::arg("Forward"),  py::arg("RecP"),  py::arg("RecS"),  py::arg("RecRst"),  py::arg("Soldep")
          )
        .def("SimulSurf",
             []( ChFi3d_ChBuilder &self , ChFiDS_SurfData& Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const opencascade::handle<BRepAdaptor_Curve2d> & PC1,const opencascade::handle<BRepAdaptor_Surface> & Sref1,const opencascade::handle<BRepAdaptor_Curve2d> & PCref1,const TopAbs_Orientation Or1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const opencascade::handle<BRepAdaptor_Curve2d> & PC2,const opencascade::handle<BRepAdaptor_Surface> & Sref2,const opencascade::handle<BRepAdaptor_Curve2d> & PCref2,const TopAbs_Orientation Or2,const Standard_Real Fleche,const Standard_Real TolGuide,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecP1,const Standard_Boolean RecRst1,const Standard_Boolean RecP2,const Standard_Boolean RecRst2, const math_VectorBase<double> & Soldep ){
                 Standard_Boolean  Decroch1;
                Standard_Boolean  Decroch2;
                Standard_Real  First;
                Standard_Real  Last;
                opencascade::handle<ChFiDS_SurfData>  Data_ptr; Data_ptr = &Data;

                 self.SimulSurf(Data_ptr,Guide,Spine,Choix,S1,I1,PC1,Sref1,PCref1,Decroch1,Or1,S2,I2,PC2,Sref2,PCref2,Decroch2,Or2,Fleche,TolGuide,First,Last,Inside,Appro,Forward,RecP1,RecRst1,RecP2,RecRst2,Soldep);
                 if ( Data_ptr.get() != &Data ) copy_if_copy_constructible(Data, *Data_ptr);

                 return std::make_tuple(Decroch1,Decroch2,First,Last); },
             R"#(None)#"  , py::arg("Data"),  py::arg("Guide"),  py::arg("Spine"),  py::arg("Choix"),  py::arg("S1"),  py::arg("I1"),  py::arg("PC1"),  py::arg("Sref1"),  py::arg("PCref1"),  py::arg("Or1"),  py::arg("S2"),  py::arg("I2"),  py::arg("PC2"),  py::arg("Sref2"),  py::arg("PCref2"),  py::arg("Or2"),  py::arg("Fleche"),  py::arg("TolGuide"),  py::arg("Inside"),  py::arg("Appro"),  py::arg("Forward"),  py::arg("RecP1"),  py::arg("RecRst1"),  py::arg("RecP2"),  py::arg("RecRst2"),  py::arg("Soldep")
          )
        .def("PerformSurf",
             []( ChFi3d_ChBuilder &self , NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const opencascade::handle<BRepAdaptor_Curve2d> & PC1,const opencascade::handle<BRepAdaptor_Surface> & Sref1,const opencascade::handle<BRepAdaptor_Curve2d> & PCref1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const TopAbs_Orientation Or2,const Standard_Real MaxStep,const Standard_Real Fleche,const Standard_Real TolGuide,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecP,const Standard_Boolean RecS,const Standard_Boolean RecRst, const math_VectorBase<double> & Soldep ){
                 Standard_Boolean  Decroch1;
                Standard_Real  First;
                Standard_Real  Last;

                 self.PerformSurf(Data,Guide,Spine,Choix,S1,I1,PC1,Sref1,PCref1,Decroch1,S2,I2,Or2,MaxStep,Fleche,TolGuide,First,Last,Inside,Appro,Forward,RecP,RecS,RecRst,Soldep);
                 
                 return std::make_tuple(Decroch1,First,Last); },
             R"#(Method, implemented in the inheritants, calculates the elements of construction of the surface (fillet or chamfer) contact edge/face.)#"  , py::arg("Data"),  py::arg("Guide"),  py::arg("Spine"),  py::arg("Choix"),  py::arg("S1"),  py::arg("I1"),  py::arg("PC1"),  py::arg("Sref1"),  py::arg("PCref1"),  py::arg("S2"),  py::arg("I2"),  py::arg("Or2"),  py::arg("MaxStep"),  py::arg("Fleche"),  py::arg("TolGuide"),  py::arg("Inside"),  py::arg("Appro"),  py::arg("Forward"),  py::arg("RecP"),  py::arg("RecS"),  py::arg("RecRst"),  py::arg("Soldep")
          )
        .def("PerformSurf",
             []( ChFi3d_ChBuilder &self , NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const TopAbs_Orientation Or1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const opencascade::handle<BRepAdaptor_Curve2d> & PC2,const opencascade::handle<BRepAdaptor_Surface> & Sref2,const opencascade::handle<BRepAdaptor_Curve2d> & PCref2,const Standard_Real MaxStep,const Standard_Real Fleche,const Standard_Real TolGuide,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecP,const Standard_Boolean RecS,const Standard_Boolean RecRst, const math_VectorBase<double> & Soldep ){
                 Standard_Boolean  Decroch2;
                Standard_Real  First;
                Standard_Real  Last;

                 self.PerformSurf(Data,Guide,Spine,Choix,S1,I1,Or1,S2,I2,PC2,Sref2,PCref2,Decroch2,MaxStep,Fleche,TolGuide,First,Last,Inside,Appro,Forward,RecP,RecS,RecRst,Soldep);
                 
                 return std::make_tuple(Decroch2,First,Last); },
             R"#(Method, implemented in inheritants, calculates the elements of construction of the surface (fillet or chamfer) contact edge/face.)#"  , py::arg("Data"),  py::arg("Guide"),  py::arg("Spine"),  py::arg("Choix"),  py::arg("S1"),  py::arg("I1"),  py::arg("Or1"),  py::arg("S2"),  py::arg("I2"),  py::arg("PC2"),  py::arg("Sref2"),  py::arg("PCref2"),  py::arg("MaxStep"),  py::arg("Fleche"),  py::arg("TolGuide"),  py::arg("Inside"),  py::arg("Appro"),  py::arg("Forward"),  py::arg("RecP"),  py::arg("RecS"),  py::arg("RecRst"),  py::arg("Soldep")
          )
        .def("PerformSurf",
             []( ChFi3d_ChBuilder &self , NCollection_Sequence<opencascade::handle<ChFiDS_SurfData>> & Data,const opencascade::handle<ChFiDS_ElSpine> & Guide,const opencascade::handle<ChFiDS_Spine> & Spine,const Standard_Integer Choix,const opencascade::handle<BRepAdaptor_Surface> & S1,const opencascade::handle<Adaptor3d_TopolTool> & I1,const opencascade::handle<BRepAdaptor_Curve2d> & PC1,const opencascade::handle<BRepAdaptor_Surface> & Sref1,const opencascade::handle<BRepAdaptor_Curve2d> & PCref1,const TopAbs_Orientation Or1,const opencascade::handle<BRepAdaptor_Surface> & S2,const opencascade::handle<Adaptor3d_TopolTool> & I2,const opencascade::handle<BRepAdaptor_Curve2d> & PC2,const opencascade::handle<BRepAdaptor_Surface> & Sref2,const opencascade::handle<BRepAdaptor_Curve2d> & PCref2,const TopAbs_Orientation Or2,const Standard_Real MaxStep,const Standard_Real Fleche,const Standard_Real TolGuide,const Standard_Boolean Inside,const Standard_Boolean Appro,const Standard_Boolean Forward,const Standard_Boolean RecP1,const Standard_Boolean RecRst1,const Standard_Boolean RecP2,const Standard_Boolean RecRst2, const math_VectorBase<double> & Soldep ){
                 Standard_Boolean  Decroch1;
                Standard_Boolean  Decroch2;
                Standard_Real  First;
                Standard_Real  Last;

                 self.PerformSurf(Data,Guide,Spine,Choix,S1,I1,PC1,Sref1,PCref1,Decroch1,Or1,S2,I2,PC2,Sref2,PCref2,Decroch2,Or2,MaxStep,Fleche,TolGuide,First,Last,Inside,Appro,Forward,RecP1,RecRst1,RecP2,RecRst2,Soldep);
                 
                 return std::make_tuple(Decroch1,Decroch2,First,Last); },
             R"#(Method, implemented in inheritants, calculates the elements of construction of the surface (fillet or chamfer) contact edge/edge.)#"  , py::arg("Data"),  py::arg("Guide"),  py::arg("Spine"),  py::arg("Choix"),  py::arg("S1"),  py::arg("I1"),  py::arg("PC1"),  py::arg("Sref1"),  py::arg("PCref1"),  py::arg("Or1"),  py::arg("S2"),  py::arg("I2"),  py::arg("PC2"),  py::arg("Sref2"),  py::arg("PCref2"),  py::arg("Or2"),  py::arg("MaxStep"),  py::arg("Fleche"),  py::arg("TolGuide"),  py::arg("Inside"),  py::arg("Appro"),  py::arg("Forward"),  py::arg("RecP1"),  py::arg("RecRst1"),  py::arg("RecP2"),  py::arg("RecRst2"),  py::arg("Soldep")
          )
    // 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 ChFi3d_FilBuilder from ./opencascade/ChFi3d_FilBuilder.hxx
    klass = m.attr("ChFi3d_FilBuilder");


    // nested enums

    static_cast<py::class_<ChFi3d_FilBuilder , shared_ptr<ChFi3d_FilBuilder>  , ChFi3d_Builder >>(klass)
    // constructors
        .def(py::init< const TopoDS_Shape &,const ChFi3d_FilletShape,const Standard_Real >()  , py::arg("S"),  py::arg("FShape")=static_cast<const ChFi3d_FilletShape>(ChFi3d_Rational),  py::arg("Ta")=static_cast<const Standard_Real>(1.0e-2) )
    // custom constructors
    // methods
        .def("SetFilletShape",
             (void (ChFi3d_FilBuilder::*)( const ChFi3d_FilletShape  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const ChFi3d_FilletShape  ) >(&ChFi3d_FilBuilder::SetFilletShape),
             R"#(Sets the type of fillet surface.)#"  , py::arg("FShape")
          )
        .def("GetFilletShape",
             (ChFi3d_FilletShape (ChFi3d_FilBuilder::*)() const) static_cast<ChFi3d_FilletShape (ChFi3d_FilBuilder::*)() const>(&ChFi3d_FilBuilder::GetFilletShape),
             R"#(Returns the type of fillet surface.)#" 
          )
        .def("Add",
             (void (ChFi3d_FilBuilder::*)( const TopoDS_Edge &  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const TopoDS_Edge &  ) >(&ChFi3d_FilBuilder::Add),
             R"#(initialisation of a contour with the first edge (the following are found by propagation). Attention, you need to start with SetRadius.)#"  , py::arg("E")
          )
        .def("Add",
             (void (ChFi3d_FilBuilder::*)( const Standard_Real ,  const TopoDS_Edge &  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Real ,  const TopoDS_Edge &  ) >(&ChFi3d_FilBuilder::Add),
             R"#(initialisation of the constant vector the corresponding 1st edge.)#"  , py::arg("Radius"),  py::arg("E")
          )
        .def("SetRadius",
             (void (ChFi3d_FilBuilder::*)( const opencascade::handle<Law_Function> & ,  const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const opencascade::handle<Law_Function> & ,  const Standard_Integer ,  const Standard_Integer  ) >(&ChFi3d_FilBuilder::SetRadius),
             R"#(Set the radius of the contour of index IC.)#"  , py::arg("C"),  py::arg("IC"),  py::arg("IinC")
          )
        .def("IsConstant",
             (Standard_Boolean (ChFi3d_FilBuilder::*)( const Standard_Integer  ) ) static_cast<Standard_Boolean (ChFi3d_FilBuilder::*)( const Standard_Integer  ) >(&ChFi3d_FilBuilder::IsConstant),
             R"#(Returns true the contour is flagged as edge constant.)#"  , py::arg("IC")
          )
        .def("Radius",
             (Standard_Real (ChFi3d_FilBuilder::*)( const Standard_Integer  ) ) static_cast<Standard_Real (ChFi3d_FilBuilder::*)( const Standard_Integer  ) >(&ChFi3d_FilBuilder::Radius),
             R"#(Returns the vector if the contour is flagged as edge constant.)#"  , py::arg("IC")
          )
        .def("ResetContour",
             (void (ChFi3d_FilBuilder::*)( const Standard_Integer  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Integer  ) >(&ChFi3d_FilBuilder::ResetContour),
             R"#(Reset all vectors of contour IC.)#"  , py::arg("IC")
          )
        .def("SetRadius",
             (void (ChFi3d_FilBuilder::*)( const Standard_Real ,  const Standard_Integer ,  const TopoDS_Edge &  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Real ,  const Standard_Integer ,  const TopoDS_Edge &  ) >(&ChFi3d_FilBuilder::SetRadius),
             R"#(Set a constant on edge E of the contour of index IC. Since then E is flagged as constant.)#"  , py::arg("Radius"),  py::arg("IC"),  py::arg("E")
          )
        .def("UnSet",
             (void (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) >(&ChFi3d_FilBuilder::UnSet),
             R"#(Extracts the flag constant and the vector of edge E.)#"  , py::arg("IC"),  py::arg("E")
          )
        .def("SetRadius",
             (void (ChFi3d_FilBuilder::*)( const Standard_Real ,  const Standard_Integer ,  const TopoDS_Vertex &  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Real ,  const Standard_Integer ,  const TopoDS_Vertex &  ) >(&ChFi3d_FilBuilder::SetRadius),
             R"#(Set a vector on vertex V of the contour of index IC.)#"  , py::arg("Radius"),  py::arg("IC"),  py::arg("V")
          )
        .def("UnSet",
             (void (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Vertex &  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Vertex &  ) >(&ChFi3d_FilBuilder::UnSet),
             R"#(Extracts the vector of the vertex V.)#"  , py::arg("IC"),  py::arg("V")
          )
        .def("SetRadius",
             (void (ChFi3d_FilBuilder::*)( const gp_XY & ,  const Standard_Integer ,  const Standard_Integer  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const gp_XY & ,  const Standard_Integer ,  const Standard_Integer  ) >(&ChFi3d_FilBuilder::SetRadius),
             R"#(Set a vertex on the point of parametre U in the edge IinC of the contour of index IC)#"  , py::arg("UandR"),  py::arg("IC"),  py::arg("IinC")
          )
        .def("IsConstant",
             (Standard_Boolean (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) ) static_cast<Standard_Boolean (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) >(&ChFi3d_FilBuilder::IsConstant),
             R"#(Returns true E is flagged as edge constant.)#"  , py::arg("IC"),  py::arg("E")
          )
        .def("Radius",
             (Standard_Real (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) ) static_cast<Standard_Real (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) >(&ChFi3d_FilBuilder::Radius),
             R"#(Returns the vector if E is flagged as edge constant.)#"  , py::arg("IC"),  py::arg("E")
          )
        .def("GetBounds",
             (Standard_Boolean (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge & ,  Standard_Real & ,  Standard_Real &  ) ) static_cast<Standard_Boolean (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge & ,  Standard_Real & ,  Standard_Real &  ) >(&ChFi3d_FilBuilder::GetBounds),
             R"#(Returns in First and Last les extremities of the part of variable vector framing E, returns False if E is flagged as edge constant.)#"  , py::arg("IC"),  py::arg("E"),  py::arg("First"),  py::arg("Last")
          )
        .def("GetLaw",
             (opencascade::handle<Law_Function> (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) ) static_cast<opencascade::handle<Law_Function> (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge &  ) >(&ChFi3d_FilBuilder::GetLaw),
             R"#(Returns the rule of elementary evolution of the part to variable vector framing E, returns a rule zero if E is flagged as edge constant.)#"  , py::arg("IC"),  py::arg("E")
          )
        .def("SetLaw",
             (void (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge & ,  const opencascade::handle<Law_Function> &  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const TopoDS_Edge & ,  const opencascade::handle<Law_Function> &  ) >(&ChFi3d_FilBuilder::SetLaw),
             R"#(Sets the rule of elementary evolution of the part to variable vector framing E.)#"  , py::arg("IC"),  py::arg("E"),  py::arg("L")
          )
        .def("Simulate",
             (void (ChFi3d_FilBuilder::*)( const Standard_Integer  ) ) static_cast<void (ChFi3d_FilBuilder::*)( const Standard_Integer  ) >(&ChFi3d_FilBuilder::Simulate),
             R"#(None)#"  , py::arg("IC")
          )
        .def("NbSurf",
             (Standard_Integer (ChFi3d_FilBuilder::*)( const Standard_Integer  ) const) static_cast<Standard_Integer (ChFi3d_FilBuilder::*)( const Standard_Integer  ) const>(&ChFi3d_FilBuilder::NbSurf),
             R"#(None)#"  , py::arg("IC")
          )
        .def("Sect",
             (opencascade::handle<ChFiDS_SecHArray1> (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const Standard_Integer  ) const) static_cast<opencascade::handle<ChFiDS_SecHArray1> (ChFi3d_FilBuilder::*)( const Standard_Integer ,  const Standard_Integer  ) const>(&ChFi3d_FilBuilder::Sect),
             R"#(None)#"  , py::arg("IC"),  py::arg("IS")
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

// functions
// ./opencascade/ChFi3d.hxx
// ./opencascade/ChFi3d_Builder.hxx
// ./opencascade/ChFi3d_Builder_0.hxx
    m.def("ChFi3d_EnlargeBox",
          (void (*)( const opencascade::handle<Geom_Curve> & ,  const Standard_Real ,  const Standard_Real ,  Bnd_Box & ,  Bnd_Box &  ))  static_cast<void (*)( const opencascade::handle<Geom_Curve> & ,  const Standard_Real ,  const Standard_Real ,  Bnd_Box & ,  Bnd_Box &  )>(&ChFi3d_EnlargeBox),
          R"#(None)#"  , py::arg("C"),  py::arg("wd"),  py::arg("wf"),  py::arg("box1"),  py::arg("box2")
          );
    m.def("ChFi3d_EnlargeBox",
          (void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  Bnd_Box & ,  Bnd_Box &  ))  static_cast<void (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  Bnd_Box & ,  Bnd_Box &  )>(&ChFi3d_EnlargeBox),
          R"#(None)#"  , py::arg("S"),  py::arg("PC"),  py::arg("wd"),  py::arg("wf"),  py::arg("box1"),  py::arg("box2")
          );
    m.def("ChFi3d_EnlargeBox",
          (void (*)( const TopoDS_Edge & ,   const NCollection_List<TopoDS_Shape> & ,  const Standard_Real ,  Bnd_Box &  ))  static_cast<void (*)( const TopoDS_Edge & ,   const NCollection_List<TopoDS_Shape> & ,  const Standard_Real ,  Bnd_Box &  )>(&ChFi3d_EnlargeBox),
          R"#(None)#"  , py::arg("E"),  py::arg("LF"),  py::arg("w"),  py::arg("box")
          );
    m.def("ChFi3d_EnlargeBox",
          (void (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_SurfData> & ,  Bnd_Box & ,  Bnd_Box & ,  const Standard_Boolean  ))  static_cast<void (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_SurfData> & ,  Bnd_Box & ,  Bnd_Box & ,  const Standard_Boolean  )>(&ChFi3d_EnlargeBox),
          R"#(None)#"  , py::arg("DStr"),  py::arg("st"),  py::arg("sd"),  py::arg("b1"),  py::arg("b2"),  py::arg("isfirst")
          );
    m.def("ChFi3d_evalconti",
          (GeomAbs_Shape (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const TopoDS_Face &  ))  static_cast<GeomAbs_Shape (*)( const TopoDS_Edge & ,  const TopoDS_Face & ,  const TopoDS_Face &  )>(&ChFi3d_evalconti),
          R"#(None)#"  , py::arg("E"),  py::arg("F1"),  py::arg("F2")
          );
    m.def("ChFi3d_conexfaces",
          (void (*)( const TopoDS_Edge & ,  TopoDS_Face & ,  TopoDS_Face & ,  const ChFiDS_Map &  ))  static_cast<void (*)( const TopoDS_Edge & ,  TopoDS_Face & ,  TopoDS_Face & ,  const ChFiDS_Map &  )>(&ChFi3d_conexfaces),
          R"#(None)#"  , py::arg("E"),  py::arg("F1"),  py::arg("F2"),  py::arg("EFMap")
          );
    m.def("ChFi3d_EdgeState",
          (ChFiDS_State (*)( TopoDS_Edge * ,  const ChFiDS_Map &  ))  static_cast<ChFiDS_State (*)( TopoDS_Edge * ,  const ChFiDS_Map &  )>(&ChFi3d_EdgeState),
          R"#(None)#"  , py::arg("E"),  py::arg("EFMap")
          );
    m.def("ChFi3d_KParticular",
          (Standard_Boolean (*)( const opencascade::handle<ChFiDS_Spine> & ,  const Standard_Integer ,  const BRepAdaptor_Surface & ,  const BRepAdaptor_Surface &  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<ChFiDS_Spine> & ,  const Standard_Integer ,  const BRepAdaptor_Surface & ,  const BRepAdaptor_Surface &  )>(&ChFi3d_KParticular),
          R"#(None)#"  , py::arg("Spine"),  py::arg("IE"),  py::arg("S1"),  py::arg("S2")
          );
    m.def("ChFi3d_BoundFac",
          (void (*)( BRepAdaptor_Surface & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<void (*)( BRepAdaptor_Surface & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_BoundFac),
          R"#(None)#"  , py::arg("S"),  py::arg("umin"),  py::arg("umax"),  py::arg("vmin"),  py::arg("vmax"),  py::arg("checknaturalbounds")=static_cast<const Standard_Boolean>(Standard_True)
          );
    m.def("ChFi3d_BoundSrf",
          (void (*)( GeomAdaptor_Surface & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<void (*)( GeomAdaptor_Surface & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_BoundSrf),
          R"#(None)#"  , py::arg("S"),  py::arg("umin"),  py::arg("umax"),  py::arg("vmin"),  py::arg("vmax"),  py::arg("checknaturalbounds")=static_cast<const Standard_Boolean>(Standard_True)
          );
    m.def("ChFi3d_InterPlaneEdge",
          (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Curve> & ,  Standard_Real & ,  const Standard_Boolean ,  const Standard_Real  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Curve> & ,  Standard_Real & ,  const Standard_Boolean ,  const Standard_Real  )>(&ChFi3d_InterPlaneEdge),
          R"#(None)#"  , py::arg("Plan"),  py::arg("C"),  py::arg("W"),  py::arg("Sens"),  py::arg("tolc")
          );
    m.def("ChFi3d_ExtrSpineCarac",
          (void (*)( const TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Integer ,  const Standard_Integer ,  gp_Pnt & ,  gp_Vec & ,  Standard_Real &  ))  static_cast<void (*)( const TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Integer ,  const Standard_Integer ,  gp_Pnt & ,  gp_Vec & ,  Standard_Real &  )>(&ChFi3d_ExtrSpineCarac),
          R"#(None)#"  , py::arg("DStr"),  py::arg("cd"),  py::arg("i"),  py::arg("p"),  py::arg("jf"),  py::arg("sens"),  py::arg("P"),  py::arg("V"),  py::arg("R")
          );
    m.def("ChFi3d_CircularSpine",
          (opencascade::handle<Geom_Circle> (*)( Standard_Real & ,  Standard_Real & ,  const gp_Pnt & ,  const gp_Vec & ,  const gp_Pnt & ,  const gp_Vec & ,  const Standard_Real  ))  static_cast<opencascade::handle<Geom_Circle> (*)( Standard_Real & ,  Standard_Real & ,  const gp_Pnt & ,  const gp_Vec & ,  const gp_Pnt & ,  const gp_Vec & ,  const Standard_Real  )>(&ChFi3d_CircularSpine),
          R"#(None)#"  , py::arg("WFirst"),  py::arg("WLast"),  py::arg("Pdeb"),  py::arg("Vdeb"),  py::arg("Pfin"),  py::arg("Vfin"),  py::arg("rad")
          );
    m.def("ChFi3d_Spine",
          (opencascade::handle<Geom_BezierCurve> (*)( const gp_Pnt & ,  gp_Vec & ,  const gp_Pnt & ,  gp_Vec & ,  const Standard_Real  ))  static_cast<opencascade::handle<Geom_BezierCurve> (*)( const gp_Pnt & ,  gp_Vec & ,  const gp_Pnt & ,  gp_Vec & ,  const Standard_Real  )>(&ChFi3d_Spine),
          R"#(None)#"  , py::arg("pd"),  py::arg("vd"),  py::arg("pf"),  py::arg("vf"),  py::arg("R")
          );
    m.def("ChFi3d_mkbound",
          (opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Integer ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const Standard_Integer ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const Standard_Real ,  const Standard_Real  ))  static_cast<opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Integer ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const Standard_Integer ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const Standard_Real ,  const Standard_Real  )>(&ChFi3d_mkbound),
          R"#(None)#"  , py::arg("Fac"),  py::arg("curv"),  py::arg("sens1"),  py::arg("pfac1"),  py::arg("vfac1"),  py::arg("sens2"),  py::arg("pfac2"),  py::arg("vfac2"),  py::arg("t3d"),  py::arg("ta")
          );
    m.def("ChFi3d_mkbound",
          (opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Integer ,  const gp_Pnt2d & ,  gp_Vec & ,  const Standard_Integer ,  const gp_Pnt2d & ,  gp_Vec & ,  const Standard_Real ,  const Standard_Real  ))  static_cast<opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Integer ,  const gp_Pnt2d & ,  gp_Vec & ,  const Standard_Integer ,  const gp_Pnt2d & ,  gp_Vec & ,  const Standard_Real ,  const Standard_Real  )>(&ChFi3d_mkbound),
          R"#(None)#"  , py::arg("Surf"),  py::arg("curv"),  py::arg("sens1"),  py::arg("p1"),  py::arg("v1"),  py::arg("sens2"),  py::arg("p2"),  py::arg("v2"),  py::arg("t3d"),  py::arg("ta")
          );
    m.def("ChFi3d_mkbound",
          (opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Geom_Surface> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Geom_Surface> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_mkbound),
          R"#(None)#"  , py::arg("s"),  py::arg("p1"),  py::arg("p2"),  py::arg("t3d"),  py::arg("ta"),  py::arg("isfreeboundary")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_mkbound",
          (opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_mkbound),
          R"#(None)#"  , py::arg("HS"),  py::arg("p1"),  py::arg("p2"),  py::arg("t3d"),  py::arg("ta"),  py::arg("isfreeboundary")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_mkbound",
          (opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_mkbound),
          R"#(None)#"  , py::arg("HS"),  py::arg("curv"),  py::arg("t3d"),  py::arg("ta"),  py::arg("isfreeboundary")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_mkbound",
          (opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<opencascade::handle<GeomFill_Boundary> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_mkbound),
          R"#(None)#"  , py::arg("Fac"),  py::arg("curv"),  py::arg("p1"),  py::arg("p2"),  py::arg("t3d"),  py::arg("ta"),  py::arg("isfreeboundary")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_Coefficient",
          (void (*)( const gp_Vec & ,  const gp_Vec & ,  const gp_Vec & ,  Standard_Real & ,  Standard_Real &  ))  static_cast<void (*)( const gp_Vec & ,  const gp_Vec & ,  const gp_Vec & ,  Standard_Real & ,  Standard_Real &  )>(&ChFi3d_Coefficient),
          R"#(None)#"  , py::arg("V3d"),  py::arg("D1u"),  py::arg("D1v"),  py::arg("DU"),  py::arg("DV")
          );
    m.def("ChFi3d_BuildPCurve",
          (opencascade::handle<Geom2d_Curve> (*)( const gp_Pnt2d & ,  gp_Dir2d & ,  const gp_Pnt2d & ,  gp_Dir2d & ,  const Standard_Boolean  ))  static_cast<opencascade::handle<Geom2d_Curve> (*)( const gp_Pnt2d & ,  gp_Dir2d & ,  const gp_Pnt2d & ,  gp_Dir2d & ,  const Standard_Boolean  )>(&ChFi3d_BuildPCurve),
          R"#(None)#"  , py::arg("p1"),  py::arg("d1"),  py::arg("p2"),  py::arg("d2"),  py::arg("redresse")=static_cast<const Standard_Boolean>(Standard_True)
          );
    m.def("ChFi3d_BuildPCurve",
          (opencascade::handle<Geom2d_Curve> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const gp_Pnt2d & ,  const gp_Vec & ,  const gp_Pnt2d & ,  const gp_Vec & ,  const Standard_Boolean  ))  static_cast<opencascade::handle<Geom2d_Curve> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const gp_Pnt2d & ,  const gp_Vec & ,  const gp_Pnt2d & ,  const gp_Vec & ,  const Standard_Boolean  )>(&ChFi3d_BuildPCurve),
          R"#(None)#"  , py::arg("Surf"),  py::arg("p1"),  py::arg("v1"),  py::arg("p2"),  py::arg("v2"),  py::arg("redresse")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_BuildPCurve",
          (opencascade::handle<Geom2d_Curve> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const Standard_Boolean  ))  static_cast<opencascade::handle<Geom2d_Curve> (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const gp_Pnt2d & ,  const gp_Vec2d & ,  const Standard_Boolean  )>(&ChFi3d_BuildPCurve),
          R"#(None)#"  , py::arg("Surf"),  py::arg("p1"),  py::arg("v1"),  py::arg("p2"),  py::arg("v2"),  py::arg("redresse")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_CheckSameParameter",
          (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  Standard_Real &  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  Standard_Real &  )>(&ChFi3d_CheckSameParameter),
          R"#(None)#"  , py::arg("C3d"),  py::arg("Pcurv"),  py::arg("S"),  py::arg("tol3d"),  py::arg("tolreached")
          );
    m.def("ChFi3d_SameParameter",
          (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  Standard_Real &  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  Standard_Real &  )>(&ChFi3d_SameParameter),
          R"#(None)#"  , py::arg("C3d"),  py::arg("Pcurv"),  py::arg("S"),  py::arg("tol3d"),  py::arg("tolreached")
          );
    m.def("ChFi3d_SameParameter",
          (Standard_Boolean (*)( const opencascade::handle<Geom_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Geom_Surface> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real &  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<Geom_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Geom_Surface> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real &  )>(&ChFi3d_SameParameter),
          R"#(None)#"  , py::arg("C3d"),  py::arg("Pcurv"),  py::arg("S"),  py::arg("Pardeb"),  py::arg("Parfin"),  py::arg("tol3d"),  py::arg("tolreached")
          );
    m.def("ChFi3d_ComputePCurv",
          (void (*)( const opencascade::handle<Geom_Curve> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Geom_Surface> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Boolean  ))  static_cast<void (*)( const opencascade::handle<Geom_Curve> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Geom_Surface> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Boolean  )>(&ChFi3d_ComputePCurv),
          R"#(None)#"  , py::arg("C3d"),  py::arg("UV1"),  py::arg("UV2"),  py::arg("Pcurv"),  py::arg("S"),  py::arg("Pardeb"),  py::arg("Parfin"),  py::arg("tol3d"),  py::arg("tolreached"),  py::arg("reverse")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_ComputePCurv",
          (void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Boolean  ))  static_cast<void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const gp_Pnt2d & ,  const gp_Pnt2d & ,  opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Boolean  )>(&ChFi3d_ComputePCurv),
          R"#(None)#"  , py::arg("C3d"),  py::arg("UV1"),  py::arg("UV2"),  py::arg("Pcurv"),  py::arg("S"),  py::arg("Pardeb"),  py::arg("Parfin"),  py::arg("tol3d"),  py::arg("tolreached"),  py::arg("reverse")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_ComputePCurv",
          (void (*)( const gp_Pnt2d & ,  const gp_Pnt2d & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<void (*)( const gp_Pnt2d & ,  const gp_Pnt2d & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_ComputePCurv),
          R"#(None)#"  , py::arg("UV1"),  py::arg("UV2"),  py::arg("Pcurv"),  py::arg("Pardeb"),  py::arg("Parfin"),  py::arg("reverse")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_IntTraces",
          (Standard_Boolean (*)( const opencascade::handle<ChFiDS_SurfData> & ,  const Standard_Real ,  Standard_Real & ,  const Standard_Integer ,  const Standard_Integer ,  const opencascade::handle<ChFiDS_SurfData> & ,  const Standard_Real ,  Standard_Real & ,  const Standard_Integer ,  const Standard_Integer ,  const gp_Pnt2d & ,  const Standard_Boolean ,  const Standard_Boolean  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<ChFiDS_SurfData> & ,  const Standard_Real ,  Standard_Real & ,  const Standard_Integer ,  const Standard_Integer ,  const opencascade::handle<ChFiDS_SurfData> & ,  const Standard_Real ,  Standard_Real & ,  const Standard_Integer ,  const Standard_Integer ,  const gp_Pnt2d & ,  const Standard_Boolean ,  const Standard_Boolean  )>(&ChFi3d_IntTraces),
          R"#(None)#"  , py::arg("fd1"),  py::arg("pref1"),  py::arg("p1"),  py::arg("jf1"),  py::arg("sens1"),  py::arg("fd2"),  py::arg("pref2"),  py::arg("p2"),  py::arg("jf2"),  py::arg("sens2"),  py::arg("RefP2d"),  py::arg("Check2dDistance")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("enlarge")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_IsInFront",
          (Standard_Boolean (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Real & ,  Standard_Real & ,  TopoDS_Face & ,  Standard_Boolean & ,  Standard_Integer & ,  Standard_Integer & ,  Standard_Boolean & ,  const TopoDS_Vertex & ,  const Standard_Boolean ,  const Standard_Boolean  ))  static_cast<Standard_Boolean (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Real & ,  Standard_Real & ,  TopoDS_Face & ,  Standard_Boolean & ,  Standard_Integer & ,  Standard_Integer & ,  Standard_Boolean & ,  const TopoDS_Vertex & ,  const Standard_Boolean ,  const Standard_Boolean  )>(&ChFi3d_IsInFront),
          R"#(None)#"  , py::arg("DStr"),  py::arg("cd1"),  py::arg("cd2"),  py::arg("i1"),  py::arg("i2"),  py::arg("sens1"),  py::arg("sens2"),  py::arg("p1"),  py::arg("p2"),  py::arg("face"),  py::arg("sameside"),  py::arg("jf1"),  py::arg("jf2"),  py::arg("visavis"),  py::arg("Vtx"),  py::arg("Check2dDistance")=static_cast<const Standard_Boolean>(Standard_False),  py::arg("enlarge")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_ProjectPCurv",
          (void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  Standard_Real &  ))  static_cast<void (*)( const opencascade::handle<Adaptor3d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  Standard_Real &  )>(&ChFi3d_ProjectPCurv),
          R"#(None)#"  , py::arg("HCg"),  py::arg("HSg"),  py::arg("Pcurv"),  py::arg("tol3d"),  py::arg("tolreached")
          );
    m.def("ChFi3d_ReparamPcurv",
          (void (*)( const Standard_Real ,  const Standard_Real ,  opencascade::handle<Geom2d_Curve> &  ))  static_cast<void (*)( const Standard_Real ,  const Standard_Real ,  opencascade::handle<Geom2d_Curve> &  )>(&ChFi3d_ReparamPcurv),
          R"#(None)#"  , py::arg("Uf"),  py::arg("Ul"),  py::arg("Pcurv")
          );
    m.def("ChFi3d_ComputeArete",
          (void (*)( const ChFiDS_CommonPoint & ,  const gp_Pnt2d & ,  const ChFiDS_CommonPoint & ,  const gp_Pnt2d & ,  const opencascade::handle<Geom_Surface> & ,  opencascade::handle<Geom_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Integer  ))  static_cast<void (*)( const ChFiDS_CommonPoint & ,  const gp_Pnt2d & ,  const ChFiDS_CommonPoint & ,  const gp_Pnt2d & ,  const opencascade::handle<Geom_Surface> & ,  opencascade::handle<Geom_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Integer  )>(&ChFi3d_ComputeArete),
          R"#(None)#"  , py::arg("P1"),  py::arg("UV1"),  py::arg("P2"),  py::arg("UV2"),  py::arg("Surf"),  py::arg("C3d"),  py::arg("Pcurv"),  py::arg("Pardeb"),  py::arg("Parfin"),  py::arg("tol3d"),  py::arg("tol2d"),  py::arg("tolreached"),  py::arg("IFlag")
          );
    m.def("ChFi3d_FilCurveInDS",
          (opencascade::handle<TopOpeBRepDS_SurfaceCurveInterference> (*)( const Standard_Integer ,  const Standard_Integer ,  const opencascade::handle<Geom2d_Curve> & ,  const TopAbs_Orientation  ))  static_cast<opencascade::handle<TopOpeBRepDS_SurfaceCurveInterference> (*)( const Standard_Integer ,  const Standard_Integer ,  const opencascade::handle<Geom2d_Curve> & ,  const TopAbs_Orientation  )>(&ChFi3d_FilCurveInDS),
          R"#(None)#"  , py::arg("Icurv"),  py::arg("Isurf"),  py::arg("Pcurv"),  py::arg("Et")
          );
    m.def("ChFi3d_TrsfTrans",
          (TopAbs_Orientation (*)( const IntSurf_TypeTrans  ))  static_cast<TopAbs_Orientation (*)( const IntSurf_TypeTrans  )>(&ChFi3d_TrsfTrans),
          R"#(None)#"  , py::arg("T1")
          );
    m.def("ChFi3d_FilCommonPoint",
          (void (*)( const BRepBlend_Extremity & ,  const IntSurf_TypeTrans ,  const Standard_Boolean ,  ChFiDS_CommonPoint & ,  const Standard_Real  ))  static_cast<void (*)( const BRepBlend_Extremity & ,  const IntSurf_TypeTrans ,  const Standard_Boolean ,  ChFiDS_CommonPoint & ,  const Standard_Real  )>(&ChFi3d_FilCommonPoint),
          R"#(None)#"  , py::arg("SP"),  py::arg("TransLine"),  py::arg("Start"),  py::arg("CP"),  py::arg("Tol")
          );
    m.def("ChFi3d_SolidIndex",
          (Standard_Integer (*)( const opencascade::handle<ChFiDS_Spine> & ,  TopOpeBRepDS_DataStructure & ,  ChFiDS_Map & ,  ChFiDS_Map &  ))  static_cast<Standard_Integer (*)( const opencascade::handle<ChFiDS_Spine> & ,  TopOpeBRepDS_DataStructure & ,  ChFiDS_Map & ,  ChFiDS_Map &  )>(&ChFi3d_SolidIndex),
          R"#(None)#"  , py::arg("sp"),  py::arg("DStr"),  py::arg("MapESo"),  py::arg("MapESh")
          );
    m.def("ChFi3d_IndexPointInDS",
          (Standard_Integer (*)( const ChFiDS_CommonPoint & ,  TopOpeBRepDS_DataStructure &  ))  static_cast<Standard_Integer (*)( const ChFiDS_CommonPoint & ,  TopOpeBRepDS_DataStructure &  )>(&ChFi3d_IndexPointInDS),
          R"#(None)#"  , py::arg("P1"),  py::arg("DStr")
          );
    m.def("ChFi3d_FilPointInDS",
          (opencascade::handle<TopOpeBRepDS_CurvePointInterference> (*)( const TopAbs_Orientation ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<opencascade::handle<TopOpeBRepDS_CurvePointInterference> (*)( const TopAbs_Orientation ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_FilPointInDS),
          R"#(None)#"  , py::arg("Et"),  py::arg("Ic"),  py::arg("Ip"),  py::arg("Par"),  py::arg("IsVertex")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_FilVertexInDS",
          (opencascade::handle<TopOpeBRepDS_CurvePointInterference> (*)( const TopAbs_Orientation ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real  ))  static_cast<opencascade::handle<TopOpeBRepDS_CurvePointInterference> (*)( const TopAbs_Orientation ,  const Standard_Integer ,  const Standard_Integer ,  const Standard_Real  )>(&ChFi3d_FilVertexInDS),
          R"#(None)#"  , py::arg("Et"),  py::arg("Ic"),  py::arg("Ip"),  py::arg("Par")
          );
    m.def("ChFi3d_FilDS",
          (void (*)( const Standard_Integer ,  const opencascade::handle<ChFiDS_Stripe> & ,  TopOpeBRepDS_DataStructure & ,  NCollection_List<ChFiDS_Regul> & ,  const Standard_Real ,  const Standard_Real  ))  static_cast<void (*)( const Standard_Integer ,  const opencascade::handle<ChFiDS_Stripe> & ,  TopOpeBRepDS_DataStructure & ,  NCollection_List<ChFiDS_Regul> & ,  const Standard_Real ,  const Standard_Real  )>(&ChFi3d_FilDS),
          R"#(None)#"  , py::arg("SolidIndex"),  py::arg("CorDat"),  py::arg("DStr"),  py::arg("reglist"),  py::arg("tol3d"),  py::arg("tol2d")
          );
    m.def("ChFi3d_StripeEdgeInter",
          (void (*)( const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_Stripe> & ,  TopOpeBRepDS_DataStructure & ,  const Standard_Real  ))  static_cast<void (*)( const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_Stripe> & ,  TopOpeBRepDS_DataStructure & ,  const Standard_Real  )>(&ChFi3d_StripeEdgeInter),
          R"#(None)#"  , py::arg("theStripe1"),  py::arg("theStripe2"),  py::arg("DStr"),  py::arg("tol2d")
          );
    m.def("ChFi3d_IndexOfSurfData",
          (Standard_Integer (*)( const TopoDS_Vertex & ,  const opencascade::handle<ChFiDS_Stripe> & ,  Standard_Integer &  ))  static_cast<Standard_Integer (*)( const TopoDS_Vertex & ,  const opencascade::handle<ChFiDS_Stripe> & ,  Standard_Integer &  )>(&ChFi3d_IndexOfSurfData),
          R"#(None)#"  , py::arg("V1"),  py::arg("CD"),  py::arg("sens")
          );
    m.def("ChFi3d_EdgeFromV1",
          (TopoDS_Edge (*)( const TopoDS_Vertex & ,  const opencascade::handle<ChFiDS_Stripe> & ,  Standard_Integer &  ))  static_cast<TopoDS_Edge (*)( const TopoDS_Vertex & ,  const opencascade::handle<ChFiDS_Stripe> & ,  Standard_Integer &  )>(&ChFi3d_EdgeFromV1),
          R"#(None)#"  , py::arg("V1"),  py::arg("CD"),  py::arg("sens")
          );
    m.def("ChFi3d_ConvTol2dToTol3d",
          (Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real  ))  static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real  )>(&ChFi3d_ConvTol2dToTol3d),
          R"#(None)#"  , py::arg("S"),  py::arg("tol2d")
          );
    m.def("ChFi3d_ComputeCurves",
          (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,   const NCollection_Array1<Standard_Real> & ,   const NCollection_Array1<Standard_Real> & ,  opencascade::handle<Geom_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Boolean  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Surface> & ,   const NCollection_Array1<Standard_Real> & ,   const NCollection_Array1<Standard_Real> & ,  opencascade::handle<Geom_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  opencascade::handle<Geom2d_Curve> & ,  const Standard_Real ,  const Standard_Real ,  Standard_Real & ,  const Standard_Boolean  )>(&ChFi3d_ComputeCurves),
          R"#(None)#"  , py::arg("S1"),  py::arg("S2"),  py::arg("Pardeb"),  py::arg("Parfin"),  py::arg("C3d"),  py::arg("Pc1"),  py::arg("Pc2"),  py::arg("tol3d"),  py::arg("tol2d"),  py::arg("tolreached"),  py::arg("wholeCurv")=static_cast<const Standard_Boolean>(Standard_True)
          );
    m.def("ChFi3d_IntCS",
          (Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Curve> & ,  gp_Pnt2d & ,  Standard_Real &  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Adaptor3d_Curve> & ,  gp_Pnt2d & ,  Standard_Real &  )>(&ChFi3d_IntCS),
          R"#(None)#"  , py::arg("S"),  py::arg("C"),  py::arg("p2dS"),  py::arg("wc")
          );
    m.def("ChFi3d_ComputesIntPC",
          (void (*)( const ChFiDS_FaceInterference & ,  const ChFiDS_FaceInterference & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  Standard_Real & ,  Standard_Real &  ))  static_cast<void (*)( const ChFiDS_FaceInterference & ,  const ChFiDS_FaceInterference & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  Standard_Real & ,  Standard_Real &  )>(&ChFi3d_ComputesIntPC),
          R"#(None)#"  , py::arg("Fi1"),  py::arg("Fi2"),  py::arg("HS1"),  py::arg("HS2"),  py::arg("UInt1"),  py::arg("UInt2")
          );
    m.def("ChFi3d_ComputesIntPC",
          (void (*)( const ChFiDS_FaceInterference & ,  const ChFiDS_FaceInterference & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  Standard_Real & ,  Standard_Real & ,  gp_Pnt &  ))  static_cast<void (*)( const ChFiDS_FaceInterference & ,  const ChFiDS_FaceInterference & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  const opencascade::handle<GeomAdaptor_Surface> & ,  Standard_Real & ,  Standard_Real & ,  gp_Pnt &  )>(&ChFi3d_ComputesIntPC),
          R"#(None)#"  , py::arg("Fi1"),  py::arg("Fi2"),  py::arg("HS1"),  py::arg("HS2"),  py::arg("UInt1"),  py::arg("UInt2"),  py::arg("P")
          );
    m.def("ChFi3d_BoundSurf",
          (opencascade::handle<GeomAdaptor_Surface> (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_SurfData> & ,  const Standard_Integer & ,  const Standard_Integer &  ))  static_cast<opencascade::handle<GeomAdaptor_Surface> (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_SurfData> & ,  const Standard_Integer & ,  const Standard_Integer &  )>(&ChFi3d_BoundSurf),
          R"#(None)#"  , py::arg("DStr"),  py::arg("Fd1"),  py::arg("IFaCo1"),  py::arg("IFaArc1")
          );
    m.def("ChFi3d_SearchFD",
          (Standard_Boolean (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Integer ,  const Standard_Integer ,  TopoDS_Face & ,  Standard_Boolean & ,  Standard_Integer & ,  Standard_Integer &  ))  static_cast<Standard_Boolean (*)( TopOpeBRepDS_DataStructure & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const opencascade::handle<ChFiDS_Stripe> & ,  const Standard_Integer ,  const Standard_Integer ,  Standard_Integer & ,  Standard_Integer & ,  Standard_Real & ,  Standard_Real & ,  const Standard_Integer ,  const Standard_Integer ,  TopoDS_Face & ,  Standard_Boolean & ,  Standard_Integer & ,  Standard_Integer &  )>(&ChFi3d_SearchFD),
          R"#(None)#"  , py::arg("DStr"),  py::arg("cd1"),  py::arg("cd2"),  py::arg("sens1"),  py::arg("sens2"),  py::arg("i1"),  py::arg("i2"),  py::arg("p1"),  py::arg("p2"),  py::arg("ind1"),  py::arg("ind2"),  py::arg("face"),  py::arg("sameside"),  py::arg("jf1"),  py::arg("jf2")
          );
    m.def("ChFi3d_Parameters",
          (void (*)( const opencascade::handle<Geom_Surface> & ,  const gp_Pnt & ,  Standard_Real & ,  Standard_Real &  ))  static_cast<void (*)( const opencascade::handle<Geom_Surface> & ,  const gp_Pnt & ,  Standard_Real & ,  Standard_Real &  )>(&ChFi3d_Parameters),
          R"#(None)#"  , py::arg("S"),  py::arg("p3d"),  py::arg("u"),  py::arg("v")
          );
    m.def("ChFi3d_TrimCurve",
          (void (*)( const opencascade::handle<Geom_Curve> & ,  const gp_Pnt & ,  const gp_Pnt & ,  opencascade::handle<Geom_TrimmedCurve> &  ))  static_cast<void (*)( const opencascade::handle<Geom_Curve> & ,  const gp_Pnt & ,  const gp_Pnt & ,  opencascade::handle<Geom_TrimmedCurve> &  )>(&ChFi3d_TrimCurve),
          R"#(None)#"  , py::arg("gc"),  py::arg("FirstP"),  py::arg("LastP"),  py::arg("gtc")
          );
    m.def("ChFi3d_PerformElSpine",
          (void (*)( opencascade::handle<ChFiDS_ElSpine> & ,  opencascade::handle<ChFiDS_Spine> & ,  const GeomAbs_Shape ,  const Standard_Real ,  const Standard_Boolean  ))  static_cast<void (*)( opencascade::handle<ChFiDS_ElSpine> & ,  opencascade::handle<ChFiDS_Spine> & ,  const GeomAbs_Shape ,  const Standard_Real ,  const Standard_Boolean  )>(&ChFi3d_PerformElSpine),
          R"#(None)#"  , py::arg("HES"),  py::arg("Spine"),  py::arg("continuity"),  py::arg("tol"),  py::arg("IsOffset")=static_cast<const Standard_Boolean>(Standard_False)
          );
    m.def("ChFi3d_cherche_face1",
          (void (*)(  const NCollection_List<TopoDS_Shape> & ,  const TopoDS_Face & ,  TopoDS_Face &  ))  static_cast<void (*)(  const NCollection_List<TopoDS_Shape> & ,  const TopoDS_Face & ,  TopoDS_Face &  )>(&ChFi3d_cherche_face1),
          R"#(None)#"  , py::arg("map"),  py::arg("F1"),  py::arg("F")
          );
    m.def("ChFi3d_cherche_element",
          (void (*)( const TopoDS_Vertex & ,  const TopoDS_Edge & ,  const TopoDS_Face & ,  TopoDS_Edge & ,  TopoDS_Vertex &  ))  static_cast<void (*)( const TopoDS_Vertex & ,  const TopoDS_Edge & ,  const TopoDS_Face & ,  TopoDS_Edge & ,  TopoDS_Vertex &  )>(&ChFi3d_cherche_element),
          R"#(None)#"  , py::arg("V"),  py::arg("E1"),  py::arg("F1"),  py::arg("E"),  py::arg("Vtx")
          );
    m.def("ChFi3d_EvalTolReached",
          (Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Geom_Curve> &  ))  static_cast<Standard_Real (*)( const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Adaptor3d_Surface> & ,  const opencascade::handle<Geom2d_Curve> & ,  const opencascade::handle<Geom_Curve> &  )>(&ChFi3d_EvalTolReached),
          R"#(None)#"  , py::arg("S1"),  py::arg("pc1"),  py::arg("S2"),  py::arg("pc2"),  py::arg("C")
          );
    m.def("ChFi3d_cherche_edge",
          (void (*)( const TopoDS_Vertex & ,   const NCollection_Array1<TopoDS_Shape> & ,  const TopoDS_Face & ,  TopoDS_Edge & ,  TopoDS_Vertex &  ))  static_cast<void (*)( const TopoDS_Vertex & ,   const NCollection_Array1<TopoDS_Shape> & ,  const TopoDS_Face & ,  TopoDS_Edge & ,  TopoDS_Vertex &  )>(&ChFi3d_cherche_edge),
          R"#(None)#"  , py::arg("V"),  py::arg("E1"),  py::arg("F1"),  py::arg("E"),  py::arg("Vtx")
          );
    m.def("ChFi3d_nbface",
          (Standard_Integer (*)(  const NCollection_List<TopoDS_Shape> &  ))  static_cast<Standard_Integer (*)(  const NCollection_List<TopoDS_Shape> &  )>(&ChFi3d_nbface),
          R"#(None)#"  , py::arg("mapVF")
          );
    m.def("ChFi3d_edge_common_faces",
          (void (*)(  const NCollection_List<TopoDS_Shape> & ,  TopoDS_Face & ,  TopoDS_Face &  ))  static_cast<void (*)(  const NCollection_List<TopoDS_Shape> & ,  TopoDS_Face & ,  TopoDS_Face &  )>(&ChFi3d_edge_common_faces),
          R"#(None)#"  , py::arg("mapEF"),  py::arg("F1"),  py::arg("F2")
          );
    m.def("ChFi3d_AngleEdge",
          (Standard_Real (*)( const TopoDS_Vertex & ,  const TopoDS_Edge & ,  const TopoDS_Edge &  ))  static_cast<Standard_Real (*)( const TopoDS_Vertex & ,  const TopoDS_Edge & ,  const TopoDS_Edge &  )>(&ChFi3d_AngleEdge),
          R"#(None)#"  , py::arg("Vtx"),  py::arg("E1"),  py::arg("E2")
          );
    m.def("ChFi3d_ChercheBordsLibres",
          (void (*)( const ChFiDS_Map & ,  const TopoDS_Vertex & ,  Standard_Boolean & ,  TopoDS_Edge & ,  TopoDS_Edge &  ))  static_cast<void (*)( const ChFiDS_Map & ,  const TopoDS_Vertex & ,  Standard_Boolean & ,  TopoDS_Edge & ,  TopoDS_Edge &  )>(&ChFi3d_ChercheBordsLibres),
          R"#(None)#"  , py::arg("myVEMap"),  py::arg("V1"),  py::arg("bordlibre"),  py::arg("edgelibre1"),  py::arg("edgelibre2")
          );
    m.def("ChFi3d_NbNotDegeneratedEdges",
          (Standard_Integer (*)( const TopoDS_Vertex & ,  const ChFiDS_Map &  ))  static_cast<Standard_Integer (*)( const TopoDS_Vertex & ,  const ChFiDS_Map &  )>(&ChFi3d_NbNotDegeneratedEdges),
          R"#(None)#"  , py::arg("Vtx"),  py::arg("VEMap")
          );
    m.def("ChFi3d_NumberOfEdges",
          (Standard_Integer (*)( const TopoDS_Vertex & ,  const ChFiDS_Map &  ))  static_cast<Standard_Integer (*)( const TopoDS_Vertex & ,  const ChFiDS_Map &  )>(&ChFi3d_NumberOfEdges),
          R"#(None)#"  , py::arg("Vtx"),  py::arg("VEMap")
          );
    m.def("ChFi3d_NumberOfSharpEdges",
          (Standard_Integer (*)( const TopoDS_Vertex & ,  const ChFiDS_Map & ,  const ChFiDS_Map &  ))  static_cast<Standard_Integer (*)( const TopoDS_Vertex & ,  const ChFiDS_Map & ,  const ChFiDS_Map &  )>(&ChFi3d_NumberOfSharpEdges),
          R"#(None)#"  , py::arg("Vtx"),  py::arg("VEMap"),  py::arg("EFmap")
          );
    m.def("ChFi3d_cherche_vertex",
          (void (*)( const TopoDS_Edge & ,  const TopoDS_Edge & ,  TopoDS_Vertex & ,  Standard_Boolean &  ))  static_cast<void (*)( const TopoDS_Edge & ,  const TopoDS_Edge & ,  TopoDS_Vertex & ,  Standard_Boolean &  )>(&ChFi3d_cherche_vertex),
          R"#(None)#"  , py::arg("E1"),  py::arg("E2"),  py::arg("vertex"),  py::arg("trouve")
          );
    m.def("ChFi3d_Couture",
          (void (*)( const TopoDS_Face & ,  Standard_Boolean & ,  TopoDS_Edge &  ))  static_cast<void (*)( const TopoDS_Face & ,  Standard_Boolean & ,  TopoDS_Edge &  )>(&ChFi3d_Couture),
          R"#(None)#"  , py::arg("F"),  py::arg("couture"),  py::arg("edgecouture")
          );
    m.def("ChFi3d_CoutureOnVertex",
          (void (*)( const TopoDS_Face & ,  const TopoDS_Vertex & ,  Standard_Boolean & ,  TopoDS_Edge &  ))  static_cast<void (*)( const TopoDS_Face & ,  const TopoDS_Vertex & ,  Standard_Boolean & ,  TopoDS_Edge &  )>(&ChFi3d_CoutureOnVertex),
          R"#(None)#"  , py::arg("F"),  py::arg("V"),  py::arg("couture"),  py::arg("edgecouture")
          );
    m.def("ChFi3d_IsPseudoSeam",
          (Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face &  ))  static_cast<Standard_Boolean (*)( const TopoDS_Edge & ,  const TopoDS_Face &  )>(&ChFi3d_IsPseudoSeam),
          R"#(None)#"  , py::arg("E"),  py::arg("F")
          );
    m.def("ChFi3d_IsSmooth",
          (Standard_Boolean (*)( const opencascade::handle<Geom_Curve> &  ))  static_cast<Standard_Boolean (*)( const opencascade::handle<Geom_Curve> &  )>(&ChFi3d_IsSmooth),
          R"#(None)#"  , py::arg("C")
          );
// ./opencascade/ChFi3d_ChBuilder.hxx
// ./opencascade/ChFi3d_FilBuilder.hxx
// ./opencascade/ChFi3d_FilletShape.hxx
// ./opencascade/ChFi3d_SearchSing.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