Lines Matching refs:sx

62         public void setScale(float sx, float sy, float px, float py) {
67 public void setScale(float sx, float sy) {
114 public boolean preScale(float sx, float sy, float px, float py) {
120 public boolean preScale(float sx, float sy) {
162 public boolean postScale(float sx, float sy, float px, float py) {
168 public boolean postScale(float sx, float sy) {
290 * Set the matrix to scale by sx and sy, with a pivot point at (px, py).
294 public void setScale(float sx, float sy, float px, float py) {
295 native_setScale(native_instance, sx, sy, px, py);
298 /** Set the matrix to scale by sx and sy. */
299 public void setScale(float sx, float sy) {
300 native_setScale(native_instance, sx, sy);
334 * Set the matrix to skew by sx and sy, with a pivot point at (px, py).
342 /** Set the matrix to skew by sx and sy. */
367 * M' = M * S(sx, sy, px, py)
369 public boolean preScale(float sx, float sy, float px, float py) {
370 return native_preScale(native_instance, sx, sy, px, py);
375 * M' = M * S(sx, sy)
377 public boolean preScale(float sx, float sy) {
378 return native_preScale(native_instance, sx, sy);
431 * M' = S(sx, sy, px, py) * M
433 public boolean postScale(float sx, float sy, float px, float py) {
434 return native_postScale(native_instance, sx, sy, px, py);
439 * M' = S(sx, sy) * M
441 public boolean postScale(float sx, float sy) {
442 return native_postScale(native_instance, sx, sy);
802 float sx, float sy, float px, float py);
804 float sx, float sy);
822 float sx, float sy, float px, float py);
824 float sx, float sy);
838 float sx, float sy, float px, float py);
840 float sx, float sy);