Part: expose ShapeFix_FixSmallSolid to Python

This commit is contained in:
wmayer
2022-05-05 17:18:47 +02:00
parent 4c2946c8a4
commit b70d8d3781
4 changed files with 169 additions and 0 deletions

View File

@@ -106,6 +106,7 @@
#include <Mod/Part/App/ShapeFix/ShapeFix_FacePy.h>
#include <Mod/Part/App/ShapeFix/ShapeFix_FaceConnectPy.h>
#include <Mod/Part/App/ShapeFix/ShapeFix_FixSmallFacePy.h>
#include <Mod/Part/App/ShapeFix/ShapeFix_FixSmallSolidPy.h>
#include <Mod/Part/App/ShapeFix/ShapeFix_FreeBoundsPy.h>
#include <Mod/Part/App/ShapeFix/ShapeFix_ShapePy.h>
#include <Mod/Part/App/ShapeFix/ShapeFix_ShapeTolerancePy.h>
@@ -367,6 +368,7 @@ PyMOD_INIT_FUNC(Part)
Base::Interpreter().addType(&Part::ShapeFix_EdgeConnectPy::Type, shapeFix, "EdgeConnect");
Base::Interpreter().addType(&Part::ShapeFix_FaceConnectPy::Type, shapeFix, "FaceConnect");
Base::Interpreter().addType(&Part::ShapeFix_FixSmallFacePy::Type, shapeFix, "FixSmallFace");
Base::Interpreter().addType(&Part::ShapeFix_FixSmallSolidPy::Type, shapeFix, "FixSmallSolid");
Base::Interpreter().addType(&Part::ShapeFix_FreeBoundsPy::Type, shapeFix, "FreeBounds");
Base::Interpreter().addType(&Part::ShapeFix_ShapeTolerancePy::Type, shapeFix, "ShapeTolerance");
Base::Interpreter().addType(&Part::ShapeFix_SplitCommonVertexPy::Type, shapeFix, "SplitCommonVertex");

View File

