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

View File

@@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8"?>
<GenerateModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="generateMetaModel_Module.xsd">
<PythonExport
Father="PyObjectBase"
Name="BRepOffsetAPI_MakeFillingPy"
PythonName="Part.BRepOffsetAPI_MakeFilling"
Twin="BRepOffsetAPI_MakeFilling"
TwinPointer="BRepOffsetAPI_MakeFilling"
Include="BRepOffsetAPI_MakeFilling.hxx"
Namespace="Part"
FatherInclude="Base/PyObjectBase.h"
FatherNamespace="Base"
Constructor="true"
Delete="true">
<Documentation>
<Author Licence="LGPL" Name="Werner Mayer" EMail="wmayer[at]users.sourceforge.net" />
<UserDocu>N-Side Filling</UserDocu>
</Documentation>
<Methode Name="setConstrParam" Keyword="true">
<Documentation>
<UserDocu>
setConstrParam(Tol2d=0.00001, Tol3d=0.0001, TolAng=0.01, TolCurv=0.1)
Sets the values of Tolerances used to control the constraint.
</UserDocu>
</Documentation>
</Methode>
<Methode Name="setResolParam" Keyword="true">
<Documentation>
<UserDocu>
setResolParam(Degree=3, NbPtsOnCur=15, NbIter=2, Anisotropy=False)
Sets the parameters used for resolution.
</UserDocu>
</Documentation>
</Methode>
<Methode Name="setApproxParam" Keyword="true">
<Documentation>
<UserDocu>
setApproxParam(MaxDeg=8, MaxSegments=9)
Sets the parameters used to approximate the filling the surface
</UserDocu>
</Documentation>
</Methode>
<Methode Name="loadInitSurface">
<Documentation>
<UserDocu>
loadInitSurface(face)
Loads the initial surface.
</UserDocu>
</Documentation>
</Methode>
<Methode Name="add" Keyword="true">
<Documentation>
<UserDocu>
add(Edge, Order, IsBound=True)
add(Edge, Support, Order, IsBound=True)
add(Support, Order)
add(Point)
add(U, V, Support, Order)
Adds a new constraint.
</UserDocu>
</Documentation>
</Methode>
<Methode Name="build">
<Documentation>
<UserDocu>Builds the resulting faces.</UserDocu>
</Documentation>
</Methode>
<Methode Name="isDone">
<Documentation>
<UserDocu>Tests whether computation of the filling plate has been completed.</UserDocu>
</Documentation>
</Methode>
<Methode Name="G0Error">
<Documentation>
<UserDocu>
G0Error([int])
Returns the maximum distance between the result and the constraints.
</UserDocu>
</Documentation>
</Methode>
<Methode Name="G1Error">
<Documentation>
<UserDocu>
G1Error([int])
Returns the maximum angle between the result and the constraints.
</UserDocu>
</Documentation>
</Methode>
<Methode Name="G2Error">
<Documentation>
<UserDocu>
G2Error([int])
Returns the greatest difference in curvature between the result and the constraints.
</UserDocu>
</Documentation>
</Methode>
<Methode Name="shape">
<Documentation>
<UserDocu>
shape()
Returns the resulting shape.
</UserDocu>
</Documentation>
</Methode>
</PythonExport>
</GenerateModel>

View File

