Files
create/src/Mod/Mesh/App/FacetPyImp.cpp
2017-02-24 14:20:50 +01:00

220 lines
7.2 KiB
C++

/***************************************************************************
* Copyright (c) 2007 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"
#include "Mesh.h"
#include "Facet.h"
#include <Mod/Mesh/App/FacetPy.h>
#include <Mod/Mesh/App/FacetPy.cpp>
#include <Base/VectorPy.h>
using namespace Mesh;
// returns a string which represent the object e.g. when printed in python
std::string FacetPy::representation(void) const
{
FacetPy::PointerType ptr = getFacetPtr();
std::stringstream str;
str << "Facet (";
if (ptr->isBound()) {
str << "(" << ptr->_aclPoints[0].x << ", " << ptr->_aclPoints[0].y << ", " << ptr->_aclPoints[0].z << ", Idx=" << ptr->PIndex[0] << "), ";
str << "(" << ptr->_aclPoints[1].x << ", " << ptr->_aclPoints[1].y << ", " << ptr->_aclPoints[1].z << ", Idx=" << ptr->PIndex[1] << "), ";
str << "(" << ptr->_aclPoints[2].x << ", " << ptr->_aclPoints[2].y << ", " << ptr->_aclPoints[2].z << ", Idx=" << ptr->PIndex[2] << "), ";
str << "Idx=" << ptr->Index << ", (" << ptr->NIndex[0] << ", " << ptr->NIndex[1] << ", " << ptr->NIndex[2] << ")";
}
else {
str << "(" << ptr->_aclPoints[0].x << ", " << ptr->_aclPoints[0].y << ", " << ptr->_aclPoints[0].z << "), ";
str << "(" << ptr->_aclPoints[1].x << ", " << ptr->_aclPoints[1].y << ", " << ptr->_aclPoints[1].z << "), ";
str << "(" << ptr->_aclPoints[2].x << ", " << ptr->_aclPoints[2].y << ", " << ptr->_aclPoints[2].z << ")";
}
str << ")";
return str.str();
}
PyObject *FacetPy::PyMake(struct _typeobject *, PyObject *, PyObject *) // Python wrapper
{
// create a new instance of FacetPy and the Twin object
return new FacetPy(new Facet);
}
// constructor method
int FacetPy::PyInit(PyObject* args, PyObject* /*kwds*/)
{
if (!PyArg_ParseTuple(args, ""))
return -1;
return 0;
}
PyObject* FacetPy::unbound(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return NULL;
getFacetPtr()->Index = ULONG_MAX;
getFacetPtr()->Mesh = 0;
Py_Return;
}
#if PY_MAJOR_VERSION >= 3
Py::Long FacetPy::getIndex(void) const
{
return Py::Long((long) getFacetPtr()->Index);
#else
Py::Int FacetPy::getIndex(void) const
{
return Py::Int((long) getFacetPtr()->Index);
#endif
}
Py::Boolean FacetPy::getBound(void) const
{
return Py::Boolean(getFacetPtr()->Index != UINT_MAX);
}
Py::Object FacetPy::getNormal(void) const
{
Base::VectorPy* normal = new Base::VectorPy(getFacetPtr()->GetNormal());
normal->setConst();
return Py::Object(normal,true);
}
PyObject* FacetPy::intersect(PyObject *args)
{
PyObject* object;
if (!PyArg_ParseTuple(args, "O!", &FacetPy::Type, &object))
return NULL;
FacetPy *face = static_cast<FacetPy*>(object);
FacetPy::PointerType face_ptr = face->getFacetPtr();
FacetPy::PointerType this_ptr = this->getFacetPtr();
Base::Vector3f p0, p1;
int ret = this_ptr->IntersectWithFacet(*face_ptr, p0, p1);
try {
Py::List sct;
if (ret > 0) {
Py::Tuple pt(3);
pt.setItem(0, Py::Float(p0.x));
pt.setItem(1, Py::Float(p0.y));
pt.setItem(2, Py::Float(p0.z));
sct.append(pt);
}
if (ret > 1) {
Py::Tuple pt(3);
pt.setItem(0, Py::Float(p1.x));
pt.setItem(1, Py::Float(p1.y));
pt.setItem(2, Py::Float(p1.z));
sct.append(pt);
}
return Py::new_reference_to(sct);
}
catch (const Py::Exception&) {
return 0;
}
}
PyObject* FacetPy::isDegenerated(PyObject *args)
{
float fEpsilon = MeshCore::MeshDefinitions::_fMinPointDistanceP2;
if (!PyArg_ParseTuple(args, "|f", &fEpsilon))
return NULL;
FacetPy::PointerType face = this->getFacetPtr();
if (!face->isBound()) {
throw Py::RuntimeError("Unbound facet");
}
const MeshCore::MeshKernel& kernel = face->Mesh->getKernel();
MeshCore::MeshGeomFacet tria = kernel.GetFacet(face->Index);
return Py::new_reference_to(Py::Boolean(tria.IsDegenerated(fEpsilon)));
}
Py::List FacetPy::getPoints(void) const
{
FacetPy::PointerType face = this->getFacetPtr();
Py::List pts;
for (int i=0; i<3; i++) {
Py::Tuple pt(3);
pt.setItem(0, Py::Float(face->_aclPoints[i].x));
pt.setItem(1, Py::Float(face->_aclPoints[i].y));
pt.setItem(2, Py::Float(face->_aclPoints[i].z));
pts.append(pt);
}
return pts;
}
Py::Tuple FacetPy::getPointIndices(void) const
{
FacetPy::PointerType face = this->getFacetPtr();
if (!face->isBound())
{ return Py::Tuple(); }
Py::Tuple idxTuple(3);
for (int i=0; i<3; i++) {
idxTuple.setItem(i, Py::Long(face->PIndex[i]));
}
return idxTuple;
}
Py::Tuple FacetPy::getNeighbourIndices(void) const
{
FacetPy::PointerType face = this->getFacetPtr();
if (!face->isBound()) {
return Py::Tuple();
}
Py::Tuple idxTuple(3);
for (int i=0; i<3; i++) {
idxTuple.setItem(i, Py::Long(face->NIndex[i]));
}
return idxTuple;
}
Py::Float FacetPy::getArea(void) const
{
FacetPy::PointerType face = this->getFacetPtr();
if (!face->isBound()) {
return Py::Float(0.0);
}
const MeshCore::MeshKernel& kernel = face->Mesh->getKernel();
MeshCore::MeshGeomFacet tria = kernel.GetFacet(face->Index);
return Py::Float(tria.Area());
}
PyObject *FacetPy::getCustomAttributes(const char* /*attr*/) const
{
return 0;
}
int FacetPy::setCustomAttributes(const char* /*attr*/, PyObject * /*obj*/)
{
return 0;
}