Home | History | Annotate | Download | only in graphics

Lines Matching refs:m_x

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()) { }
83 int x() const { return m_x; }
86 void setX(int x) { m_x = x; }
90 void move(int dx, int dy) { m_x += dx; m_y += dy; }
94 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
100 return IntPoint(m_x < other.m_x ? m_x : other.m_x,
152 int m_x, m_y;