Lines Matching refs:scale
57 void ApplyScale(double scale)
59 x_ *= scale;
60 y_ *= scale;
61 width_ *= scale;
62 height_ *= scale;
65 void ApplyScaleAndRound(const Size& scale)
67 x_ = round(x_ * scale.Width());
68 y_ = round(y_ * scale.Height());
69 width_ = round(width_ * scale.Width());
70 height_ = round(height_ * scale.Height());
221 Rect operator*(double scale) const
223 return Rect(x_ * scale, y_ * scale, width_ * scale, height_ * scale);