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
|
// 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 <ShapeProcess_ShapeContext.hxx>
// module includes
#include <ShapeProcessAPI_ApplySequence.hxx>
// template related includes
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_ShapeProcessAPI(py::module &main_module) {
py::module m = static_cast<py::module>(main_module.attr("ShapeProcessAPI"));
py::object klass;
//Python trampoline classes
// classes
// Class ShapeProcessAPI_ApplySequence from ./opencascade/ShapeProcessAPI_ApplySequence.hxx
klass = m.attr("ShapeProcessAPI_ApplySequence");
// nested enums
static_cast<py::class_<ShapeProcessAPI_ApplySequence , shared_ptr<ShapeProcessAPI_ApplySequence> >>(klass)
// constructors
.def(py::init< const Standard_CString, const Standard_CString >() , py::arg("rscName"), py::arg("seqName")=static_cast< const Standard_CString>("") )
// custom constructors
// methods
.def("PrepareShape",
(TopoDS_Shape (ShapeProcessAPI_ApplySequence::*)( const TopoDS_Shape & , const Standard_Boolean , const TopAbs_ShapeEnum , const Message_ProgressRange & ) ) static_cast<TopoDS_Shape (ShapeProcessAPI_ApplySequence::*)( const TopoDS_Shape & , const Standard_Boolean , const TopAbs_ShapeEnum , const Message_ProgressRange & ) >(&ShapeProcessAPI_ApplySequence::PrepareShape),
R"#(Performs sequence of operators stored in myRsc. If <fillmap> is True adds history "shape-shape" into myMap for shape and its subshapes until level <until> (included). If <until> is TopAbs_SHAPE, all the subshapes are considered.)#" , py::arg("shape"), py::arg("fillmap")=static_cast< const Standard_Boolean>(Standard_False), py::arg("until")=static_cast< const TopAbs_ShapeEnum>(TopAbs_SHAPE), py::arg("theProgress")=static_cast< const Message_ProgressRange &>(Message_ProgressRange ( ))
)
.def("ClearMap",
(void (ShapeProcessAPI_ApplySequence::*)() ) static_cast<void (ShapeProcessAPI_ApplySequence::*)() >(&ShapeProcessAPI_ApplySequence::ClearMap),
R"#(Clears myMap with accumulated history.)#"
)
.def("PrintPreparationResult",
(void (ShapeProcessAPI_ApplySequence::*)() const) static_cast<void (ShapeProcessAPI_ApplySequence::*)() const>(&ShapeProcessAPI_ApplySequence::PrintPreparationResult),
R"#(Prints result of preparation onto the messenger of the context. Note that results can be accumulated from previous preparations it method ClearMap was not called before PrepareShape.)#"
)
// methods using call by reference i.s.o. return
// static methods
// static methods using call by reference i.s.o. return
// operators
// additional methods and static methods
// properties
// methods returning by ref wrapped as properties
.def("Context",
(handle<ShapeProcess_ShapeContext> & (ShapeProcessAPI_ApplySequence::*)() ) static_cast<handle<ShapeProcess_ShapeContext> & (ShapeProcessAPI_ApplySequence::*)() >(&ShapeProcessAPI_ApplySequence::Context),
R"#(Returns object for managing resource file and sequence of operators.)#"
)
.def("Map",
( const TopTools_DataMapOfShapeShape & (ShapeProcessAPI_ApplySequence::*)() const) static_cast< const TopTools_DataMapOfShapeShape & (ShapeProcessAPI_ApplySequence::*)() const>(&ShapeProcessAPI_ApplySequence::Map),
R"#(Returns myMap with accumulated history.)#"
)
;
// functions
// ./opencascade/ShapeProcessAPI_ApplySequence.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
|