comparison Framework/Scene2D/ScenePoint2D.h @ 596:b716763571ad

IPointerTracker
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 26 Apr 2019 17:05:14 +0200
parents 434ceeb0bcab
children 8b6adfb62a2f
comparison
equal deleted inserted replaced
595:6e471e6cf09b 596:b716763571ad
31 private: 31 private:
32 double x_; 32 double x_;
33 double y_; 33 double y_;
34 34
35 public: 35 public:
36 ScenePoint2D() :
37 x_(0),
38 y_(0)
39 {
40 }
41
36 ScenePoint2D(double x, 42 ScenePoint2D(double x,
37 double y) : 43 double y) :
38 x_(x), 44 x_(x),
39 y_(y) 45 y_(y)
40 { 46 {