Skip to content
Snippets Groups Projects
Commit 9676a4bd authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Fix inverted indices

[[Imported from SVN: r9905]]
parent 0d24ea74
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ namespace Dune
FieldMatrix<double,3,3> R;
for (int j=0; j<3; j++)
for (int k=0; k<3; k++)
R[j][k] = vtkFile.directors_[j][i][k];
R[j][k] = vtkFile.directors_[k][i][j];
configuration[i].q.set(R);
}
......@@ -41,4 +41,4 @@ namespace Dune
}
#endif
\ No newline at end of file
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment