Lines Matching refs:kx

93         public void setSkew(float kx, float ky, float px, float py) {
98 public void setSkew(float kx, float ky) {
139 public boolean preSkew(float kx, float ky, float px, float py) {
145 public boolean preSkew(float kx, float ky) {
187 public boolean postSkew(float kx, float ky, float px, float py) {
193 public boolean postSkew(float kx, float ky) {
369 public void setSkew(float kx, float ky, float px, float py) {
370 nSetSkew(native_instance, kx, ky, px, py);
374 public void setSkew(float kx, float ky) {
375 nSetSkew(native_instance, kx, ky);
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);
444 * Preconcats the matrix with the specified skew. M' = M * K(kx, ky)
446 public boolean preSkew(float kx, float ky) {
447 nPreSkew(native_instance, kx, ky);
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);
508 * Postconcats the matrix with the specified skew. M' = K(kx, ky) * M
510 public boolean postSkew(float kx, float ky) {
511 nPostSkew(native_instance, kx, ky);
900 private static native void nSetSkew(long nObject, float kx, float ky, float px, float py);
902 private static native void nSetSkew(long nObject, float kx, float ky);
916 private static native void nPreSkew(long nObject, float kx, float ky, float px, float py);
918 private static native void nPreSkew(long nObject, float kx, float ky);
932 private static native void nPostSkew(long nObject, float kx, float ky, float px, float py);
934 private static native void nPostSkew(long nObject, float kx, float ky);