Home | History | Annotate | Download | only in core

Lines Matching refs:sy

133     /** Set the matrix to scale by sx and sy, with a pivot point at (px, py).
137 void setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
138 /** Set the matrix to scale by sx and sy.
140 void setScale(SkScalar sx, SkScalar sy);
158 /** Set the matrix to skew by sx and sy, with a pivot point at (px, py).
163 /** Set the matrix to skew by sx and sy.
177 M' = M * S(sx, sy, px, py)
179 bool preScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
181 M' = M * S(sx, sy)
183 bool preScale(SkScalar sx, SkScalar sy);
210 M' = S(sx, sy, px, py) * M
212 bool postScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
214 M' = S(sx, sy) * M
216 bool postScale(SkScalar sx, SkScalar sy);