From c283bdff44ae11da4093af9fb17f1e3ca2abcaab Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Mon, 10 Jan 2011 07:54:54 +0000 Subject: [PATCH] add a dummy method derivativeOfDistanceSquaredWRTSecondArgument. Only throws an exception. The implementation will follow later [[Imported from SVN: r6706]] --- dune/gfe/rotation.hh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dune/gfe/rotation.hh b/dune/gfe/rotation.hh index 8ee5be0ea..fef9e1185 100644 --- a/dune/gfe/rotation.hh +++ b/dune/gfe/rotation.hh @@ -387,6 +387,11 @@ public: return v; } + static EmbeddedTangentVector derivativeOfDistanceSquaredWRTSecondArgument(const Rotation<3,T>& a, + const Rotation<3,T>& b) { + DUNE_THROW(Dune::NotImplemented, "derivativeOfDistanceSquaredWRTSecondArgument"); + } + /** \brief Interpolate between two rotations */ static Rotation<3,T> interpolate(const Rotation<3,T>& a, const Rotation<3,T>& b, double omega) { -- GitLab