Home | History | Annotate | Download | only in graphics

Lines Matching defs:m_y

80     IntPoint() : m_x(0), m_y(0) { }
81 IntPoint(int x, int y) : m_x(x), m_y(y) { }
82 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
87 int y() const { return m_y; }
90 void setY(int y) { m_y = y; }
93 void move(int dx, int dy) { m_x += dx; m_y += dy; }
98 m_y > other.m_y ? m_y : other.m_y);
104 m_y < other.m_y ? m_y : other.m_y);
114 return IntPoint(m_y, m_x);
163 int m_x, m_y;