Numworks Epsilon  1.4.1
Graphing Calculator Operating System
curve_view_cursor.h
Go to the documentation of this file.
1 #ifndef SHARED_CURVE_VIEW_CURSOR_H
2 #define SHARED_CURVE_VIEW_CURSOR_H
3 
4 namespace Shared {
5 
7 public:
9  double x();
10  double y();
11  void moveTo(double x, double y);
12 private:
13  static double clipped(double f, bool canBeInfinite);
14  constexpr static double k_maxFloat = 1E+8;
15  double m_x;
16  double m_y;
17 };
18 
19 }
20 
21 #endif
void moveTo(double x, double y)