@@ -148,6 +148,7 @@ generate_from_xml(ShapeFix/ShapeFix_WireVertexPy)
generate_from_xml(ShapeFix/ShapeFix_EdgeConnectPy)
generate_from_xml(ShapeFix/ShapeFix_FaceConnectPy)
generate_from_xml(ShapeFix/ShapeFix_FixSmallFacePy)
generate_from_xml(ShapeFix/ShapeFix_FixSmallSolidPy)
generate_from_xml(ShapeFix/ShapeFix_FreeBoundsPy)
generate_from_xml(ShapeFix/ShapeFix_ShapeTolerancePy)
generate_from_xml(ShapeFix/ShapeFix_SplitCommonVertexPy)
@@ -461,6 +462,8 @@ SET(ShapeFixPy_SRCS
ShapeFix/ShapeFix_FaceConnectPyImp.cpp
ShapeFix/ShapeFix_FixSmallFacePy.xml
ShapeFix/ShapeFix_FixSmallFacePyImp.cpp
ShapeFix/ShapeFix_FixSmallSolidPy.xml
ShapeFix/ShapeFix_FixSmallSolidPyImp.cpp
ShapeFix/ShapeFix_FreeBoundsPy.xml
ShapeFix/ShapeFix_FreeBoundsPyImp.cpp
ShapeFix/ShapeFix_ShapeTolerancePy.xml

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<GenerateModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="generateMetaModel_Module.xsd">
<PythonExport
Father="ShapeFix_RootPy"
Name="ShapeFix_FixSmallSolidPy"
PythonName="Part.ShapeFix.FixSmallSolid"
Twin="ShapeFix_FixSmallSolid"
TwinPointer="ShapeFix_FixSmallSolid"
Include="ShapeFix_FixSmallSolid.hxx"
Namespace="Part"
FatherInclude="Mod/Part/App/ShapeFix/ShapeFix_RootPy.h"
FatherNamespace="Part"
Constructor="true">
<Documentation>
<Author Licence="LGPL" Name="Werner Mayer" EMail="wmayer@users.sourceforge.net" />
<UserDocu>Fixing solids with small size</UserDocu>
</Documentation>
<Methode Name="setFixMode">
<Documentation>
<UserDocu>
Set working mode for operator:
- theMode = 0 use both WidthFactorThreshold and VolumeThreshold parameters
- theMode = 1 use only WidthFactorThreshold parameter
- theMode = 2 use only VolumeThreshold parameter
</UserDocu>
</Documentation>
</Methode>
<Methode Name="setVolumeThreshold">
<Documentation>
<UserDocu>Set or clear volume threshold for small solids</UserDocu>
</Documentation>
</Methode>
<Methode Name="setWidthFactorThreshold">
<Documentation>
<UserDocu>Set or clear width factor threshold for small solids</UserDocu>
</Documentation>
</Methode>
<Methode Name="remove">
<Documentation>
<UserDocu>Remove small solids from the given shape</UserDocu>
</Documentation>
</Methode>
<Methode Name="merge">
<Documentation>
<UserDocu>Merge small solids in the given shape to adjacent non-small ones</UserDocu>
</Documentation>
</Methode>
</PythonExport>
</GenerateModel>

View File

@@ -0,0 +1,115 @@
/***************************************************************************
* Copyright (c) 2022 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 <ShapeBuild_ReShape.hxx>
# include <TopoDS_Shape.hxx>
#endif
#include "ShapeFix/ShapeFix_FixSmallSolidPy.h"
#include "ShapeFix/ShapeFix_FixSmallSolidPy.cpp"
#include "TopoShapePy.h"
using namespace Part;
std::string ShapeFix_FixSmallSolidPy::representation() const
{
return "<ShapeFix_FixSmallSolid object>";
}
PyObject *ShapeFix_FixSmallSolidPy::PyMake(struct _typeobject *, PyObject *, PyObject *) // Python wrapper
{
return new ShapeFix_FixSmallSolidPy(new ShapeFix_FixSmallSolid);
}
// constructor method
int ShapeFix_FixSmallSolidPy::PyInit(PyObject* args, PyObject* /*kwds*/)
{
if (!PyArg_ParseTuple(args, ""))
return -1;
return 0;
}
PyObject* ShapeFix_FixSmallSolidPy::setFixMode(PyObject *args)
{
int mode;
if (!PyArg_ParseTuple(args, "i", &mode))
return nullptr;
getShapeFix_FixSmallSolidPtr()->SetFixMode(mode);
Py_Return;
}
PyObject* ShapeFix_FixSmallSolidPy::setVolumeThreshold(PyObject *args)
{
double value = -1.0;
if (!PyArg_ParseTuple(args, "|d", &value))
return nullptr;
getShapeFix_FixSmallSolidPtr()->SetVolumeThreshold(value);
Py_Return;
}
PyObject* ShapeFix_FixSmallSolidPy::setWidthFactorThreshold(PyObject *args)
{
double value = -1.0;
if (!PyArg_ParseTuple(args, "|d", &value))
return nullptr;
getShapeFix_FixSmallSolidPtr()->SetWidthFactorThreshold(value);
Py_Return;
}
PyObject* ShapeFix_FixSmallSolidPy::remove(PyObject *args)
{
PyObject* shape;
if (!PyArg_ParseTuple(args, "O!", &TopoShapePy::Type, &shape))
return nullptr;
Handle(ShapeBuild_ReShape) context = new ShapeBuild_ReShape();
TopoShape sh = getShapeFix_FixSmallSolidPtr()->Remove(static_cast<TopoShapePy*>(shape)->getTopoShapePtr()->getShape(), context);
return sh.getPyObject();
}
PyObject* ShapeFix_FixSmallSolidPy::merge(PyObject *args)
{
PyObject* shape;
if (!PyArg_ParseTuple(args, "O!", &TopoShapePy::Type, &shape))
return nullptr;
Handle(ShapeBuild_ReShape) context = new ShapeBuild_ReShape();
TopoShape sh = getShapeFix_FixSmallSolidPtr()->Merge(static_cast<TopoShapePy*>(shape)->getTopoShapePtr()->getShape(), context);
return sh.getPyObject();
}
PyObject *ShapeFix_FixSmallSolidPy::getCustomAttributes(const char* /*attr*/) const
{
return nullptr;
}
int ShapeFix_FixSmallSolidPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
{
return 0;
}