diff options
| author | Joshua Rahm <joshua.rahm@colorado.edu> | 2015-01-30 17:11:48 -0700 |
|---|---|---|
| committer | Joshua Rahm <joshua.rahm@colorado.edu> | 2015-01-30 17:11:48 -0700 |
| commit | 1c5e38fe69ac8a6decbdd8abe93112f4e3369315 (patch) | |
| tree | 926cef8cb76d46862ed2c4ec7028720611e47476 /src/CoordinateSystem.java | |
| download | Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.gz Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.bz2 Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.zip | |
added source
Diffstat (limited to 'src/CoordinateSystem.java')
| -rw-r--r-- | src/CoordinateSystem.java | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/CoordinateSystem.java b/src/CoordinateSystem.java new file mode 100644 index 0000000..eee2523 --- /dev/null +++ b/src/CoordinateSystem.java @@ -0,0 +1,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 + */
\ No newline at end of file |