template class EE::Math::tPoint1d

The basic 1d point template.

#include <interpolation1d.hpp>

template <typename T>
class tPoint1d {
public:
    // fields

    T p;
    Time t;

    // construction

    tPoint1d();
    tPoint1d(const T& pos, const Time& time);
};