Lines Matching refs:py
220 /** Set the matrix to scale by sx and sy, with a pivot point at (px, py).
224 void setScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
233 pivot point at (px, py). The pivot point is the coordinate that should
236 void setRotate(SkScalar degrees, SkScalar px, SkScalar py);
241 a pivot point at (px, py). The pivot point is the coordinate that
245 SkScalar px, SkScalar py);
252 /** Set the matrix to skew by sx and sy, with a pivot point at (px, py).
256 void setSkew(SkScalar kx, SkScalar ky, SkScalar px, SkScalar py);
271 M' = M * S(sx, sy, px, py)
273 void preScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
279 M' = M * R(degrees, px, py)
281 void preRotate(SkScalar degrees, SkScalar px, SkScalar py);
287 M' = M * K(kx, ky, px, py)
289 void preSkew(SkScalar kx, SkScalar ky, SkScalar px, SkScalar py);
304 M' = S(sx, sy, px, py) * M
306 void postScale(SkScalar sx, SkScalar sy, SkScalar px, SkScalar py);
316 M' = R(degrees, px, py) * M
318 void postRotate(SkScalar degrees, SkScalar px, SkScalar py);
324 M' = K(kx, ky, px, py) * M
326 void postSkew(SkScalar kx, SkScalar ky, SkScalar px, SkScalar py);