Fix bug in getNodes() and some clean up in ApplyingBC

This commit is contained in:
jriegel
2013-08-15 19:35:52 +02:00
parent 53eed43d9f
commit dd24a14927
3 changed files with 27 additions and 3 deletions

View File

@@ -476,7 +476,7 @@ Py::Tuple FemMeshPy::getNodes(void) const
// Apply the matrix to hold the BoundBox in absolute space.
vec = Mtrx * vec;
tup.setItem(i, Py::asObject(new Base::VectorPy(Base::Vector3d(aNode->X(),aNode->Y(),aNode->Z()))));
tup.setItem(i, Py::asObject(new Base::VectorPy( vec )));
}
return tup;