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
|
// 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 <IGESData_IGESModel.hxx>
#include <Transfer_FinderProcess.hxx>
#include <IGESData_IGESEntity.hxx>
#include <TopoDS_Shape.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Shell.hxx>
#include <TopoDS_Face.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Solid.hxx>
#include <TopoDS_CompSolid.hxx>
#include <TopoDS_Compound.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <IGESData_IGESEntity.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <Geom_Surface.hxx>
#include <TopoDS_Wire.hxx>
// module includes
#include <BRepToIGES_BREntity.hxx>
#include <BRepToIGES_BRShell.hxx>
#include <BRepToIGES_BRSolid.hxx>
#include <BRepToIGES_BRWire.hxx>
// template related includes
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_BRepToIGES(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("BRepToIGES"));
py::object klass;
//Python trampoline classes
// classes
// Class BRepToIGES_BREntity from ./opencascade/BRepToIGES_BREntity.hxx
klass = m.attr("BRepToIGES_BREntity");
// nested enums
static_cast<py::class_<BRepToIGES_BREntity , shared_ptr<BRepToIGES_BREntity> >>(klass)
// constructors
.def(py::init< >() )
// custom constructors
// methods
.def("Init",
(void (BRepToIGES_BREntity::*)() ) static_cast<void (BRepToIGES_BREntity::*)() >(&BRepToIGES_BREntity::Init),
R"#(Initializes the field of the tool BREntity with default creating values.)#"
)
.def("SetModel",
(void (BRepToIGES_BREntity::*)( const opencascade::handle<IGESData_IGESModel> & ) ) static_cast<void (BRepToIGES_BREntity::*)( const opencascade::handle<IGESData_IGESModel> & ) >(&BRepToIGES_BREntity::SetModel),
R"#(Set the value of "TheModel")#" , py::arg("model")
)
.def("GetModel",
(opencascade::handle<IGESData_IGESModel> (BRepToIGES_BREntity::*)() const) static_cast<opencascade::handle<IGESData_IGESModel> (BRepToIGES_BREntity::*)() const>(&BRepToIGES_BREntity::GetModel),
R"#(Returns the value of "TheModel")#"
)
.def("GetUnit",
(Standard_Real (BRepToIGES_BREntity::*)() const) static_cast<Standard_Real (BRepToIGES_BREntity::*)() const>(&BRepToIGES_BREntity::GetUnit),
R"#(Returns the value of the UnitFlag of the header of the model in meters.)#"
)
.def("SetTransferProcess",
(void (BRepToIGES_BREntity::*)( const opencascade::handle<Transfer_FinderProcess> & ) ) static_cast<void (BRepToIGES_BREntity::*)( const opencascade::handle<Transfer_FinderProcess> & ) >(&BRepToIGES_BREntity::SetTransferProcess),
R"#(Set the value of "TheMap")#" , py::arg("TP")
)
.def("GetTransferProcess",
(opencascade::handle<Transfer_FinderProcess> (BRepToIGES_BREntity::*)() const) static_cast<opencascade::handle<Transfer_FinderProcess> (BRepToIGES_BREntity::*)() const>(&BRepToIGES_BREntity::GetTransferProcess),
R"#(Returns the value of "TheMap")#"
)
.def("TransferShape",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const Message_ProgressRange & ) >(&BRepToIGES_BREntity::TransferShape),
R"#(Returns the result of the transfert of any Shape If the transfer has failed, this member return a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("AddFail",
(void (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const Standard_CString ) ) static_cast<void (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const Standard_CString ) >(&BRepToIGES_BREntity::AddFail),
R"#(Records a new Fail message)#" , py::arg("start"), py::arg("amess")
)
.def("AddWarning",
(void (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const Standard_CString ) ) static_cast<void (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const Standard_CString ) >(&BRepToIGES_BREntity::AddWarning),
R"#(Records a new Warning message)#" , py::arg("start"), py::arg("amess")
)
.def("AddFail",
(void (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & , const Standard_CString ) ) static_cast<void (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & , const Standard_CString ) >(&BRepToIGES_BREntity::AddFail),
R"#(Records a new Fail message)#" , py::arg("start"), py::arg("amess")
)
.def("AddWarning",
(void (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & , const Standard_CString ) ) static_cast<void (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & , const Standard_CString ) >(&BRepToIGES_BREntity::AddWarning),
R"#(Records a new Warning message)#" , py::arg("start"), py::arg("amess")
)
.def("HasShapeResult",
(Standard_Boolean (BRepToIGES_BREntity::*)( const TopoDS_Shape & ) const) static_cast<Standard_Boolean (BRepToIGES_BREntity::*)( const TopoDS_Shape & ) const>(&BRepToIGES_BREntity::HasShapeResult),
R"#(Returns True if start was already treated and has a result in "TheMap" else returns False.)#" , py::arg("start")
)
.def("GetShapeResult",
(opencascade::handle<Standard_Transient> (BRepToIGES_BREntity::*)( const TopoDS_Shape & ) const) static_cast<opencascade::handle<Standard_Transient> (BRepToIGES_BREntity::*)( const TopoDS_Shape & ) const>(&BRepToIGES_BREntity::GetShapeResult),
R"#(Returns the result of the transfer of the Shape "start" contained in "TheMap" . (if HasShapeResult is True).)#" , py::arg("start")
)
.def("SetShapeResult",
(void (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const opencascade::handle<Standard_Transient> & ) ) static_cast<void (BRepToIGES_BREntity::*)( const TopoDS_Shape & , const opencascade::handle<Standard_Transient> & ) >(&BRepToIGES_BREntity::SetShapeResult),
R"#(set in "TheMap" the result of the transfer of the Shape "start".)#" , py::arg("start"), py::arg("result")
)
.def("HasShapeResult",
(Standard_Boolean (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<Standard_Boolean (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & ) const>(&BRepToIGES_BREntity::HasShapeResult),
R"#(Returns True if start was already treated and has a result in "TheMap" else returns False.)#" , py::arg("start")
)
.def("GetShapeResult",
(opencascade::handle<Standard_Transient> (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & ) const) static_cast<opencascade::handle<Standard_Transient> (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & ) const>(&BRepToIGES_BREntity::GetShapeResult),
R"#(Returns the result of the transfer of the Transient "start" contained in "TheMap" . (if HasShapeResult is True).)#" , py::arg("start")
)
.def("SetShapeResult",
(void (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Standard_Transient> & ) ) static_cast<void (BRepToIGES_BREntity::*)( const opencascade::handle<Standard_Transient> & , const opencascade::handle<Standard_Transient> & ) >(&BRepToIGES_BREntity::SetShapeResult),
R"#(set in "TheMap" the result of the transfer of the Transient "start".)#" , py::arg("start"), py::arg("result")
)
.def("GetConvertSurfaceMode",
(Standard_Boolean (BRepToIGES_BREntity::*)() const) static_cast<Standard_Boolean (BRepToIGES_BREntity::*)() const>(&BRepToIGES_BREntity::GetConvertSurfaceMode),
R"#(Returns mode for conversion of surfaces (value of parameter write.convertsurface.mode))#"
)
.def("GetPCurveMode",
(Standard_Boolean (BRepToIGES_BREntity::*)() const) static_cast<Standard_Boolean (BRepToIGES_BREntity::*)() const>(&BRepToIGES_BREntity::GetPCurveMode),
R"#(Returns mode for writing pcurves (value of parameter write.surfacecurve.mode))#"
)
// 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 BRepToIGES_BRShell from ./opencascade/BRepToIGES_BRShell.hxx
klass = m.attr("BRepToIGES_BRShell");
// nested enums
static_cast<py::class_<BRepToIGES_BRShell , shared_ptr<BRepToIGES_BRShell> , BRepToIGES_BREntity >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const BRepToIGES_BREntity & >() , py::arg("BR") )
// custom constructors
// methods
.def("TransferShell",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRShell::*)( const TopoDS_Shape & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRShell::*)( const TopoDS_Shape & , const Message_ProgressRange & ) >(&BRepToIGES_BRShell::TransferShell),
R"#(Transfert an Shape entity from TopoDS to IGES This entity must be a Face or a Shell. If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("TransferShell",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRShell::*)( const TopoDS_Shell & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRShell::*)( const TopoDS_Shell & , const Message_ProgressRange & ) >(&BRepToIGES_BRShell::TransferShell),
R"#(Transfert an Shell entity from TopoDS to IGES If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("TransferFace",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRShell::*)( const TopoDS_Face & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRShell::*)( const TopoDS_Face & , const Message_ProgressRange & ) >(&BRepToIGES_BRShell::TransferFace),
R"#(Transfert a Face entity from TopoDS to IGES If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
// 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 BRepToIGES_BRSolid from ./opencascade/BRepToIGES_BRSolid.hxx
klass = m.attr("BRepToIGES_BRSolid");
// nested enums
static_cast<py::class_<BRepToIGES_BRSolid , shared_ptr<BRepToIGES_BRSolid> , BRepToIGES_BREntity >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const BRepToIGES_BREntity & >() , py::arg("BR") )
// custom constructors
// methods
.def("TransferSolid",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_Shape & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_Shape & , const Message_ProgressRange & ) >(&BRepToIGES_BRSolid::TransferSolid),
R"#(Transfert a Shape entity from TopoDS to IGES this entity must be a Solid or a CompSolid or a Compound. If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("TransferSolid",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_Solid & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_Solid & , const Message_ProgressRange & ) >(&BRepToIGES_BRSolid::TransferSolid),
R"#(Transfert a Solid entity from TopoDS to IGES If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("TransferCompSolid",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_CompSolid & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_CompSolid & , const Message_ProgressRange & ) >(&BRepToIGES_BRSolid::TransferCompSolid),
R"#(Transfert an CompSolid entity from TopoDS to IGES If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("TransferCompound",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_Compound & , const Message_ProgressRange & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRSolid::*)( const TopoDS_Compound & , const Message_ProgressRange & ) >(&BRepToIGES_BRSolid::TransferCompound),
R"#(Transfert a Compound entity from TopoDS to IGES If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start"), py::arg("theProgress")=static_cast<const Message_ProgressRange &>(Message_ProgressRange ( ))
)
// 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 BRepToIGES_BRWire from ./opencascade/BRepToIGES_BRWire.hxx
klass = m.attr("BRepToIGES_BRWire");
// nested enums
static_cast<py::class_<BRepToIGES_BRWire , shared_ptr<BRepToIGES_BRWire> , BRepToIGES_BREntity >>(klass)
// constructors
.def(py::init< >() )
.def(py::init< const BRepToIGES_BREntity & >() , py::arg("BR") )
// custom constructors
// methods
.def("TransferWire",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Shape & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Shape & ) >(&BRepToIGES_BRWire::TransferWire),
R"#(Transfert a Shape entity from TopoDS to IGES this entity must be a Vertex or an Edge or a Wire. If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("start")
)
.def("TransferVertex",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & ) >(&BRepToIGES_BRWire::TransferVertex),
R"#(Transfert a Vertex entity from TopoDS to IGES If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("myvertex")
)
.def("TransferVertex",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Edge & , Standard_Real & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Edge & , Standard_Real & ) >(&BRepToIGES_BRWire::TransferVertex),
R"#(Transfert a Vertex entity on an Edge from TopoDS to IGES Returns the parameter of myvertex on myedge. If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("myvertex"), py::arg("myedge"), py::arg("parameter")
)
.def("TransferVertex",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Edge & , const TopoDS_Face & , Standard_Real & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Edge & , const TopoDS_Face & , Standard_Real & ) >(&BRepToIGES_BRWire::TransferVertex),
R"#(Transfert a Vertex entity of an edge on a Face from TopoDS to IGES Returns the parameter of myvertex on the pcurve of myedge on myface If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("myvertex"), py::arg("myedge"), py::arg("myface"), py::arg("parameter")
)
.def("TransferVertex",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Edge & , const opencascade::handle<Geom_Surface> & , const TopLoc_Location & , Standard_Real & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Edge & , const opencascade::handle<Geom_Surface> & , const TopLoc_Location & , Standard_Real & ) >(&BRepToIGES_BRWire::TransferVertex),
R"#(Transfert a Vertex entity of an edge on a Surface from TopoDS to IGES Returns the parameter of myvertex on the pcurve of myedge on mysurface If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("myvertex"), py::arg("myedge"), py::arg("mysurface"), py::arg("myloc"), py::arg("parameter")
)
.def("TransferVertex",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Face & , gp_Pnt2d & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Vertex & , const TopoDS_Face & , gp_Pnt2d & ) >(&BRepToIGES_BRWire::TransferVertex),
R"#(Transfert a Vertex entity on a Face from TopoDS to IGES Returns the parameters of myvertex on myface If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("myvertex"), py::arg("myface"), py::arg("mypoint")
)
.def("TransferEdge",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Edge & , const NCollection_DataMap<TopoDS_Shape, TopoDS_Shape, TopTools_ShapeMapHasher> & , const Standard_Boolean ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Edge & , const NCollection_DataMap<TopoDS_Shape, TopoDS_Shape, TopTools_ShapeMapHasher> & , const Standard_Boolean ) >(&BRepToIGES_BRWire::TransferEdge),
R"#(Transfert an Edge 3d entity from TopoDS to IGES If edge is REVERSED and isBRepMode is False 3D edge curve is reversed)#" , py::arg("theEdge"), py::arg("theOriginMap"), py::arg("theIsBRepMode")
)
.def("TransferEdge",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Edge & , const TopoDS_Face & , const NCollection_DataMap<TopoDS_Shape, TopoDS_Shape, TopTools_ShapeMapHasher> & , const Standard_Real , const Standard_Boolean ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Edge & , const TopoDS_Face & , const NCollection_DataMap<TopoDS_Shape, TopoDS_Shape, TopTools_ShapeMapHasher> & , const Standard_Real , const Standard_Boolean ) >(&BRepToIGES_BRWire::TransferEdge),
R"#(Transfert an Edge 2d entity on a Face from TopoDS to IGES)#" , py::arg("theEdge"), py::arg("theFace"), py::arg("theOriginMap"), py::arg("theLength"), py::arg("theIsBRepMode")
)
.def("TransferWire",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Wire & ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Wire & ) >(&BRepToIGES_BRWire::TransferWire),
R"#(Transfert a Wire entity from TopoDS to IGES If this Entity could not be converted, this member returns a NullEntity.)#" , py::arg("mywire")
)
.def("TransferWire",
(opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Wire & , const TopoDS_Face & , const NCollection_DataMap<TopoDS_Shape, TopoDS_Shape, TopTools_ShapeMapHasher> & , opencascade::handle<IGESData_IGESEntity> & , const Standard_Real ) ) static_cast<opencascade::handle<IGESData_IGESEntity> (BRepToIGES_BRWire::*)( const TopoDS_Wire & , const TopoDS_Face & , const NCollection_DataMap<TopoDS_Shape, TopoDS_Shape, TopTools_ShapeMapHasher> & , opencascade::handle<IGESData_IGESEntity> & , const Standard_Real ) >(&BRepToIGES_BRWire::TransferWire),
R"#(Transfert a Wire entity from TopoDS to IGES.)#" , py::arg("theWire"), py::arg("theFace"), py::arg("theOriginMap"), py::arg("theCurve2d"), py::arg("theLength")
)
// 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/BRepToIGES_BREntity.hxx
// ./opencascade/BRepToIGES_BRShell.hxx
// ./opencascade/BRepToIGES_BRSolid.hxx
// ./opencascade/BRepToIGES_BRWire.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
|