From 47f8e7334851c4d978eb93f96eec4c60ff9e1e7f Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Thu, 14 Feb 2013 16:07:47 +0000 Subject: [PATCH] Bugfix in 'orthonormalFrame': scaling factor was wrong [[Imported from SVN: r9190]] --- dune/gfe/hyperbolichalfspacepoint.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/hyperbolichalfspacepoint.hh b/dune/gfe/hyperbolichalfspacepoint.hh index 0c3a5bdc..96ef67f4 100644 --- a/dune/gfe/hyperbolichalfspacepoint.hh +++ b/dune/gfe/hyperbolichalfspacepoint.hh @@ -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); } -- GitLab