@@ -0,0 +1,452 @@
/***************************************************************************
* Copyright (c) 2012 Werner Mayer <wmayer[at]users.sourceforge.net> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
# include <BRepOffsetAPI_MakeFilling.hxx>
# include <gp_Pnt.hxx>
# include <GeomAbs_Shape.hxx>
# include <TopoDS.hxx>
# include <TopoDS_Face.hxx>
#endif
#include "BRepOffsetAPI_MakeFillingPy.h"
#include "BRepOffsetAPI_MakeFillingPy.cpp"
#include "TopoShapeEdgePy.h"
#include "TopoShapeFacePy.h"
#include <Base/VectorPy.h>
using namespace Part;
/*!
* \brief BRepOffsetAPI_MakeFillingPy::PyMake
* \code
v1=App.Vector(0,0,0)
v2=App.Vector(10,0,0)
v3=App.Vector(10,10,3)
v4=App.Vector(0,10,0)
v5=App.Vector(5,5,5)
l1=Part.makeLine(v1, v2)
l2=Part.makeLine(v2, v3)
l3=Part.makeLine(v3, v4)
l4=Part.makeLine(v4, v1)
bp=Part.BRepOffsetAPI.MakeFilling()
bp.add(l1, 0, True)
bp.add(l2, 0, True)
bp.add(l3, 0, True)
bp.add(l4, 0, True)
bp.add(v5)
bp.build()
s=bp.shape()
Part.show(s)
Part.show(l1)
Part.show(l2)
Part.show(l3)
Part.show(l4)
bp.surfInit()
* \endcode
*/
PyObject *BRepOffsetAPI_MakeFillingPy::PyMake(struct _typeobject *, PyObject *, PyObject *) // Python wrapper
{
// create a new instance of BRepOffsetAPI_MakeFillingPy
return new BRepOffsetAPI_MakeFillingPy(nullptr);
}
// constructor method
int BRepOffsetAPI_MakeFillingPy::PyInit(PyObject* args, PyObject* kwds)
{
int degree = 3;
int nbPtsOnCur = 15;
int nbIter = 2;
int maxDeg = 8;
int maxSegments = 9;
double tol2d = 0.00001;
double tol3d = 0.0001;
double tolAng = 0.01;
double tolCurv = 0.1;
PyObject* anisotropy = Py_False;
static char* keywords[] = {"Degree", "NbPtsOnCur", "NbIter", "MaxDegree", "MaxSegments", "Tol2d",
"Tol3d", "TolAng", "TolCurv", "Anisotropy", nullptr};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|iiiiiddddO!", keywords,
&degree, &nbPtsOnCur, &nbIter, &maxDeg, &maxSegments,
&tol2d, &tol3d, &tolAng, &tolCurv, &PyBool_Type, &anisotropy))
return -1;
try {
std::unique_ptr<BRepOffsetAPI_MakeFilling> ptr(new BRepOffsetAPI_MakeFilling(degree, nbPtsOnCur, nbIter,
PyObject_IsTrue(anisotropy) ? Standard_True : Standard_False,
tol2d, tol3d, tolAng, tolCurv, maxDeg, maxSegments));
setTwinPointer(ptr.release());
return 0;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return -1;
}
}
// returns a string which represents the object e.g. when printed in python
std::string BRepOffsetAPI_MakeFillingPy::representation(void) const
{
return std::string("<BRepOffsetAPI_MakeFilling object>");
}
PyObject* BRepOffsetAPI_MakeFillingPy::setConstrParam(PyObject *args, PyObject *kwds)
{
double tol2d = 0.00001;
double tol3d = 0.0001;
double tolAng = 0.01;
double tolCurv = 0.1;
static char* keywords[] = {"Tol2d", "Tol3d", "TolAng", "TolCurv", nullptr};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|dddd", keywords,
&tol2d, &tol3d, &tolAng, &tolCurv))
return nullptr;
try {
getBRepOffsetAPI_MakeFillingPtr()->SetConstrParam(tol2d, tol3d, tolAng, tolCurv);
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::setResolParam(PyObject *args, PyObject *kwds)
{
int degree = 3;
int nbPtsOnCur = 15;
int nbIter = 2;
PyObject* anisotropy = Py_False;
static char* keywords[] = {"Degree", "NbPtsOnCur", "NbIter", "Anisotropy", nullptr};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|iiiO!", keywords,
&degree, &nbPtsOnCur, &nbIter, &PyBool_Type, &anisotropy))
return nullptr;
try {
getBRepOffsetAPI_MakeFillingPtr()->SetResolParam(degree, nbPtsOnCur, nbIter,
PyObject_IsTrue(anisotropy) ? Standard_True : Standard_False);
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::setApproxParam(PyObject *args, PyObject *kwds)
{
int maxDeg = 8;
int maxSegments = 9;
static char* keywords[] = {"MaxDegree", "MaxSegments", nullptr};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|ii", keywords,
&maxDeg, &maxSegments))
return nullptr;
try {
getBRepOffsetAPI_MakeFillingPtr()->SetApproxParam(maxDeg, maxSegments);
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::loadInitSurface(PyObject *args)
{
PyObject* shape;
if (!PyArg_ParseTuple(args, "O!", &(TopoShapeFacePy::Type), &shape))
return nullptr;
TopoDS_Face face = TopoDS::Face(static_cast<TopoShapeFacePy*>(shape)->getTopoShapePtr()->getShape());
if (face.IsNull()) {
PyErr_SetString(PyExc_ReferenceError, "No valid face");
return nullptr;
}
try {
getBRepOffsetAPI_MakeFillingPtr()->LoadInitSurface(face);
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::add(PyObject *args, PyObject *kwds)
{
// 1st
PyObject* pnt;
static char* keywords_pnt[] = {"Point", nullptr};
if (PyArg_ParseTupleAndKeywords(args, kwds, "O!", keywords_pnt,
&Base::VectorPy::Type, &pnt)) {
try {
Base::Vector3d vec = static_cast<Base::VectorPy*>(pnt)->value();
getBRepOffsetAPI_MakeFillingPtr()->Add(gp_Pnt(vec.x, vec.y, vec.z));
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
// 2nd
PyObject* support;
int order;
static char* keywords_sup_ord[] = {"Support", "Order", nullptr};
PyErr_Clear();
if (PyArg_ParseTupleAndKeywords(args, kwds, "O!i", keywords_sup_ord,
&TopoShapeFacePy::Type, &support, &order)) {
try {
TopoDS_Face face = TopoDS::Face(static_cast<TopoShapeFacePy*>(support)->getTopoShapePtr()->getShape());
if (face.IsNull()) {
PyErr_SetString(PyExc_ReferenceError, "No valid face");
return nullptr;
}
if (order < 0 || order > 2) {
PyErr_SetString(PyExc_ReferenceError, "Order must be in the [0, 2] with 0 -> C0, 1 -> G1, 2 -> G2");
return nullptr;
}
getBRepOffsetAPI_MakeFillingPtr()->Add(face, static_cast<GeomAbs_Shape>(order));
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
// 3rd
PyObject* constr;
PyObject* isbound = Py_True;
static char* keywords_const[] = {"Constraint", "Order", "IsBound", nullptr};
PyErr_Clear();
if (PyArg_ParseTupleAndKeywords(args, kwds, "O!i|O!", keywords_const,
&TopoShapeEdgePy::Type, &constr,
&order, &PyBool_Type, isbound)) {
try {
TopoDS_Edge edge = TopoDS::Edge(static_cast<TopoShapeEdgePy*>(constr)->getTopoShapePtr()->getShape());
if (edge.IsNull()) {
PyErr_SetString(PyExc_ReferenceError, "No valid constraint edge");
return nullptr;
}
if (order < 0 || order > 2) {
PyErr_SetString(PyExc_ReferenceError, "Order must be in the [0, 2] with 0 -> C0, 1 -> G1, 2 -> G2");
return nullptr;
}
getBRepOffsetAPI_MakeFillingPtr()->Add(edge, static_cast<GeomAbs_Shape>(order),
PyObject_IsTrue(isbound) ? Standard_True : Standard_False);
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
// 4th
static char* keywords_const_sup[] = {"Constraint", "Support", "Order", "IsBound", nullptr};
PyErr_Clear();
if (PyArg_ParseTupleAndKeywords(args, kwds, "O!O!i|O!", keywords_const_sup,
&TopoShapeEdgePy::Type, &constr,
&TopoShapeFacePy::Type, &support,
&order, &PyBool_Type, isbound)) {
try {
TopoDS_Edge edge = TopoDS::Edge(static_cast<TopoShapeEdgePy*>(constr)->getTopoShapePtr()->getShape());
if (edge.IsNull()) {
PyErr_SetString(PyExc_ReferenceError, "No valid constraint edge");
return nullptr;
}
TopoDS_Face face = TopoDS::Face(static_cast<TopoShapeFacePy*>(support)->getTopoShapePtr()->getShape());
if (face.IsNull()) {
PyErr_SetString(PyExc_ReferenceError, "No valid face");
return nullptr;
}
if (order < 0 || order > 2) {
PyErr_SetString(PyExc_ReferenceError, "Order must be in the [0, 2] with 0 -> C0, 1 -> G1, 2 -> G2");
return nullptr;
}
getBRepOffsetAPI_MakeFillingPtr()->Add(edge, face, static_cast<GeomAbs_Shape>(order),
PyObject_IsTrue(isbound) ? Standard_True : Standard_False);
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
// 5th
double u, v;
static char* keywords_uv[] = {"U", "V", "Support", "Order", nullptr};
PyErr_Clear();
if (PyArg_ParseTupleAndKeywords(args, kwds, "ddO!i", keywords_uv,
&u, &v, &TopoShapeFacePy::Type, &support, &order)) {
try {
TopoDS_Face face = TopoDS::Face(static_cast<TopoShapeFacePy*>(support)->getTopoShapePtr()->getShape());
if (face.IsNull()) {
PyErr_SetString(PyExc_ReferenceError, "No valid face");
return nullptr;
}
if (order < 0 || order > 2) {
PyErr_SetString(PyExc_ReferenceError, "Order must be in the [0, 2] with 0 -> C0, 1 -> G1, 2 -> G2");
return nullptr;
}
getBRepOffsetAPI_MakeFillingPtr()->Add(u, v, face, static_cast<GeomAbs_Shape>(order));
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyErr_SetString(PyExc_TypeError, "wrong argument");
return nullptr;
}
PyObject* BRepOffsetAPI_MakeFillingPy::build(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return nullptr;
try {
getBRepOffsetAPI_MakeFillingPtr()->Build();
Py_Return;
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::isDone(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return nullptr;
try {
Standard_Boolean ok = getBRepOffsetAPI_MakeFillingPtr()->IsDone();
return Py_BuildValue("O", (ok ? Py_True : Py_False));
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::G0Error(PyObject *args)
{
int index = 0;
if (!PyArg_ParseTuple(args, "|i", &index))
return nullptr;
try {
Standard_Real v = index < 1 ? getBRepOffsetAPI_MakeFillingPtr()->G0Error()
: getBRepOffsetAPI_MakeFillingPtr()->G0Error(index);
return PyFloat_FromDouble(v);
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::G1Error(PyObject *args)
{
int index = 0;
if (!PyArg_ParseTuple(args, "|i", &index))
return nullptr;
try {
Standard_Real v = index < 1 ? getBRepOffsetAPI_MakeFillingPtr()->G1Error()
: getBRepOffsetAPI_MakeFillingPtr()->G1Error(index);
return PyFloat_FromDouble(v);
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::G2Error(PyObject *args)
{
int index = 0;
if (!PyArg_ParseTuple(args, "|i", &index))
return nullptr;
try {
Standard_Real v = index < 1 ? getBRepOffsetAPI_MakeFillingPtr()->G2Error()
: getBRepOffsetAPI_MakeFillingPtr()->G2Error(index);
return PyFloat_FromDouble(v);
}
catch (const Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return nullptr;
}
}
PyObject* BRepOffsetAPI_MakeFillingPy::shape(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return 0;
try {
const TopoDS_Shape& shape = this->getBRepOffsetAPI_MakeFillingPtr()->Shape();
return new TopoShapePy(new TopoShape(shape));
}
catch (Standard_Failure& e) {
PyErr_SetString(PyExc_RuntimeError, e.GetMessageString());
return 0;
}
}
PyObject *BRepOffsetAPI_MakeFillingPy::getCustomAttributes(const char* /*attr*/) const
{
return nullptr;
}
int BRepOffsetAPI_MakeFillingPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
{
return 0;
}

View File

@@ -91,6 +91,7 @@ generate_from_xml(TopoShapeSolidPy)
generate_from_xml(TopoShapeVertexPy)
generate_from_xml(TopoShapeWirePy)
generate_from_xml(BRepOffsetAPI_MakePipeShellPy)
generate_from_xml(BRepOffsetAPI_MakeFillingPy)
# make sure to create the directory at configure time
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Geom2d)
@@ -301,6 +302,8 @@ SET(Python_SRCS
TopoShapeWirePyImp.cpp
BRepOffsetAPI_MakePipeShellPy.xml
BRepOffsetAPI_MakePipeShellPyImp.cpp
BRepOffsetAPI_MakeFillingPy.xml
BRepOffsetAPI_MakeFillingPyImp.cpp
PartPyCXX.cpp
PartPyCXX.h
)