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 ...@@ -28,7 +28,7 @@ namespace Dune
FieldMatrix<double,3,3> R; FieldMatrix<double,3,3> R;
for (int j=0; j<3; j++) for (int j=0; j<3; j++)
for (int k=0; k<3; k++) 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); configuration[i].q.set(R);
} }
...@@ -41,4 +41,4 @@ namespace Dune ...@@ -41,4 +41,4 @@ namespace Dune
} }
#endif #endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment