Files
Upsilon/apps/shared/curve_view_cursor.h
2019-05-03 15:54:22 +02:00

22 lines
400 B
C++

#ifndef SHARED_CURVE_VIEW_CURSOR_H
#define SHARED_CURVE_VIEW_CURSOR_H
namespace Shared {
class CurveViewCursor {
public:
CurveViewCursor();
double x() const { return m_x; }
double y() const { return m_y; }
void moveTo(double x, double y);
private:
static double clipped(double f, bool canBeInfinite);
constexpr static double k_maxFloat = 1E+8;
double m_x;
double m_y;
};
}
#endif