Home | History | Annotate | Download | only in geometry

Lines Matching refs:y_

24   Vector2d() : x_(0), y_(0) {}
25 Vector2d(int x, int y) : x_(x), y_(y) {}
30 int y() const { return y_; }
31 void set_y(int y) { y_ = y; }
46 y_ = y_ <= other.y_ ? y_ : other.y_;
51 y_ = y_ >= other.y_ ? y_ : other.y_;
63 operator Vector2dF() const { return Vector2dF(x_, y_); }
67 int y_;