From fda22c30deb8c20daece514793d4740d21478eaf Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Thu, 21 Aug 2014 11:26:01 +0000 Subject: [PATCH] [bugfix] Projection onto the normal space of R^n was wrong That projection is the zero map, not the identity. [[Imported from SVN: r9843]] --- dune/gfe/rigidbodymotion.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/rigidbodymotion.hh b/dune/gfe/rigidbodymotion.hh index 5978e4ce..ed3ef3e3 100644 --- a/dune/gfe/rigidbodymotion.hh +++ b/dune/gfe/rigidbodymotion.hh @@ -271,7 +271,7 @@ public: // translation part for (int i=0; i<N; i++) - result[i] = v[i]; + result[i] = 0; // rotation part T sp = 0; -- GitLab