Home | History | Annotate | Download | only in graphics

Lines Matching refs:m_y

79     IntPoint() : m_x(0), m_y(0) { }
80 IntPoint(int x, int y) : m_x(x), m_y(y) { }
81 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
84 int y() const { return m_y; }
87 void setY(int y) { m_y = y; }
90 void move(int dx, int dy) { m_x += dx; m_y += dy; }
95 m_y > other.m_y ? m_y : other.m_y);
101 m_y < other.m_y ? m_y : other.m_y);
152 int m_x, m_y;