diff --git a/geometry/spline.hpp b/geometry/spline.hpp index 4f28a673d8..fb91f37dad 100644 --- a/geometry/spline.hpp +++ b/geometry/spline.hpp @@ -17,8 +17,8 @@ public: PointF m_dir; PointF m_avrDir; iterator() - : m_spl(NULL), m_index(0), m_dist(0), m_pos(PointF()), - m_dir(PointF()), m_avrDir(PointF()), m_checker(false) {} + : m_pos(PointF()), m_dir(PointF()), m_avrDir(PointF()), + m_checker(false), m_spl(NULL), m_index(0), m_dist(0) {} void Attach(Spline const & S); void Step(float speed); bool beginAgain(); @@ -30,10 +30,10 @@ public: }; public: - Spline(){} + Spline() : m_lengthAll(0.1f) {} void FromArray(vector const & path); Spline const & operator = (Spline const & spl); - float getLength() { return m_lengthAll; } + float getLength() const { return m_lengthAll; } private: float m_lengthAll;