Home | History | Annotate | Download | only in gfx

Lines Matching refs:y_

21   Type y() const { return y_; }
25 y_ = y;
29 void set_y(Type y) { y_ = y; }
33 y_ += delta_y;
38 y_ += vector.y();
43 y_ -= vector.y();
48 y_ = y_ <= other.y_ ? y_ : other.y_;
53 y_ = y_ >= other.y_ ? y_ : other.y_;
57 return x_ == 0 && y_ == 0;
61 return VectorClass(x_, y_);
71 return (y_ == rhs.y_) ? (x_ < rhs.x_) : (y_ < rhs.y_);
75 PointBase(Type x, Type y) : x_(x), y_(y) {}
82 Type y_;