Skip to content
Snippets Groups Projects
Commit 6829c84f authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

ARGGGG... evil index bug fixed

[[Imported from SVN: r8039]]
parent d3383054
Branches
Tags
No related merge requests found
......@@ -199,7 +199,7 @@ public:
for (int i=0; i<Rotation<dim,T>::EmbeddedTangentVector::dimension; i++)
for (int j=0; j<Rotation<dim,T>::EmbeddedTangentVector::dimension; j++)
for (int k=0; k<Rotation<dim,T>::EmbeddedTangentVector::dimension; k++)
result[dim+i][dim+j][dim+j] = rotationPart[i][j][k];
result[dim+i][dim+j][dim+k] = rotationPart[i][j][k];
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment