Fix element A41 in 4x4 Matrix class

This commit is contained in:
wmayer 2015-12-10 17:35:54 +01:00
parent b7a9bf9505
commit 36ac2e7032

View File

@ -620,7 +620,7 @@ void MatrixPy::setA34(Py::Float arg)
Py::Float MatrixPy::getA41(void) const
{
double val = (*this->getMatrixPtr())[2][0];
double val = (*this->getMatrixPtr())[3][0];
return Py::Float(val);
}