Home | History | Annotate | Download | only in geometry

Lines Matching refs:y_

23   Vector2d() : x_(0), y_(0) {}
24 Vector2d(int x, int y) : x_(x), y_(y) {}
29 int y() const { return y_; }
30 void set_y(int y) { y_ = y; }
45 y_ = y_ <= other.y_ ? y_ : other.y_;
50 y_ = y_ >= other.y_ ? y_ : other.y_;
62 operator Vector2dF() const { return Vector2dF(x_, y_); }
66 int y_;