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) {
307 * Set the matrix to scale by sx and sy, with a pivot point at (px, py).
311 public void setScale(float sx, float sy, float px, float py) {
312 native_setScale(native_instance, sx, sy, px, py);
315 /** Set the matrix to scale by sx and sy. */
316 public void setScale(float sx, float sy) {
317 native_setScale(native_instance, sx, sy);
351 * Set the matrix to skew by sx and sy, with a pivot point at (px, py).
359 /** Set the matrix to skew by sx and sy. */
391 * M' = M * S(sx, sy, px, py)
393 public boolean preScale(float sx, float sy, float px, float py) {
394 native_preScale(native_instance, sx, sy, px, py);
400 * M' = M * S(sx, sy)
402 public boolean preScale(float sx, float sy) {
403 native_preScale(native_instance, sx, sy);
463 * M' = S(sx, sy, px, py) * M
465 public boolean postScale(float sx, float sy, float px, float py) {
466 native_postScale(native_instance, sx, sy, px, py);
472 * M' = S(sx, sy) * M
474 public boolean postScale(float sx, float sy) {
475 native_postScale(native_instance, sx, sy);
850 float sx, float sy, float px, float py);
852 float sx, float sy);
871 float sx, float sy, float px, float py);
873 float sx, float sy);
887 float sx, float sy, float px, float py);
889 float sx, float sy);