Lines Matching defs:px

59         public void setScale(float sx, float sy, float px, float py) {
69 public void setRotate(float degrees, float px, float py) {
79 public void setSinCos(float sinValue, float cosValue, float px, float py) {
89 public void setSkew(float kx, float ky, float px, float py) {
111 public boolean preScale(float sx, float sy, float px, float py) {
123 public boolean preRotate(float degrees, float px, float py) {
135 public boolean preSkew(float kx, float ky, float px, float py) {
159 public boolean postScale(float sx, float sy, float px, float py) {
171 public boolean postRotate(float degrees, float px, float py) {
183 public boolean postSkew(float kx, float ky, float px, float py) {
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);
312 * point at (px, py). The pivot point is the coordinate that should remain
315 public void setRotate(float degrees, float px, float py) {
316 native_setRotate(native_instance, degrees, px, py);
328 * pivot point at (px, py). The pivot point is the coordinate that should
331 public void setSinCos(float sinValue, float cosValue, float px, float py) {
332 native_setSinCos(native_instance, sinValue, cosValue, px, py);
341 * Set the matrix to skew by sx and sy, with a pivot point at (px, py).
345 public void setSkew(float kx, float ky, float px, float py) {
346 native_setSkew(native_instance, kx, ky, px, py);
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);
390 * M' = M * R(degrees, px, py)
392 public boolean preRotate(float degrees, float px, float py) {
393 return native_preRotate(native_instance, degrees, px, py);
406 * M' = M * K(kx, ky, px, py)
408 public boolean preSkew(float kx, float ky, float px, float py) {
409 return native_preSkew(native_instance, kx, ky, px, py);
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);
454 * M' = R(degrees, px, py) * M
456 public boolean postRotate(float degrees, float px, float py) {
457 return native_postRotate(native_instance, degrees, px, py);
470 * M' = K(kx, ky, px, py) * M
472 public boolean postSkew(float kx, float ky, float px, float py) {
473 return native_postSkew(native_instance, kx, ky, px, py);
815 float sx, float sy, float px, float py);
819 float degrees, float px, float py);
823 float sinValue, float cosValue, float px, float py);
827 float kx, float ky, float px, float py);
835 float sx, float sy, float px, float py);
839 float degrees, float px, float py);
843 float kx, float ky, float px, float py);
851 float sx, float sy, float px, float py);
855 float degrees, float px, float py);
859 float kx, float ky, float px, float py);