// SPDX-License-Identifier: LGPL-2.1-or-later /*************************************************************************** * Copyright (c) 2022 Werner Mayer * * * * 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 #include #include "ShapeFix/ShapeFix_ShellPy.h" #include "ShapeFix/ShapeFix_ShellPy.cpp" #include "ShapeFix/ShapeFix_FacePy.h" #include "TopoShapeShellPy.h" using namespace Part; // returns a string which represents the object e.g. when printed in python std::string ShapeFix_ShellPy::representation() const { return ""; } PyObject* ShapeFix_ShellPy::PyMake(struct _typeobject*, PyObject*, PyObject*) // Python wrapper { // create a new instance of ShapeFix_RootPy return new ShapeFix_ShellPy(nullptr); } // constructor method int ShapeFix_ShellPy::PyInit(PyObject* args, PyObject* /*kwds*/) { PyObject* shell = nullptr; if (!PyArg_ParseTuple(args, "|O!", &TopoShapeShellPy::Type, &shell)) { return -1; } setHandle(new ShapeFix_Shell); if (shell) { getShapeFix_ShellPtr()->Init( TopoDS::Shell(static_cast(shell)->getTopoShapePtr()->getShape()) ); } return 0; } PyObject* ShapeFix_ShellPy::init(PyObject* args) { PyObject* shell; if (!PyArg_ParseTuple(args, "O!", &TopoShapeShellPy::Type, &shell)) { return nullptr; } getShapeFix_ShellPtr()->Init( TopoDS::Shell(static_cast(shell)->getTopoShapePtr()->getShape()) ); Py_Return; } PyObject* ShapeFix_ShellPy::fixFaceTool(PyObject* args) { if (!PyArg_ParseTuple(args, "")) { return nullptr; } Handle(ShapeFix_Face) tool = getShapeFix_ShellPtr()->FixFaceTool(); ShapeFix_FacePy* face = new ShapeFix_FacePy(nullptr); face->setHandle(tool); return face; } PyObject* ShapeFix_ShellPy::perform(PyObject* args) { if (!PyArg_ParseTuple(args, "")) { return nullptr; } Standard_Boolean ok = getShapeFix_ShellPtr()->Perform(); return Py::new_reference_to(Py::Boolean(ok ? true : false)); } PyObject* ShapeFix_ShellPy::shell(PyObject* args) { if (!PyArg_ParseTuple(args, "")) { return nullptr; } TopoShape shape = getShapeFix_ShellPtr()->Shell(); return shape.getPyObject(); } PyObject* ShapeFix_ShellPy::numberOfShells(PyObject* args) { if (!PyArg_ParseTuple(args, "")) { return nullptr; } int num = getShapeFix_ShellPtr()->NbShells(); return Py::new_reference_to(Py::Long(num)); } PyObject* ShapeFix_ShellPy::shape(PyObject* args) { if (!PyArg_ParseTuple(args, "")) { return nullptr; } TopoShape shape = getShapeFix_ShellPtr()->Shape(); return shape.getPyObject(); } PyObject* ShapeFix_ShellPy::errorFaces(PyObject* args) { if (!PyArg_ParseTuple(args, "")) { return nullptr; } TopoShape shape = getShapeFix_ShellPtr()->ErrorFaces(); return shape.getPyObject(); } PyObject* ShapeFix_ShellPy::fixFaceOrientation(PyObject* args) { PyObject* shell; PyObject* multiConex = Py_True; PyObject* nonManifold = Py_False; if (!PyArg_ParseTuple( args, "O!|O!O!", &TopoShapeShellPy::Type, &shell, &PyBool_Type, &multiConex, &PyBool_Type, &nonManifold )) { return nullptr; } bool ok = getShapeFix_ShellPtr()->FixFaceOrientation( TopoDS::Shell(static_cast(shell)->getTopoShapePtr()->getShape()), Base::asBoolean(multiConex), Base::asBoolean(nonManifold) ); return Py::new_reference_to(Py::Boolean(ok)); } PyObject* ShapeFix_ShellPy::setNonManifoldFlag(PyObject* args) { PyObject* nonManifold; if (!PyArg_ParseTuple(args, "O!", &PyBool_Type, &nonManifold)) { return nullptr; } getShapeFix_ShellPtr()->SetNonManifoldFlag(Base::asBoolean(nonManifold)); Py_Return; } Py::Boolean ShapeFix_ShellPy::getFixFaceMode() const { return Py::Boolean(getShapeFix_ShellPtr()->FixFaceMode()); } void ShapeFix_ShellPy::setFixFaceMode(Py::Boolean arg) { getShapeFix_ShellPtr()->FixFaceMode() = arg; } Py::Boolean ShapeFix_ShellPy::getFixOrientationMode() const { return Py::Boolean(getShapeFix_ShellPtr()->FixOrientationMode()); } void ShapeFix_ShellPy::setFixOrientationMode(Py::Boolean arg) { getShapeFix_ShellPtr()->FixOrientationMode() = arg; } PyObject* ShapeFix_ShellPy::getCustomAttributes(const char* /*attr*/) const { return nullptr; } int ShapeFix_ShellPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/) { return 0; }