Fix element A41 in 4x4 Matrix class

This commit is contained in:
wmayer
2015-12-10 17:35:54 +01:00
parent 998b9ef094
commit 65f72237d7

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);
}