All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.graphics.Matrix Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package android.graphics;

import android.graphics.RectF;

public class Matrix {
  public static final int MPERSP_0 = 6;
  public static final int MPERSP_1 = 7;
  public static final int MPERSP_2 = 8;
  public static final int MSCALE_X = 0;
  public static final int MSCALE_Y = 4;
  public static final int MSKEW_X = 1;
  public static final int MSKEW_Y = 3;
  public static final int MTRANS_X = 2;
  public static final int MTRANS_Y = 5;

  public Matrix() {
    throw new RuntimeException("Stub!");
  }

  public Matrix(Matrix src) {
    throw new RuntimeException("Stub!");
  }

  public boolean isIdentity() {
    throw new RuntimeException("Stub!");
  }

  public boolean isAffine() {
    throw new RuntimeException("Stub!");
  }

  public boolean rectStaysRect() {
    throw new RuntimeException("Stub!");
  }

  public void set(Matrix src) {
    throw new RuntimeException("Stub!");
  }

  public boolean equals(Object obj) {
    throw new RuntimeException("Stub!");
  }

  public int hashCode() {
    throw new RuntimeException("Stub!");
  }

  public void reset() {
    throw new RuntimeException("Stub!");
  }

  public void setTranslate(float dx, float dy) {
    throw new RuntimeException("Stub!");
  }

  public void setScale(float sx, float sy, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public void setScale(float sx, float sy) {
    throw new RuntimeException("Stub!");
  }

  public void setRotate(float degrees, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public void setRotate(float degrees) {
    throw new RuntimeException("Stub!");
  }

  public void setSinCos(float sinValue, float cosValue, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public void setSinCos(float sinValue, float cosValue) {
    throw new RuntimeException("Stub!");
  }

  public void setSkew(float kx, float ky, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public void setSkew(float kx, float ky) {
    throw new RuntimeException("Stub!");
  }

  public boolean setConcat(Matrix a, Matrix b) {
    throw new RuntimeException("Stub!");
  }

  public boolean preTranslate(float dx, float dy) {
    throw new RuntimeException("Stub!");
  }

  public boolean preScale(float sx, float sy, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public boolean preScale(float sx, float sy) {
    throw new RuntimeException("Stub!");
  }

  public boolean preRotate(float degrees, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public boolean preRotate(float degrees) {
    throw new RuntimeException("Stub!");
  }

  public boolean preSkew(float kx, float ky, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public boolean preSkew(float kx, float ky) {
    throw new RuntimeException("Stub!");
  }

  public boolean preConcat(Matrix other) {
    throw new RuntimeException("Stub!");
  }

  public boolean postTranslate(float dx, float dy) {
    throw new RuntimeException("Stub!");
  }

  public boolean postScale(float sx, float sy, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public boolean postScale(float sx, float sy) {
    throw new RuntimeException("Stub!");
  }

  public boolean postRotate(float degrees, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public boolean postRotate(float degrees) {
    throw new RuntimeException("Stub!");
  }

  public boolean postSkew(float kx, float ky, float px, float py) {
    throw new RuntimeException("Stub!");
  }

  public boolean postSkew(float kx, float ky) {
    throw new RuntimeException("Stub!");
  }

  public boolean postConcat(Matrix other) {
    throw new RuntimeException("Stub!");
  }

  public boolean setRectToRect(RectF src, RectF dst, Matrix.ScaleToFit stf) {
    throw new RuntimeException("Stub!");
  }

  public boolean setPolyToPoly(float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) {
    throw new RuntimeException("Stub!");
  }

  public boolean invert(Matrix inverse) {
    throw new RuntimeException("Stub!");
  }

  public void mapPoints(float[] dst, int dstIndex, float[] src, int srcIndex, int pointCount) {
    throw new RuntimeException("Stub!");
  }

  public void mapVectors(float[] dst, int dstIndex, float[] src, int srcIndex, int vectorCount) {
    throw new RuntimeException("Stub!");
  }

  public void mapPoints(float[] dst, float[] src) {
    throw new RuntimeException("Stub!");
  }

  public void mapVectors(float[] dst, float[] src) {
    throw new RuntimeException("Stub!");
  }

  public void mapPoints(float[] pts) {
    throw new RuntimeException("Stub!");
  }

  public void mapVectors(float[] vecs) {
    throw new RuntimeException("Stub!");
  }

  public boolean mapRect(RectF dst, RectF src) {
    throw new RuntimeException("Stub!");
  }

  public boolean mapRect(RectF rect) {
    throw new RuntimeException("Stub!");
  }

  public float mapRadius(float radius) {
    throw new RuntimeException("Stub!");
  }

  public void getValues(float[] values) {
    throw new RuntimeException("Stub!");
  }

  public void setValues(float[] values) {
    throw new RuntimeException("Stub!");
  }

  public String toString() {
    throw new RuntimeException("Stub!");
  }

  public String toShortString() {
    throw new RuntimeException("Stub!");
  }

  protected void finalize() throws Throwable {
    throw new RuntimeException("Stub!");
  }

  public static enum ScaleToFit {
    CENTER,
    END,
    FILL,
    START;

    private ScaleToFit() {
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy