Part: [skip ci] expose BRepOffsetAPI_MakeFilling to Python

This commit is contained in:
wmayer
2020-09-30 01:19:30 +02:00
parent 58c20b2567
commit 710a565184
4 changed files with 563 additions and 0 deletions

View File

@@ -105,6 +105,7 @@
#include "Mod/Part/App/SurfaceOfRevolutionPy.h"
#include "Mod/Part/App/ToroidPy.h"
#include "Mod/Part/App/BRepOffsetAPI_MakePipeShellPy.h"
#include "Mod/Part/App/BRepOffsetAPI_MakeFillingPy.h"
#include "Mod/Part/App/PartFeaturePy.h"
#include "Mod/Part/App/AttachEnginePy.h"
#include <Mod/Part/App/Geom2d/ArcOfCircle2dPy.h>
@@ -387,6 +388,7 @@ PyMOD_INIT_FUNC(Part)
Py_INCREF(brepModule);
PyModule_AddObject(partModule, "BRepOffsetAPI", brepModule);
Base::Interpreter().addType(&Part::BRepOffsetAPI_MakePipeShellPy::Type,brepModule,"MakePipeShell");
Base::Interpreter().addType(&Part::BRepOffsetAPI_MakeFillingPy::Type,brepModule,"MakeFilling");
// Geom2d package
#if PY_MAJOR_VERSION >= 3