I have a static member function lerp() inside my class template AnimCurve which I want to specialize for Quaternions, this way:
template<>
inline Quatf AnimCurve<Quatf>::lerp(
const Quatf& start,
const Quatf& end,
float time
)
{
return start.slerp(time, end);
}
However, this is not generic enough because one may also use Quatd. Is it possible to write a function which would work for both, since both Quatf and Quatd are type definitions of Quaternion<T>?
Here is the current definition of AnimCurve:
template< typename T >
class AnimCurve {
public:
AnimCurve() {}
void addKeyframe(float time, T value);
T getvalue(float time) const;
private:
static inline T lerp( const T& start, const T& end, float time );
std::map<float, T> mKeyframes;
};

AnimCurvewhich is a template. Could you confirm this (perhaps by posting the declaration oflerp)? – Luc Touraille Feb 26 at 16:34Quaternions, or justQuatfandQuatd? – Luc Touraille Feb 26 at 16:36