Skip to content
Snippets Groups Projects
Commit fda22c30 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

[bugfix] Projection onto the normal space of R^n was wrong

That projection is the zero map, not the identity.

[[Imported from SVN: r9843]]
parent eb863d8b
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
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