File: BRepTopAdaptor.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 (392 lines) | stat: -rw-r--r-- 21,285 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

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

// module includes
#include <BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx>
#include <BRepTopAdaptor_FClass2d.hxx>
#include <BRepTopAdaptor_HVertex.hxx>
#include <BRepTopAdaptor_MapOfShapeTool.hxx>
#include <BRepTopAdaptor_SeqOfPtr.hxx>
#include <BRepTopAdaptor_Tool.hxx>
#include <BRepTopAdaptor_TopolTool.hxx>

// template related includes

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

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


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

// user-defined inclusion per module

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


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

//Python trampoline classes

// classes

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


    // nested enums

    static_cast<py::class_<BRepTopAdaptor_FClass2d , shared_ptr<BRepTopAdaptor_FClass2d>  >>(klass)
    // constructors
        .def(py::init< const TopoDS_Face &,const Standard_Real >()  , py::arg("F"),  py::arg("Tol") )
    // custom constructors
    // methods
        .def("PerformInfinitePoint",
             (TopAbs_State (BRepTopAdaptor_FClass2d::*)() const) static_cast<TopAbs_State (BRepTopAdaptor_FClass2d::*)() const>(&BRepTopAdaptor_FClass2d::PerformInfinitePoint),
             R"#(None)#" 
          )
        .def("Perform",
             (TopAbs_State (BRepTopAdaptor_FClass2d::*)( const gp_Pnt2d & ,  const Standard_Boolean  ) const) static_cast<TopAbs_State (BRepTopAdaptor_FClass2d::*)( const gp_Pnt2d & ,  const Standard_Boolean  ) const>(&BRepTopAdaptor_FClass2d::Perform),
             R"#(None)#"  , py::arg("Puv"),  py::arg("RecadreOnPeriodic")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Destroy",
             (void (BRepTopAdaptor_FClass2d::*)() ) static_cast<void (BRepTopAdaptor_FClass2d::*)() >(&BRepTopAdaptor_FClass2d::Destroy),
             R"#(None)#" 
          )
        .def("Copy",
             (const BRepTopAdaptor_FClass2d & (BRepTopAdaptor_FClass2d::*)( const BRepTopAdaptor_FClass2d &  ) const) static_cast<const BRepTopAdaptor_FClass2d & (BRepTopAdaptor_FClass2d::*)( const BRepTopAdaptor_FClass2d &  ) const>(&BRepTopAdaptor_FClass2d::Copy),
             R"#(None)#"  , py::arg("Other")
          )
        .def("TestOnRestriction",
             (TopAbs_State (BRepTopAdaptor_FClass2d::*)( const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Boolean  ) const) static_cast<TopAbs_State (BRepTopAdaptor_FClass2d::*)( const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Boolean  ) const>(&BRepTopAdaptor_FClass2d::TestOnRestriction),
             R"#(Test a point with +- an offset (Tol) and returns On if some points are OUT an some are IN (Caution: Internal use . see the code for more details))#"  , py::arg("Puv"),  py::arg("Tol"),  py::arg("RecadreOnPeriodic")=static_cast<const Standard_Boolean>(Standard_True)
          )
    // 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 BRepTopAdaptor_HVertex from ./opencascade/BRepTopAdaptor_HVertex.hxx
    klass = m.attr("BRepTopAdaptor_HVertex");


    // nested enums

    static_cast<py::class_<BRepTopAdaptor_HVertex ,opencascade::handle<BRepTopAdaptor_HVertex>  , Adaptor3d_HVertex >>(klass)
    // constructors
        .def(py::init< const TopoDS_Vertex &,const opencascade::handle<BRepAdaptor_Curve2d> & >()  , py::arg("Vtx"),  py::arg("Curve") )
    // custom constructors
    // methods
        .def("Value",
             (gp_Pnt2d (BRepTopAdaptor_HVertex::*)() ) static_cast<gp_Pnt2d (BRepTopAdaptor_HVertex::*)() >(&BRepTopAdaptor_HVertex::Value),
             R"#(None)#" 
          )
        .def("Parameter",
             (Standard_Real (BRepTopAdaptor_HVertex::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Real (BRepTopAdaptor_HVertex::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&BRepTopAdaptor_HVertex::Parameter),
             R"#(None)#"  , py::arg("C")
          )
        .def("Resolution",
             (Standard_Real (BRepTopAdaptor_HVertex::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<Standard_Real (BRepTopAdaptor_HVertex::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&BRepTopAdaptor_HVertex::Resolution),
             R"#(Parametric resolution (2d).)#"  , py::arg("C")
          )
        .def("Orientation",
             (TopAbs_Orientation (BRepTopAdaptor_HVertex::*)() ) static_cast<TopAbs_Orientation (BRepTopAdaptor_HVertex::*)() >(&BRepTopAdaptor_HVertex::Orientation),
             R"#(None)#" 
          )
        .def("IsSame",
             (Standard_Boolean (BRepTopAdaptor_HVertex::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) ) static_cast<Standard_Boolean (BRepTopAdaptor_HVertex::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) >(&BRepTopAdaptor_HVertex::IsSame),
             R"#(None)#"  , py::arg("Other")
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepTopAdaptor_HVertex::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepTopAdaptor_HVertex::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("Vertex",
             (const TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() const) static_cast<const TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() const>(&BRepTopAdaptor_HVertex::Vertex),
             R"#(None)#"
             
         )
       .def("ChangeVertex",
             (TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() ) static_cast<TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() >(&BRepTopAdaptor_HVertex::ChangeVertex),
             R"#(None)#"
             
             , py::return_value_policy::reference_internal
         )
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepTopAdaptor_HVertex::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepTopAdaptor_HVertex::*)() const>(&BRepTopAdaptor_HVertex::DynamicType),
             R"#(None)#"
             
         )
       .def("Vertex",
             (const TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() const) static_cast<const TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() const>(&BRepTopAdaptor_HVertex::Vertex),
             R"#(None)#"
             
         )
       .def("ChangeVertex",
             (TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() ) static_cast<TopoDS_Vertex & (BRepTopAdaptor_HVertex::*)() >(&BRepTopAdaptor_HVertex::ChangeVertex),
             R"#(None)#"
             
             , py::return_value_policy::reference_internal
         )
;

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


    // nested enums

    static_cast<py::class_<BRepTopAdaptor_Tool , shared_ptr<BRepTopAdaptor_Tool>  >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const TopoDS_Face &,const Standard_Real >()  , py::arg("F"),  py::arg("Tol2d") )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> &,const Standard_Real >()  , py::arg("Surface"),  py::arg("Tol2d") )
    // custom constructors
    // methods
        .def("Init",
             (void (BRepTopAdaptor_Tool::*)( const TopoDS_Face & ,  const Standard_Real  ) ) static_cast<void (BRepTopAdaptor_Tool::*)( const TopoDS_Face & ,  const Standard_Real  ) >(&BRepTopAdaptor_Tool::Init),
             R"#(None)#"  , py::arg("F"),  py::arg("Tol2d")
          )
        .def("Init",
             (void (BRepTopAdaptor_Tool::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real  ) ) static_cast<void (BRepTopAdaptor_Tool::*)( const opencascade::handle<Adaptor3d_Surface> & ,  const Standard_Real  ) >(&BRepTopAdaptor_Tool::Init),
             R"#(None)#"  , py::arg("Surface"),  py::arg("Tol2d")
          )
        .def("GetTopolTool",
             (opencascade::handle<BRepTopAdaptor_TopolTool> (BRepTopAdaptor_Tool::*)() ) static_cast<opencascade::handle<BRepTopAdaptor_TopolTool> (BRepTopAdaptor_Tool::*)() >(&BRepTopAdaptor_Tool::GetTopolTool),
             R"#(None)#" 
          )
        .def("SetTopolTool",
             (void (BRepTopAdaptor_Tool::*)( const opencascade::handle<BRepTopAdaptor_TopolTool> &  ) ) static_cast<void (BRepTopAdaptor_Tool::*)( const opencascade::handle<BRepTopAdaptor_TopolTool> &  ) >(&BRepTopAdaptor_Tool::SetTopolTool),
             R"#(None)#"  , py::arg("TT")
          )
        .def("GetSurface",
             (opencascade::handle<Adaptor3d_Surface> (BRepTopAdaptor_Tool::*)() ) static_cast<opencascade::handle<Adaptor3d_Surface> (BRepTopAdaptor_Tool::*)() >(&BRepTopAdaptor_Tool::GetSurface),
             R"#(None)#" 
          )
        .def("Destroy",
             (void (BRepTopAdaptor_Tool::*)() ) static_cast<void (BRepTopAdaptor_Tool::*)() >(&BRepTopAdaptor_Tool::Destroy),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
;

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


    // nested enums

    static_cast<py::class_<BRepTopAdaptor_TopolTool ,opencascade::handle<BRepTopAdaptor_TopolTool>  , Adaptor3d_TopolTool >>(klass)
    // constructors
        .def(py::init<  >()  )
        .def(py::init< const opencascade::handle<Adaptor3d_Surface> & >()  , py::arg("Surface") )
    // custom constructors
    // methods
        .def("Initialize",
             (void (BRepTopAdaptor_TopolTool::*)() ) static_cast<void (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::Initialize),
             R"#(None)#" 
          )
        .def("Initialize",
             (void (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_Surface> &  ) ) static_cast<void (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_Surface> &  ) >(&BRepTopAdaptor_TopolTool::Initialize),
             R"#(None)#"  , py::arg("S")
          )
        .def("Initialize",
             (void (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<void (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&BRepTopAdaptor_TopolTool::Initialize),
             R"#(None)#"  , py::arg("Curve")
          )
        .def("Init",
             (void (BRepTopAdaptor_TopolTool::*)() ) static_cast<void (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::Init),
             R"#(None)#" 
          )
        .def("More",
             (Standard_Boolean (BRepTopAdaptor_TopolTool::*)() ) static_cast<Standard_Boolean (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::More),
             R"#(None)#" 
          )
        .def("Value",
             (opencascade::handle<Adaptor2d_Curve2d> (BRepTopAdaptor_TopolTool::*)() ) static_cast<opencascade::handle<Adaptor2d_Curve2d> (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::Value),
             R"#(None)#" 
          )
        .def("Next",
             (void (BRepTopAdaptor_TopolTool::*)() ) static_cast<void (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::Next),
             R"#(None)#" 
          )
        .def("Edge",
             (Standard_Address (BRepTopAdaptor_TopolTool::*)() const) static_cast<Standard_Address (BRepTopAdaptor_TopolTool::*)() const>(&BRepTopAdaptor_TopolTool::Edge),
             R"#(None)#" 
          )
        .def("InitVertexIterator",
             (void (BRepTopAdaptor_TopolTool::*)() ) static_cast<void (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::InitVertexIterator),
             R"#(None)#" 
          )
        .def("MoreVertex",
             (Standard_Boolean (BRepTopAdaptor_TopolTool::*)() ) static_cast<Standard_Boolean (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::MoreVertex),
             R"#(None)#" 
          )
        .def("Vertex",
             (opencascade::handle<Adaptor3d_HVertex> (BRepTopAdaptor_TopolTool::*)() ) static_cast<opencascade::handle<Adaptor3d_HVertex> (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::Vertex),
             R"#(None)#" 
          )
        .def("NextVertex",
             (void (BRepTopAdaptor_TopolTool::*)() ) static_cast<void (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::NextVertex),
             R"#(None)#" 
          )
        .def("Classify",
             (TopAbs_State (BRepTopAdaptor_TopolTool::*)( const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<TopAbs_State (BRepTopAdaptor_TopolTool::*)( const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Boolean  ) >(&BRepTopAdaptor_TopolTool::Classify),
             R"#(None)#"  , py::arg("P2d"),  py::arg("Tol"),  py::arg("RecadreOnPeriodic")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("IsThePointOn",
             (Standard_Boolean (BRepTopAdaptor_TopolTool::*)( const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Boolean  ) ) static_cast<Standard_Boolean (BRepTopAdaptor_TopolTool::*)( const gp_Pnt2d & ,  const Standard_Real ,  const Standard_Boolean  ) >(&BRepTopAdaptor_TopolTool::IsThePointOn),
             R"#(see the code for specifications))#"  , py::arg("P2d"),  py::arg("Tol"),  py::arg("RecadreOnPeriodic")=static_cast<const Standard_Boolean>(Standard_True)
          )
        .def("Orientation",
             (TopAbs_Orientation (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) ) static_cast<TopAbs_Orientation (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) >(&BRepTopAdaptor_TopolTool::Orientation),
             R"#(If the function returns the orientation of the arc. If the orientation is FORWARD or REVERSED, the arc is a "real" limit of the surface. If the orientation is INTERNAL or EXTERNAL, the arc is considered as an arc on the surface.)#"  , py::arg("C")
          )
        .def("Orientation",
             (TopAbs_Orientation (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) ) static_cast<TopAbs_Orientation (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) >(&BRepTopAdaptor_TopolTool::Orientation),
             R"#(If the function returns the orientation of the arc. If the orientation is FORWARD or REVERSED, the arc is a "real" limit of the surface. If the orientation is INTERNAL or EXTERNAL, the arc is considered as an arc on the surface.)#"  , py::arg("C")
          )
        .def("Destroy",
             (void (BRepTopAdaptor_TopolTool::*)() ) static_cast<void (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::Destroy),
             R"#(None)#" 
          )
        .def("Has3d",
             (Standard_Boolean (BRepTopAdaptor_TopolTool::*)() const) static_cast<Standard_Boolean (BRepTopAdaptor_TopolTool::*)() const>(&BRepTopAdaptor_TopolTool::Has3d),
             R"#(answers if arcs and vertices may have 3d representations, so that we could use Tol3d and Pnt methods.)#" 
          )
        .def("Tol3d",
             (Standard_Real (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) const) static_cast<Standard_Real (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor2d_Curve2d> &  ) const>(&BRepTopAdaptor_TopolTool::Tol3d),
             R"#(returns 3d tolerance of the arc C)#"  , py::arg("C")
          )
        .def("Tol3d",
             (Standard_Real (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) const) static_cast<Standard_Real (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) const>(&BRepTopAdaptor_TopolTool::Tol3d),
             R"#(returns 3d tolerance of the vertex V)#"  , py::arg("V")
          )
        .def("Pnt",
             (gp_Pnt (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) const) static_cast<gp_Pnt (BRepTopAdaptor_TopolTool::*)( const opencascade::handle<Adaptor3d_HVertex> &  ) const>(&BRepTopAdaptor_TopolTool::Pnt),
             R"#(returns 3d point of the vertex V)#"  , py::arg("V")
          )
        .def("ComputeSamplePoints",
             (void (BRepTopAdaptor_TopolTool::*)() ) static_cast<void (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::ComputeSamplePoints),
             R"#(None)#" 
          )
        .def("NbSamplesU",
             (Standard_Integer (BRepTopAdaptor_TopolTool::*)() ) static_cast<Standard_Integer (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::NbSamplesU),
             R"#(compute the sample-points for the intersections algorithms)#" 
          )
        .def("NbSamplesV",
             (Standard_Integer (BRepTopAdaptor_TopolTool::*)() ) static_cast<Standard_Integer (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::NbSamplesV),
             R"#(compute the sample-points for the intersections algorithms)#" 
          )
        .def("NbSamples",
             (Standard_Integer (BRepTopAdaptor_TopolTool::*)() ) static_cast<Standard_Integer (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::NbSamples),
             R"#(compute the sample-points for the intersections algorithms)#" 
          )
        .def("SamplePoint",
             (void (BRepTopAdaptor_TopolTool::*)( const Standard_Integer ,  gp_Pnt2d & ,  gp_Pnt &  ) ) static_cast<void (BRepTopAdaptor_TopolTool::*)( const Standard_Integer ,  gp_Pnt2d & ,  gp_Pnt &  ) >(&BRepTopAdaptor_TopolTool::SamplePoint),
             R"#(None)#"  , py::arg("Index"),  py::arg("P2d"),  py::arg("P3d")
          )
        .def("DomainIsInfinite",
             (Standard_Boolean (BRepTopAdaptor_TopolTool::*)() ) static_cast<Standard_Boolean (BRepTopAdaptor_TopolTool::*)() >(&BRepTopAdaptor_TopolTool::DomainIsInfinite),
             R"#(None)#" 
          )
    // methods using call by reference i.s.o. return
    // static methods
        .def_static("get_type_name_s",
                    (const char * (*)() ) static_cast<const char * (*)() >(&BRepTopAdaptor_TopolTool::get_type_name),
                    R"#(None)#" 
          )
        .def_static("get_type_descriptor_s",
                    (const opencascade::handle<Standard_Type> & (*)() ) static_cast<const opencascade::handle<Standard_Type> & (*)() >(&BRepTopAdaptor_TopolTool::get_type_descriptor),
                    R"#(None)#" 
          )
    // static methods using call by reference i.s.o. return
    // operators
    // additional methods and static methods
    // properties
    // methods returning by ref wrapped as properties
       .def("DynamicType",
             (const opencascade::handle<Standard_Type> & (BRepTopAdaptor_TopolTool::*)() const) static_cast<const opencascade::handle<Standard_Type> & (BRepTopAdaptor_TopolTool::*)() const>(&BRepTopAdaptor_TopolTool::DynamicType),
             R"#(None)#"
             
         )
;

// functions
// ./opencascade/BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx
// ./opencascade/BRepTopAdaptor_FClass2d.hxx
// ./opencascade/BRepTopAdaptor_HVertex.hxx
// ./opencascade/BRepTopAdaptor_MapOfShapeTool.hxx
// ./opencascade/BRepTopAdaptor_SeqOfPtr.hxx
// ./opencascade/BRepTopAdaptor_Tool.hxx
// ./opencascade/BRepTopAdaptor_TopolTool.hxx

// Additional functions

// operators

// register typdefs
    register_template_NCollection_DataMap<TopoDS_Shape, BRepTopAdaptor_Tool, TopTools_ShapeMapHasher>(m,"BRepTopAdaptor_MapOfShapeTool");


// exceptions

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

};

// user-defined post-inclusion per module

// user-defined post