Lines Matching defs:sx

63         public void setScale(float sx, float sy, float px, float py) {
68 public void setScale(float sx, float sy) {
115 public boolean preScale(float sx, float sy, float px, float py) {
121 public boolean preScale(float sx, float sy) {
163 public boolean postScale(float sx, float sy, float px, float py) {
169 public boolean postScale(float sx, float sy) {
323 * Set the matrix to scale by sx and sy, with a pivot point at (px, py). The pivot point is the
326 public void setScale(float sx, float sy, float px, float py) {
327 nSetScale(native_instance, sx, sy, px, py);
330 /** Set the matrix to scale by sx and sy. */
331 public void setScale(float sx, float sy) {
332 nSetScale(native_instance, sx, sy);
366 * Set the matrix to skew by sx and sy, with a pivot point at (px, py). The pivot point is the
373 /** Set the matrix to skew by sx and sy. */
404 * Preconcats the matrix with the specified scale. M' = M * S(sx, sy, px, py)
406 public boolean preScale(float sx, float sy, float px, float py) {
407 nPreScale(native_instance, sx, sy, px, py);
412 * Preconcats the matrix with the specified scale. M' = M * S(sx, sy)
414 public boolean preScale(float sx, float sy) {
415 nPreScale(native_instance, sx, sy);
468 * Postconcats the matrix with the specified scale. M' = S(sx, sy, px, py) * M
470 public boolean postScale(float sx, float sy, float px, float py) {
471 nPostScale(native_instance, sx, sy, px, py);
476 * Postconcats the matrix with the specified scale. M' = S(sx, sy) * M
478 public boolean postScale(float sx, float sy) {
479 nPostScale(native_instance, sx, sy);
887 private static native void nSetScale(long nObject, float sx, float sy, float px, float py);
889 private static native void nSetScale(long nObject, float sx, float sy);
908 private static native void nPreScale(long nObject, float sx, float sy, float px, float py);
910 private static native void nPreScale(long nObject, float sx, float sy);
924 private static native void nPostScale(long nObject, float sx, float sy, float px, float py);
926 private static native void nPostScale(long nObject, float sx, float sy);