+ unify DLL export defines to namespace names

git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
wmayer
2011-10-10 13:44:52 +00:00
commit 120ca87015
4155 changed files with 2965978 additions and 0 deletions

546
src/Base/MatrixPyImp.cpp Normal file
View File

@@ -0,0 +1,546 @@
/***************************************************************************
* Copyright (c) 2008 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 <climits>
#include "Base/Matrix.h"
// inclusion of the generated files (generated out of MatrixPy.xml)
#include "VectorPy.h"
#include "GeometryPyCXX.h"
#include "MatrixPy.h"
#include "MatrixPy.cpp"
using namespace Base;
// returns a string which represents the object e.g. when printed in python
std::string MatrixPy::representation(void) const
{
const Base::Matrix4D& m = *(this->getMatrixPtr());
std::stringstream str;
str << "Matrix (";
str << "(" << m[0][0] << ","<< m[0][1] << ","<< m[0][2] << ","<< m[0][3] << ")" << ",";
str << "(" << m[1][0] << ","<< m[1][1] << ","<< m[1][2] << ","<< m[1][3] << ")"<< ",";
str << "(" << m[2][0] << ","<< m[2][1] << ","<< m[2][2] << ","<< m[2][3] << ")"<< ",";
str << "(" << m[3][0] << ","<< m[3][1] << ","<< m[3][2] << ","<< m[3][3] << ")";
str << ")";
return str.str();
}
PyObject *MatrixPy::PyMake(struct _typeobject *, PyObject *, PyObject *) // Python wrapper
{
// create a new instance of MatrixPy and the Twin object
return new MatrixPy(new Matrix4D);
}
// constructor method
int MatrixPy::PyInit(PyObject* args, PyObject* /*kwd*/)
{
double a11=1.0, a12=0.0, a13=0.0, a14=0.0;
double a21=0.0, a22=1.0, a23=0.0, a24=0.0;
double a31=0.0, a32=0.0, a33=1.0, a34=0.0;
double a41=0.0, a42=0.0, a43=0.0, a44=1.0;
if (PyArg_ParseTuple(args, "|dddddddddddddddd",
&a11,&a12,&a13,&a14,
&a21,&a22,&a23,&a24,
&a31,&a32,&a33,&a34,
&a41,&a42,&a43,&a44)) {
MatrixPy::PointerType ptr = reinterpret_cast<MatrixPy::PointerType>(_pcTwinPointer);
(*ptr) = Matrix4D(a11,a12,a13,a14,
a21,a22,a23,a24,
a31,a32,a33,a34,
a41,a42,a43,a44);
return 0;
}
PyErr_Clear();
PyObject *o;
if (PyArg_ParseTuple(args, "O!", &(Base::MatrixPy::Type), &o)) {
MatrixPy::PointerType ptr = reinterpret_cast<MatrixPy::PointerType>(_pcTwinPointer);
(*ptr) = static_cast<MatrixPy*>(o)->value();
return 0;
}
PyErr_SetString(PyExc_Exception, "matrix or up to 16 floats expected");
return -1;
}
PyObject* MatrixPy::number_add_handler(PyObject *self, PyObject *other)
{
if (!PyObject_TypeCheck(self, &(MatrixPy::Type))) {
PyErr_SetString(PyExc_TypeError, "First arg must be Matrix");
return 0;
}
if (!PyObject_TypeCheck(other, &(MatrixPy::Type))) {
PyErr_SetString(PyExc_TypeError, "Second arg must be Matrix");
return 0;
}
Base::Matrix4D a = static_cast<MatrixPy*>(self)->value();
Base::Matrix4D b = static_cast<MatrixPy*>(other)->value();
return new MatrixPy(a+b);
}
PyObject* MatrixPy::number_subtract_handler(PyObject *self, PyObject *other)
{
if (!PyObject_TypeCheck(self, &(MatrixPy::Type))) {
PyErr_SetString(PyExc_TypeError, "First arg must be Matrix");
return 0;
}
if (!PyObject_TypeCheck(other, &(MatrixPy::Type))) {
PyErr_SetString(PyExc_TypeError, "Second arg must be Matrix");
return 0;
}
Base::Matrix4D a = static_cast<MatrixPy*>(self)->value();
Base::Matrix4D b = static_cast<MatrixPy*>(other)->value();
return new MatrixPy(a-b);
}
PyObject* MatrixPy::number_multiply_handler(PyObject *self, PyObject *other)
{
if (!PyObject_TypeCheck(self, &(MatrixPy::Type))) {
PyErr_SetString(PyExc_TypeError, "First arg must be Matrix");
return 0;
}
if (!PyObject_TypeCheck(other, &(MatrixPy::Type))) {
PyErr_SetString(PyExc_TypeError, "Second arg must be Matrix");
return 0;
}
Base::Matrix4D a = static_cast<MatrixPy*>(self)->value();
Base::Matrix4D b = static_cast<MatrixPy*>(other)->value();
return new MatrixPy(a*b);
}
PyObject* MatrixPy::move(PyObject * args)
{
double x,y,z;
Base::Vector3d vec;
PyObject *pcVecObj;
if (PyArg_ParseTuple(args, "ddd", &x,&y,&z)) { // convert args: Python->C
vec.x = x;
vec.y = y;
vec.z = z;
}
else if (PyArg_ParseTuple(args, "O!:three floats or a vector is needed",
&PyTuple_Type, &pcVecObj)) {
vec = getVectorFromTuple<double>(pcVecObj);
// clears the error from the first PyArg_ParseTuple()6
PyErr_Clear();
}
else if (PyArg_ParseTuple(args, "O!:three floats or a vector is needed",
&(Base::VectorPy::Type), &pcVecObj)) {
Base::VectorPy *pcObject = static_cast<Base::VectorPy*>(pcVecObj);
Base::Vector3d* val = pcObject->getVectorPtr();
vec.Set(val->x,val->y,val->z);
// clears the error from the first PyArg_ParseTuple()6
PyErr_Clear();
}
else
return NULL;
PY_TRY {
getMatrixPtr()->move(vec);
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::scale(PyObject * args)
{
double x,y,z;
Base::Vector3d vec;
PyObject *pcVecObj;
if (PyArg_ParseTuple(args, "ddd", &x,&y,&z)) { // convert args: Python->C
vec.x = x;
vec.y = y;
vec.z = z;
}
else if (PyArg_ParseTuple(args, "O!:three floats or a vector is needed",
&PyTuple_Type, &pcVecObj)) {
vec = getVectorFromTuple<double>(pcVecObj);
// clears the error from the first PyArg_ParseTuple()6
PyErr_Clear();
}
else if (PyArg_ParseTuple(args, "O!:three floats or a vector is needed", &(Base::VectorPy::Type), &pcVecObj)) {
// convert args: Python->C
Base::VectorPy *pcObject = static_cast<Base::VectorPy*>(pcVecObj);
Base::Vector3d* val = pcObject->getVectorPtr();
vec.Set(val->x,val->y,val->z);
// clears the error from the first PyArg_ParseTuple()6
PyErr_Clear();
}
else
return NULL;
PY_TRY {
getMatrixPtr()->scale(vec);
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::unity(PyObject * args)
{
if (!PyArg_ParseTuple(args, "")) // convert args: Python->C
return NULL; // NULL triggers exception
PY_TRY {
getMatrixPtr()->setToUnity();
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::transform(PyObject * args)
{
Base::Vector3d vec;
Matrix4D mat;
PyObject *pcVecObj,*pcMatObj;
if (PyArg_ParseTuple(args, "O!O!: a transform point (Vector) and a transform matrix (Matrix) is needed",
&(Base::VectorPy::Type), &pcVecObj, &(MatrixPy::Type), &pcMatObj) ) { // convert args: Python->C
Base::VectorPy *pcObject = static_cast<Base::VectorPy*>(pcVecObj);
Base::Vector3d* val = pcObject->getVectorPtr();
vec.Set(val->x,val->y,val->z);
mat = *(static_cast<MatrixPy*>(pcMatObj)->getMatrixPtr());
// clears the error from the first PyArg_ParseTuple()6
PyErr_Clear();
}
else
return NULL; // NULL triggers exception
PY_TRY {
getMatrixPtr()->transform(vec,mat);
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::rotateX(PyObject * args)
{
double a;
if (!PyArg_ParseTuple(args, "d: angle to rotate (double) needed", &a)) // convert args: Python->C
return NULL; // NULL triggers exception
PY_TRY {
getMatrixPtr()->rotX(a);
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::rotateY(PyObject * args)
{
double a;
if (!PyArg_ParseTuple(args, "d: angle to rotate (double) needed", &a)) // convert args: Python->C
return NULL; // NULL triggers exception
PY_TRY {
getMatrixPtr()->rotY(a);
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::rotateZ(PyObject * args)
{
double a;
if (!PyArg_ParseTuple(args, "d: angle to rotate (double) needed", &a)) // convert args: Python->C
return NULL; // NULL triggers exception
PY_TRY {
getMatrixPtr()->rotZ(a);
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::multiply(PyObject * args)
{
PyObject* o;
if (PyArg_ParseTuple(args, "O!", &(MatrixPy::Type), &o)) {
Matrix4D mat = (*getMatrixPtr()) * static_cast<Base::MatrixPy*>(o)->value();
return new MatrixPy(new Matrix4D(mat));
}
PyErr_Clear();
if (PyArg_ParseTuple(args, "O!", &(VectorPy::Type), &o)) {
Vector3d vec = (*getMatrixPtr()) * static_cast<Base::VectorPy*>(o)->value();
return new VectorPy(new Vector3d(vec));
}
PyErr_SetString(PyExc_Exception, "either vector or matrix expected");
return 0;
}
PyObject* MatrixPy::invert(PyObject * args)
{
if (!PyArg_ParseTuple(args, ""))
return NULL;
PY_TRY {
if (getMatrixPtr()->determinant() > DBL_EPSILON)
getMatrixPtr()->inverse();
else {
PyErr_SetString(PyExc_Exception, "Cannot invert singular matrix");
return 0;
}
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::inverse(PyObject * args)
{
if (!PyArg_ParseTuple(args, ""))
return NULL;
PY_TRY {
if (getMatrixPtr()->determinant() > DBL_EPSILON) {
Base::Matrix4D m = *getMatrixPtr();
m.inverse();
return new MatrixPy(m);
}
else {
PyErr_SetString(PyExc_Exception, "Cannot invert singular matrix");
return 0;
}
}
PY_CATCH;
Py_Return;
}
PyObject* MatrixPy::determinant(PyObject * args)
{
if (!PyArg_ParseTuple(args, ""))
return NULL;
return PyFloat_FromDouble(getMatrixPtr()->determinant());
}
Py::Float MatrixPy::getA11(void) const
{
double val = (*this->getMatrixPtr())[0][0];
return Py::Float(val);
}
void MatrixPy::setA11(Py::Float arg)
{
(*this->getMatrixPtr())[0][0] = (double)arg;
}
Py::Float MatrixPy::getA12(void) const
{
double val = (*this->getMatrixPtr())[0][1];
return Py::Float(val);
}
void MatrixPy::setA12(Py::Float arg)
{
(*this->getMatrixPtr())[0][1] = (double)arg;
}
Py::Float MatrixPy::getA13(void) const
{
double val = (*this->getMatrixPtr())[0][2];
return Py::Float(val);
}
void MatrixPy::setA13(Py::Float arg)
{
(*this->getMatrixPtr())[0][2] = (double)arg;
}
Py::Float MatrixPy::getA14(void) const
{
double val = (*this->getMatrixPtr())[0][3];
return Py::Float(val);
}
void MatrixPy::setA14(Py::Float arg)
{
(*this->getMatrixPtr())[0][3] = (double)arg;
}
Py::Float MatrixPy::getA21(void) const
{
double val = (*this->getMatrixPtr())[1][0];
return Py::Float(val);
}
void MatrixPy::setA21(Py::Float arg)
{
(*this->getMatrixPtr())[1][0] = (double)arg;
}
Py::Float MatrixPy::getA22(void) const
{
double val = (*this->getMatrixPtr())[1][1];
return Py::Float(val);
}
void MatrixPy::setA22(Py::Float arg)
{
(*this->getMatrixPtr())[1][1] = (double)arg;
}
Py::Float MatrixPy::getA23(void) const
{
double val = (*this->getMatrixPtr())[1][2];
return Py::Float(val);
}
void MatrixPy::setA23(Py::Float arg)
{
(*this->getMatrixPtr())[1][2] = (double)arg;
}
Py::Float MatrixPy::getA24(void) const
{
double val = (*this->getMatrixPtr())[1][3];
return Py::Float(val);
}
void MatrixPy::setA24(Py::Float arg)
{
(*this->getMatrixPtr())[1][3] = (double)arg;
}
Py::Float MatrixPy::getA31(void) const
{
double val = (*this->getMatrixPtr())[2][0];
return Py::Float(val);
}
void MatrixPy::setA31(Py::Float arg)
{
(*this->getMatrixPtr())[2][0] = (double)arg;
}
Py::Float MatrixPy::getA32(void) const
{
double val = (*this->getMatrixPtr())[2][1];
return Py::Float(val);
}
void MatrixPy::setA32(Py::Float arg)
{
(*this->getMatrixPtr())[2][1] = (double)arg;
}
Py::Float MatrixPy::getA33(void) const
{
double val = (*this->getMatrixPtr())[2][2];
return Py::Float(val);
}
void MatrixPy::setA33(Py::Float arg)
{
(*this->getMatrixPtr())[2][2] = (double)arg;
}
Py::Float MatrixPy::getA34(void) const
{
double val = (*this->getMatrixPtr())[2][3];
return Py::Float(val);
}
void MatrixPy::setA34(Py::Float arg)
{
(*this->getMatrixPtr())[2][3] = (double)arg;
}
Py::Float MatrixPy::getA41(void) const
{
double val = (*this->getMatrixPtr())[2][0];
return Py::Float(val);
}
void MatrixPy::setA41(Py::Float arg)
{
(*this->getMatrixPtr())[3][0] = (double)arg;
}
Py::Float MatrixPy::getA42(void) const
{
double val = (*this->getMatrixPtr())[3][1];
return Py::Float(val);
}
void MatrixPy::setA42(Py::Float arg)
{
(*this->getMatrixPtr())[3][1] = (double)arg;
}
Py::Float MatrixPy::getA43(void) const
{
double val = (*this->getMatrixPtr())[3][2];
return Py::Float(val);
}
void MatrixPy::setA43(Py::Float arg)
{
(*this->getMatrixPtr())[3][2] = (double)arg;
}
Py::Float MatrixPy::getA44(void) const
{
double val = (*this->getMatrixPtr())[3][3];
return Py::Float(val);
}
void MatrixPy::setA44(Py::Float arg)
{
(*this->getMatrixPtr())[3][3] = (double)arg;
}
Py::List MatrixPy::getA(void) const
{
return Py::List();
}
void MatrixPy::setA(Py::List /*arg*/)
{
}
PyObject *MatrixPy::getCustomAttributes(const char* /*attr*/) const
{
return 0;
}
int MatrixPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
{
return 0;
}