Lines Matching refs:px

63         public void setScale(float sx, float sy, float px, float py) {
73 public void setRotate(float degrees, float px, float py) {
83 public void setSinCos(float sinValue, float cosValue, float px, float py) {
93 public void setSkew(float kx, float ky, float px, float py) {
115 public boolean preScale(float sx, float sy, float px, float py) {
127 public boolean preRotate(float degrees, float px, float py) {
139 public boolean preSkew(float kx, float ky, float px, float py) {
163 public boolean postScale(float sx, float sy, float px, float py) {
175 public boolean postRotate(float degrees, float px, float py) {
187 public boolean postSkew(float kx, float ky, float px, float py) {
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);
336 * Set the matrix to rotate by the specified number of degrees, with a pivot point at (px, py).
340 public void setRotate(float degrees, float px, float py) {
341 nSetRotate(native_instance, degrees, px, py);
352 * Set the matrix to rotate by the specified sine and cosine values, with a pivot point at (px,
356 public void setSinCos(float sinValue, float cosValue, float px, float py) {
357 nSetSinCos(native_instance, sinValue, cosValue, px, py);
366 * Set the matrix to skew by sx and sy, with a pivot point at (px, py). The pivot point is the
369 public void setSkew(float kx, float ky, float px, float py) {
370 nSetSkew(native_instance, kx, ky, px, py);
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);
420 * Preconcats the matrix with the specified rotation. M' = M * R(degrees, px, py)
422 public boolean preRotate(float degrees, float px, float py) {
423 nPreRotate(native_instance, degrees, px, py);
436 * Preconcats the matrix with the specified skew. M' = M * K(kx, ky, px, py)
438 public boolean preSkew(float kx, float ky, float px, float py) {
439 nPreSkew(native_instance, kx, ky, px, py);
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);
484 * Postconcats the matrix with the specified rotation. M' = R(degrees, px, py) * M
486 public boolean postRotate(float degrees, float px, float py) {
487 nPostRotate(native_instance, degrees, px, py);
500 * Postconcats the matrix with the specified skew. M' = K(kx, ky, px, py) * M
502 public boolean postSkew(float kx, float ky, float px, float py) {
503 nPostSkew(native_instance, kx, ky, px, py);
887 private static native void nSetScale(long nObject, float sx, float sy, float px, float py);
891 private static native void nSetRotate(long nObject, float degrees, float px, float py);
896 float px, float py);
900 private static native void nSetSkew(long nObject, float kx, float ky, float px, float py);
908 private static native void nPreScale(long nObject, float sx, float sy, float px, float py);
912 private static native void nPreRotate(long nObject, float degrees, float px, float py);
916 private static native void nPreSkew(long nObject, float kx, float ky, float px, float py);
924 private static native void nPostScale(long nObject, float sx, float sy, float px, float py);
928 private static native void nPostRotate(long nObject, float degrees, float px, float py);
932 private static native void nPostSkew(long nObject, float kx, float ky, float px, float py);