eb2e4a7a73
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5337 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
134 lines
4.7 KiB
C++
134 lines
4.7 KiB
C++
/***************************************************************************
|
|
* Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2008 *
|
|
* *
|
|
* 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"
|
|
|
|
#include <BRepGProp.hxx>
|
|
#include <BRepTools.hxx>
|
|
#include <GProp_GProps.hxx>
|
|
#include <BRepBuilderAPI_MakeSolid.hxx>
|
|
#include <TopExp_Explorer.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <TopoDS_Solid.hxx>
|
|
#include <TopoDS_Shell.hxx>
|
|
|
|
#include <Base/VectorPy.h>
|
|
#include <Base/GeometryPyCXX.h>
|
|
|
|
#include "Mod/Part/App/TopoShape.h"
|
|
|
|
// inclusion of the generated files (generated out of TopoShapeSolidPy.xml)
|
|
#include "TopoShapeShellPy.h"
|
|
#include "TopoShapeSolidPy.h"
|
|
#include "TopoShapeSolidPy.cpp"
|
|
|
|
using namespace Part;
|
|
|
|
// returns a string which represents the object e.g. when printed in python
|
|
std::string TopoShapeSolidPy::representation(void) const
|
|
{
|
|
std::stringstream str;
|
|
str << "<Solid object at " << getTopoShapePtr() << ">";
|
|
|
|
return str.str();
|
|
}
|
|
|
|
PyObject *TopoShapeSolidPy::PyMake(struct _typeobject *, PyObject *, PyObject *)
|
|
{
|
|
// create a new instance of TopoShapeSolidPy and the Twin object
|
|
return new TopoShapeSolidPy(new TopoShape);
|
|
}
|
|
|
|
// constructor method
|
|
int TopoShapeSolidPy::PyInit(PyObject* args, PyObject* /*kwd*/)
|
|
{
|
|
PyObject *obj;
|
|
if (!PyArg_ParseTuple(args, "O!", &(TopoShapePy::Type), &obj))
|
|
return -1;
|
|
|
|
try {
|
|
BRepBuilderAPI_MakeSolid mkSolid;
|
|
const TopoDS_Shape& shape = static_cast<TopoShapePy*>(obj)
|
|
->getTopoShapePtr()->_Shape;
|
|
TopExp_Explorer anExp (shape, TopAbs_SHELL);
|
|
int count=0;
|
|
for (; anExp.More(); anExp.Next()) {
|
|
++count;
|
|
mkSolid.Add(TopoDS::Shell(anExp.Current()));
|
|
}
|
|
|
|
if (count == 0)
|
|
Standard_Failure::Raise("No shells found in shape");
|
|
|
|
const TopoDS_Solid& solid = mkSolid.Solid();
|
|
getTopoShapePtr()->_Shape = solid;
|
|
}
|
|
catch (Standard_Failure) {
|
|
PyErr_SetString(PyExc_Exception, "creation of solid failed");
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
Py::Object TopoShapeSolidPy::getMatrixOfInertia(void) const
|
|
{
|
|
GProp_GProps props;
|
|
BRepGProp::VolumeProperties(getTopoShapePtr()->_Shape, props);
|
|
gp_Mat m = props.MatrixOfInertia();
|
|
Base::Matrix4D mat;
|
|
for (int i=0; i<3; i++) {
|
|
for (int j=0; j<3; j++) {
|
|
mat[i][j] = m(i+1,j+1);
|
|
}
|
|
}
|
|
return Py::Matrix(mat);
|
|
}
|
|
|
|
Py::Object TopoShapeSolidPy::getCenterOfMass(void) const
|
|
{
|
|
GProp_GProps props;
|
|
BRepGProp::VolumeProperties(getTopoShapePtr()->_Shape, props);
|
|
gp_Pnt c = props.CentreOfMass();
|
|
return Py::Vector(Base::Vector3d(c.X(),c.Y(),c.Z()));
|
|
}
|
|
|
|
Py::Object TopoShapeSolidPy::getOuterShell(void) const
|
|
{
|
|
TopoDS_Shell shell;
|
|
const TopoDS_Shape& shape = getTopoShapePtr()->_Shape;
|
|
if (!shape.IsNull() && shape.ShapeType() == TopAbs_SOLID)
|
|
shell = BRepTools::OuterShell(TopoDS::Solid(shape));
|
|
return Py::Object(new TopoShapeShellPy(new TopoShape(shell)),true);
|
|
}
|
|
|
|
PyObject *TopoShapeSolidPy::getCustomAttributes(const char* /*attr*/) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int TopoShapeSolidPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
|
{
|
|
return 0;
|
|
}
|