Lines Matching refs:sx

59         public void setScale(float sx, float sy, float px, float py) {
64 public void setScale(float sx, float sy) {
111 public boolean preScale(float sx, float sy, float px, float py) {
117 public boolean preScale(float sx, float sy) {
159 public boolean postScale(float sx, float sy, float px, float py) {
165 public boolean postScale(float sx, float sy) {
297 * Set the matrix to scale by sx and sy, with a pivot point at (px, py).
301 public void setScale(float sx, float sy, float px, float py) {
302 native_setScale(native_instance, sx, sy, px, py);
305 /** Set the matrix to scale by sx and sy. */
306 public void setScale(float sx, float sy) {
307 native_setScale(native_instance, sx, sy);
341 * Set the matrix to skew by sx and sy, with a pivot point at (px, py).
349 /** Set the matrix to skew by sx and sy. */
374 * M' = M * S(sx, sy, px, py)
376 public boolean preScale(float sx, float sy, float px, float py) {
377 return native_preScale(native_instance, sx, sy, px, py);
382 * M' = M * S(sx, sy)
384 public boolean preScale(float sx, float sy) {
385 return native_preScale(native_instance, sx, sy);
438 * M' = S(sx, sy, px, py) * M
440 public boolean postScale(float sx, float sy, float px, float py) {
441 return native_postScale(native_instance, sx, sy, px, py);
446 * M' = S(sx, sy) * M
448 public boolean postScale(float sx, float sy) {
449 return native_postScale(native_instance, sx, sy);
815 float sx, float sy, float px, float py);
817 float sx, float sy);
835 float sx, float sy, float px, float py);
837 float sx, float sy);
851 float sx, float sy, float px, float py);
853 float sx, float sy);