aboutsummaryrefslogtreecommitdiff
path: root/src/GraphIterator.java
diff options
context:
space:
mode:
authorJoshua Rahm <joshua.rahm@colorado.edu>2015-01-30 17:11:48 -0700
committerJoshua Rahm <joshua.rahm@colorado.edu>2015-01-30 17:11:48 -0700
commit1c5e38fe69ac8a6decbdd8abe93112f4e3369315 (patch)
tree926cef8cb76d46862ed2c4ec7028720611e47476 /src/GraphIterator.java
downloadModulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.gz
Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.bz2
Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.zip
added source
Diffstat (limited to 'src/GraphIterator.java')
-rw-r--r--src/GraphIterator.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/GraphIterator.java b/src/GraphIterator.java
new file mode 100644
index 0000000..022048d
--- /dev/null
+++ b/src/GraphIterator.java
@@ -0,0 +1,27 @@
+/* */ public abstract class GraphIterator
+/* */ {
+/* */ protected double index;
+/* */
+/* */ public GraphIterator(double start)
+/* */ {
+/* 12 */ this.index = start;
+/* */ }
+/* */ public double getIndex() {
+/* 15 */ return this.index;
+/* */ }
+/* */ public abstract boolean hasMoreTokens();
+/* */
+/* */ public abstract void onTurn();
+/* */
+/* */ public double translateIndex(Graph2D graph) {
+/* 22 */ return this.index;
+/* */ }
+/* */ public double translateNumber(Graph2D graph, double i) {
+/* 25 */ return i;
+/* */ }
+/* */ }
+
+/* Location: Modulus.jar
+ * Qualified Name: GraphIterator
+ * JD-Core Version: 0.6.2
+ */ \ No newline at end of file