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

Bugfix in 'orthonormalFrame': scaling factor was wrong

[[Imported from SVN: r9190]]
parent bed4451b
No related branches found
No related tags found
No related merge requests found
......@@ -523,7 +523,7 @@ public:
*/
Dune::FieldMatrix<T,N,N> orthonormalFrame() const {
Dune::ScaledIdentityMatrix<T,N> result( data_[N-1]*data_[N-1] );
Dune::ScaledIdentityMatrix<T,N> result( data_[N-1] );
return Dune::FieldMatrix<T,N,N>(result);
}
......
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