File: CPnts.cpp

package info (click to toggle)
python-ocp 7.9.3.1%2B~cs7.9.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 61,552 kB
  • sloc: cpp: 341,803; ansic: 3,829; python: 803; pascal: 37; makefile: 12
file content (350 lines) | stat: -rw-r--r-- 23,649 bytes parent folder | download
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

// 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 <Adaptor3d_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor2d_Curve2d.hxx>

// module includes
#include <CPnts_AbscissaPoint.hxx>
#include <CPnts_MyGaussFunction.hxx>
#include <CPnts_MyRootFunction.hxx>
#include <CPnts_RealFunction.hxx>
#include <CPnts_UniformDeflection.hxx>

// template related includes


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

// user-defined inclusion per module

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


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

//Python trampoline classes

// classes

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


    // nested enums

    static_cast<py::class_<CPnts_AbscissaPoint , shared_ptr<CPnts_AbscissaPoint>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init<  const Adaptor3d_Curve &, const Standard_Real, const Standard_Real, const Standard_Real >()  , py::arg("C"),  py::arg("Abscissa"),  py::arg("U0"),  py::arg("Resolution") )
        .def(py::init<  const Adaptor2d_Curve2d &, const Standard_Real, const Standard_Real, const Standard_Real >()  , py::arg("C"),  py::arg("Abscissa"),  py::arg("U0"),  py::arg("Resolution") )
        .def(py::init<  const Adaptor3d_Curve &, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real >()  , py::arg("C"),  py::arg("Abscissa"),  py::arg("U0"),  py::arg("Ui"),  py::arg("Resolution") )
        .def(py::init<  const Adaptor2d_Curve2d &, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real >()  , py::arg("C"),  py::arg("Abscissa"),  py::arg("U0"),  py::arg("Ui"),  py::arg("Resolution") )
    // custom constructors
    // methods
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve &  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve &  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C>.)#"  , py::arg("C")
          )
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d &  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d &  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C>.)#"  , py::arg("C")
          )
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve & ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve & ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C>.)#"  , py::arg("C"),  py::arg("Tol")
          )
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C>.)#"  , py::arg("C"),  py::arg("Tol")
          )
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C> between U1 and U2.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2")
          )
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C> between U1 and U2.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2")
          )
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C> between U1 and U2.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2"),  py::arg("Tol")
          )
        .def("Init",
             (void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Init),
             R"#(Initializes the resolution function with <C> between U1 and U2.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2"),  py::arg("Tol")
          )
        .def("Perform",
             (void (CPnts_AbscissaPoint::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Perform),
             R"#(Computes the point at the distance <Abscissa> of the curve. U0 is the parameter of the point from which the distance is measured.)#"  , py::arg("Abscissa"),  py::arg("U0"),  py::arg("Resolution")
          )
        .def("Perform",
             (void (CPnts_AbscissaPoint::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Perform),
             R"#(Computes the point at the distance <Abscissa> of the curve. U0 is the parameter of the point from which the distance is measured and Ui is the starting value for the iterative process (should be close to the final solution).)#"  , py::arg("Abscissa"),  py::arg("U0"),  py::arg("Ui"),  py::arg("Resolution")
          )
        .def("AdvPerform",
             (void (CPnts_AbscissaPoint::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::AdvPerform),
             R"#(Computes the point at the distance <Abscissa> of the curve; performs more appropriate tolerance management; to use this method in right way it is necessary to call empty constructor. then call method Init with Tolerance = Resolution, then call AdvPermorm. U0 is the parameter of the point from which the distance is measured and Ui is the starting value for the iterative process (should be close to the final solution).)#"  , py::arg("Abscissa"),  py::arg("U0"),  py::arg("Ui"),  py::arg("Resolution")
          )
        .def("IsDone",
             (Standard_Boolean (CPnts_AbscissaPoint::*)() const) static_cast<Standard_Boolean (CPnts_AbscissaPoint::*)() const>(&CPnts_AbscissaPoint::IsDone),
             R"#(True if the computation was successful, False otherwise.)#" 
          )
        .def("Parameter",
             (Standard_Real (CPnts_AbscissaPoint::*)() const) static_cast<Standard_Real (CPnts_AbscissaPoint::*)() const>(&CPnts_AbscissaPoint::Parameter),
             R"#(Returns the parameter of the solution.)#" 
          )
        .def("SetParameter",
             (void (CPnts_AbscissaPoint::*)(  const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Standard_Real  ) >(&CPnts_AbscissaPoint::SetParameter),
             R"#(Enforce the solution, used by GCPnts.)#"  , py::arg("P")
          )
        .def("IsDone",
             (Standard_Boolean (CPnts_AbscissaPoint::*)() const) static_cast<Standard_Boolean (CPnts_AbscissaPoint::*)() const>(&CPnts_AbscissaPoint::IsDone),
             R"#(True if the computation was successful, False otherwise.)#" 
          )
        .def("Parameter",
             (Standard_Real (CPnts_AbscissaPoint::*)() const) static_cast<Standard_Real (CPnts_AbscissaPoint::*)() const>(&CPnts_AbscissaPoint::Parameter),
             R"#(Returns the parameter of the solution.)#" 
          )
        .def("SetParameter",
             (void (CPnts_AbscissaPoint::*)(  const Standard_Real  ) ) static_cast<void (CPnts_AbscissaPoint::*)(  const Standard_Real  ) >(&CPnts_AbscissaPoint::SetParameter),
             R"#(Enforce the solution, used by GCPnts.)#"  , py::arg("P")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor3d_Curve &  ) ) static_cast<Standard_Real (*)(  const Adaptor3d_Curve &  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C>.)#"  , py::arg("C")
          )
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor2d_Curve2d &  ) ) static_cast<Standard_Real (*)(  const Adaptor2d_Curve2d &  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C>.)#"  , py::arg("C")
          )
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor3d_Curve & ,   const Standard_Real  ) ) static_cast<Standard_Real (*)(  const Adaptor3d_Curve & ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C> with the given tolerance.)#"  , py::arg("C"),  py::arg("Tol")
          )
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor2d_Curve2d & ,   const Standard_Real  ) ) static_cast<Standard_Real (*)(  const Adaptor2d_Curve2d & ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C> with the given tolerance.)#"  , py::arg("C"),  py::arg("Tol")
          )
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<Standard_Real (*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C> between <U1> and <U2>.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2")
          )
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<Standard_Real (*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C> between <U1> and <U2>.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2")
          )
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<Standard_Real (*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C> between <U1> and <U2> with the given tolerance.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2"),  py::arg("Tol")
          )
        .def_static("Length_s",
                    (Standard_Real (*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<Standard_Real (*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_AbscissaPoint::Length),
                    R"#(Computes the length of the Curve <C> between <U1> and <U2> with the given tolerance. creation of a indefinite AbscissaPoint.)#"  , py::arg("C"),  py::arg("U1"),  py::arg("U2"),  py::arg("Tol")
          )
    // 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 CPnts_MyGaussFunction from ./opencascade/CPnts_MyGaussFunction.hxx
    klass = m.attr("CPnts_MyGaussFunction");


    // nested enums

    static_cast<py::class_<CPnts_MyGaussFunction , shared_ptr<CPnts_MyGaussFunction>  , math_Function >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Value",
             (Standard_Boolean (CPnts_MyGaussFunction::*)(  const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (CPnts_MyGaussFunction::*)(  const Standard_Real ,  Standard_Real &  ) >(&CPnts_MyGaussFunction::Value),
             R"#()#"  , py::arg("X"),  py::arg("F")
          )
    // 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 CPnts_MyRootFunction from ./opencascade/CPnts_MyRootFunction.hxx
    klass = m.attr("CPnts_MyRootFunction");


    // nested enums

    static_cast<py::class_<CPnts_MyRootFunction , shared_ptr<CPnts_MyRootFunction>  , math_FunctionWithDerivative >>(klass)
    // constructors
        .def(py::init<  >()  )
    // custom constructors
    // methods
        .def("Init",
             (void (CPnts_MyRootFunction::*)(  const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_MyRootFunction::*)(  const Standard_Real ,   const Standard_Real  ) >(&CPnts_MyRootFunction::Init),
             R"#(We want to solve Integral(X0,X,F(X,D)) = L)#"  , py::arg("X0"),  py::arg("L")
          )
        .def("Init",
             (void (CPnts_MyRootFunction::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) ) static_cast<void (CPnts_MyRootFunction::*)(  const Standard_Real ,   const Standard_Real ,   const Standard_Real  ) >(&CPnts_MyRootFunction::Init),
             R"#(We want to solve Integral(X0,X,F(X,D)) = L with given tolerance)#"  , py::arg("X0"),  py::arg("L"),  py::arg("Tol")
          )
        .def("Value",
             (Standard_Boolean (CPnts_MyRootFunction::*)(  const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (CPnts_MyRootFunction::*)(  const Standard_Real ,  Standard_Real &  ) >(&CPnts_MyRootFunction::Value),
             R"#(This is Integral(X0,X,F(X,D)) - L)#"  , py::arg("X"),  py::arg("F")
          )
        .def("Derivative",
             (Standard_Boolean (CPnts_MyRootFunction::*)(  const Standard_Real ,  Standard_Real &  ) ) static_cast<Standard_Boolean (CPnts_MyRootFunction::*)(  const Standard_Real ,  Standard_Real &  ) >(&CPnts_MyRootFunction::Derivative),
             R"#(This is F(X,D))#"  , py::arg("X"),  py::arg("Df")
          )
        .def("Values",
             (Standard_Boolean (CPnts_MyRootFunction::*)(  const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) ) static_cast<Standard_Boolean (CPnts_MyRootFunction::*)(  const Standard_Real ,  Standard_Real & ,  Standard_Real &  ) >(&CPnts_MyRootFunction::Values),
             R"#()#"  , py::arg("X"),  py::arg("F"),  py::arg("Df")
          )
    // 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 CPnts_UniformDeflection from ./opencascade/CPnts_UniformDeflection.hxx
    klass = m.attr("CPnts_UniformDeflection");


    // nested enums

    static_cast<py::class_<CPnts_UniformDeflection , shared_ptr<CPnts_UniformDeflection>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init<  const Adaptor3d_Curve &, const Standard_Real, const Standard_Real, const Standard_Boolean >()  , py::arg("C"),  py::arg("Deflection"),  py::arg("Resolution"),  py::arg("WithControl") )
        .def(py::init<  const Adaptor2d_Curve2d &, const Standard_Real, const Standard_Real, const Standard_Boolean >()  , py::arg("C"),  py::arg("Deflection"),  py::arg("Resolution"),  py::arg("WithControl") )
        .def(py::init<  const Adaptor3d_Curve &, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Boolean >()  , py::arg("C"),  py::arg("Deflection"),  py::arg("U1"),  py::arg("U2"),  py::arg("Resolution"),  py::arg("WithControl") )
        .def(py::init<  const Adaptor2d_Curve2d &, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Real, const Standard_Boolean >()  , py::arg("C"),  py::arg("Deflection"),  py::arg("U1"),  py::arg("U2"),  py::arg("Resolution"),  py::arg("WithControl") )
    // custom constructors
    // methods
        .def("Initialize",
             (void (CPnts_UniformDeflection::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) ) static_cast<void (CPnts_UniformDeflection::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) >(&CPnts_UniformDeflection::Initialize),
             R"#(Initialize the algorithms with <C>, <Deflection>, <UStep>, <Resolution> and <WithControl>)#"  , py::arg("C"),  py::arg("Deflection"),  py::arg("Resolution"),  py::arg("WithControl")
          )
        .def("Initialize",
             (void (CPnts_UniformDeflection::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) ) static_cast<void (CPnts_UniformDeflection::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) >(&CPnts_UniformDeflection::Initialize),
             R"#(Initialize the algorithms with <C>, <Deflection>, <UStep>, <Resolution> and <WithControl>)#"  , py::arg("C"),  py::arg("Deflection"),  py::arg("Resolution"),  py::arg("WithControl")
          )
        .def("Initialize",
             (void (CPnts_UniformDeflection::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) ) static_cast<void (CPnts_UniformDeflection::*)(  const Adaptor3d_Curve & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) >(&CPnts_UniformDeflection::Initialize),
             R"#(Initialize the algorithms with <C>, <Deflection>, <UStep>, <U1>, <U2> and <WithControl>)#"  , py::arg("C"),  py::arg("Deflection"),  py::arg("U1"),  py::arg("U2"),  py::arg("Resolution"),  py::arg("WithControl")
          )
        .def("Initialize",
             (void (CPnts_UniformDeflection::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) ) static_cast<void (CPnts_UniformDeflection::*)(  const Adaptor2d_Curve2d & ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Real ,   const Standard_Boolean  ) >(&CPnts_UniformDeflection::Initialize),
             R"#(Initialize the algorithms with <C>, <Deflection>, <UStep>, <U1>, <U2> and <WithControl>)#"  , py::arg("C"),  py::arg("Deflection"),  py::arg("U1"),  py::arg("U2"),  py::arg("Resolution"),  py::arg("WithControl")
          )
        .def("IsAllDone",
             (Standard_Boolean (CPnts_UniformDeflection::*)() const) static_cast<Standard_Boolean (CPnts_UniformDeflection::*)() const>(&CPnts_UniformDeflection::IsAllDone),
             R"#(To know if all the calculus were done successfully (ie all the points have been computed). The calculus can fail if the Curve is not C1 in the considered domain. Returns True if the calculus was successful.)#" 
          )
        .def("Next",
             (void (CPnts_UniformDeflection::*)() ) static_cast<void (CPnts_UniformDeflection::*)() >(&CPnts_UniformDeflection::Next),
             R"#(go to the next Point.)#" 
          )
        .def("More",
             (Standard_Boolean (CPnts_UniformDeflection::*)() ) static_cast<Standard_Boolean (CPnts_UniformDeflection::*)() >(&CPnts_UniformDeflection::More),
             R"#(returns True if it exists a next Point.)#" 
          )
        .def("Value",
             (Standard_Real (CPnts_UniformDeflection::*)() const) static_cast<Standard_Real (CPnts_UniformDeflection::*)() const>(&CPnts_UniformDeflection::Value),
             R"#(return the computed parameter)#" 
          )
        .def("Point",
             (gp_Pnt (CPnts_UniformDeflection::*)() const) static_cast<gp_Pnt (CPnts_UniformDeflection::*)() const>(&CPnts_UniformDeflection::Point),
             R"#(return the computed parameter)#" 
          )
        .def("IsAllDone",
             (Standard_Boolean (CPnts_UniformDeflection::*)() const) static_cast<Standard_Boolean (CPnts_UniformDeflection::*)() const>(&CPnts_UniformDeflection::IsAllDone),
             R"#(To know if all the calculus were done successfully (ie all the points have been computed). The calculus can fail if the Curve is not C1 in the considered domain. Returns True if the calculus was successful.)#" 
          )
        .def("Next",
             (void (CPnts_UniformDeflection::*)() ) static_cast<void (CPnts_UniformDeflection::*)() >(&CPnts_UniformDeflection::Next),
             R"#(go to the next Point.)#" 
          )
        .def("Value",
             (Standard_Real (CPnts_UniformDeflection::*)() const) static_cast<Standard_Real (CPnts_UniformDeflection::*)() const>(&CPnts_UniformDeflection::Value),
             R"#(return the computed parameter)#" 
          )
        .def("Point",
             (gp_Pnt (CPnts_UniformDeflection::*)() const) static_cast<gp_Pnt (CPnts_UniformDeflection::*)() const>(&CPnts_UniformDeflection::Point),
             R"#(return the computed parameter)#" 
          )
    // 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/CPnts_AbscissaPoint.hxx
// ./opencascade/CPnts_MyGaussFunction.hxx
// ./opencascade/CPnts_MyRootFunction.hxx
// ./opencascade/CPnts_RealFunction.hxx
// ./opencascade/CPnts_UniformDeflection.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