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

Add method 'orthonormalFrame' to Rotation<2>

[[Imported from SVN: r7351]]
parent fbf50c92
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,14 @@ public:
return q;
}
/** \brief Compute an orthonormal basis of the tangent space of SO(3).
This basis is of course not globally continuous.
*/
Dune::FieldMatrix<T,1,1> orthonormalFrame() const {
return Dune::FieldMatrix<T,1,1>(1);
}
//private:
// We store the rotation as an angle
......
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