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
|
// pybind 11 related includes
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
namespace py = pybind11;
// Standard Handle
#include <Standard_Handle.hxx>
// user-defined inclusion per module before includes
// includes to resolve forward declarations
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Face.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 <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
#include <Adaptor2d_Curve2d.hxx>
#include <Adaptor3d_Curve.hxx>
#include <Adaptor3d_Surface.hxx>
// module includes
#include <ChFi2d.hxx>
#include <ChFi2d_AnaFilletAlgo.hxx>
#include <ChFi2d_Builder.hxx>
#include <ChFi2d_ChamferAPI.hxx>
#include <ChFi2d_ConstructionError.hxx>
#include <ChFi2d_FilletAlgo.hxx>
#include <ChFi2d_FilletAPI.hxx>
// template related includes
// user-defined pre
#include "OCP_specific.inc"
// user-defined inclusion per module
// Module definiiton
void register_ChFi2d_enums(py::module &main_module) {
py::module m = main_module.def_submodule("ChFi2d", R"#()#");
// user-defined inclusion per module in the body
// enums
py::enum_<ChFi2d_ConstructionError>(m, "ChFi2d_ConstructionError",R"#(Error that can occur during the fillet construction on planar wire.)#")
.value("ChFi2d_NotPlanar",ChFi2d_ConstructionError::ChFi2d_NotPlanar)
.value("ChFi2d_NoFace",ChFi2d_ConstructionError::ChFi2d_NoFace)
.value("ChFi2d_InitialisationError",ChFi2d_ConstructionError::ChFi2d_InitialisationError)
.value("ChFi2d_ParametersError",ChFi2d_ConstructionError::ChFi2d_ParametersError)
.value("ChFi2d_Ready",ChFi2d_ConstructionError::ChFi2d_Ready)
.value("ChFi2d_IsDone",ChFi2d_ConstructionError::ChFi2d_IsDone)
.value("ChFi2d_ComputationError",ChFi2d_ConstructionError::ChFi2d_ComputationError)
.value("ChFi2d_ConnexionError",ChFi2d_ConstructionError::ChFi2d_ConnexionError)
.value("ChFi2d_TangencyError",ChFi2d_ConstructionError::ChFi2d_TangencyError)
.value("ChFi2d_FirstEdgeDegenerated",ChFi2d_ConstructionError::ChFi2d_FirstEdgeDegenerated)
.value("ChFi2d_LastEdgeDegenerated",ChFi2d_ConstructionError::ChFi2d_LastEdgeDegenerated)
.value("ChFi2d_BothEdgesDegenerated",ChFi2d_ConstructionError::ChFi2d_BothEdgesDegenerated)
.value("ChFi2d_NotAuthorized",ChFi2d_ConstructionError::ChFi2d_NotAuthorized).export_values();
//Python trampoline classes
// pre-register typdefs+classes (topologically sorted)
py::class_<ChFi2d , shared_ptr<ChFi2d> >(m,"ChFi2d",R"#(This package contains the algorithms used to build fillets or chamfers on planar wire.)#");
py::class_<ChFi2d_AnaFilletAlgo , shared_ptr<ChFi2d_AnaFilletAlgo> >(m,"ChFi2d_AnaFilletAlgo",R"#(An analytical algorithm for calculation of the fillets. It is implemented for segments and arcs of circle only.)#");
py::class_<ChFi2d_Builder , shared_ptr<ChFi2d_Builder> >(m,"ChFi2d_Builder",R"#(This class contains the algorithm used to build fillet on planar wire.)#");
py::class_<ChFi2d_ChamferAPI , shared_ptr<ChFi2d_ChamferAPI> >(m,"ChFi2d_ChamferAPI",R"#(A class making a chamfer between two linear edges.)#");
py::class_<ChFi2d_FilletAPI , shared_ptr<ChFi2d_FilletAPI> >(m,"ChFi2d_FilletAPI",R"#(An interface class for 2D fillets. Open CASCADE provides two algorithms for 2D fillets: ChFi2d_Builder - it constructs a fillet or chamfer for linear and circular edges of a face. ChFi2d_FilletAPI - it encapsulates two algorithms: ChFi2d_AnaFilletAlgo - analytical constructor of the fillet. It works only for linear and circular edges, having a common point. ChFi2d_FilletAlgo - iteration recursive method constructing the fillet edge for any type of edges including ellipses and b-splines. The edges may even have no common point.)#");
py::class_<ChFi2d_FilletAlgo , shared_ptr<ChFi2d_FilletAlgo> >(m,"ChFi2d_FilletAlgo",R"#(Algorithm that creates fillet edge: arc tangent to two edges in the start and in the end vertices. Initial edges must be located on the plane and must be connected by the end or start points (shared vertices are not obligatory). Created fillet arc is created with the given radius, that is useful in sketcher applications.)#");
py::class_<FilletPoint , shared_ptr<FilletPoint> >(m,"FilletPoint",R"#(Private class. Corresponds to the point on the first curve, computed fillet function and derivative on it.Private class. Corresponds to the point on the first curve, computed fillet function and derivative on it.)#");
};
// user-defined post-inclusion per module
// user-defined post
|