Home | History | Annotate | Download | only in graphics

Lines Matching defs:m_height

52     FloatSize() : m_width(0), m_height(0) { }
53 FloatSize(float width, float height) : m_width(width), m_height(height) { }
59 float height() const { return m_height; }
62 void setHeight(float height) { m_height = height; }
64 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
66 float aspectRatio() const { return m_width / m_height; }
71 m_height *= scale;
77 m_height > other.m_height ? m_height : other.m_height);
83 m_height < other.m_height ? m_height : other.m_height);
89 return m_width * m_width + m_height * m_height;
104 float m_width, m_height;