aboutsummaryrefslogtreecommitdiff
path: root/src/CoordinateSystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/CoordinateSystem.java')
-rw-r--r--src/CoordinateSystem.java35
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