Home | History | Annotate | Download | only in geometry

Lines Matching refs:y_

22   Vector2dF() : x_(0), y_(0) {}
23 Vector2dF(float x, float y) : x_(x), y_(y) {}
28 float y() const { return y_; }
29 void set_y(float y) { y_ = y; }
44 y_ = y_ <= other.y_ ? y_ : other.y_;
49 y_ = y_ >= other.y_ ? y_ : other.y_;
67 float y_;