diff options
Diffstat (limited to 'spline-widget/spline.hpp')
-rw-r--r-- | spline-widget/spline.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spline-widget/spline.hpp b/spline-widget/spline.hpp index 75a9e95e..299c7636 100644 --- a/spline-widget/spline.hpp +++ b/spline-widget/spline.hpp @@ -41,7 +41,7 @@ signals: class OPENTRACK_SPLINE_EXPORT spline final { - int precision(const QList<QPointF>& points) const; + double precision(const QList<QPointF>& points) const; void update_interp_data(); float getValueInternal(int x); void add_lone_point(); @@ -98,4 +98,5 @@ public: mem<const settings> get_settings() const; using points_t = decltype(s->points.get()); + int get_point_count() const; }; |