aboutsummaryrefslogtreecommitdiff
path: root/src/CoordinateSystem.java
blob: eee2523f933d8e4b95e28c767b0493585954f1ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
public abstract interface CoordinateSystem
{
  public abstract double getXRotation();

  public abstract double getYRotation();

  public abstract double getZRotation();

  public abstract double getXMove();

  public abstract double getYMove();

  public abstract double getScale();

  public abstract double getXPivot();

  public abstract double getYPivot();

  public abstract double getZPivot();

  public abstract int getWidth();

  public abstract int getHeight();

  public abstract double getCameraZ();

  public abstract double getCameraX();

  public abstract double getCameraY();
}

/* Location:           Modulus.jar
 * Qualified Name:     CoordinateSystem
 * JD-Core Version:    0.6.2
 */