Home | History | Annotate | Download | only in geometry

Lines Matching refs:m_y

46     IntPoint() : m_x(0), m_y(0) { }
47 IntPoint(int x, int y) : m_x(x), m_y(y) { }
48 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
53 int y() const { return m_y; }
56 void setY(int y) { m_y = y; }
60 void move(int dx, int dy) { m_x += dx; m_y += dy; }
64 m_y = lroundf(static_cast<float>(m_y * sy));
70 m_y > other.m_y ? m_y : other.m_y);
76 m_y < other.m_y ? m_y : other.m_y);
88 return IntPoint(m_y, m_x);
102 int m_x, m_y;