blob: 022048da6ba8be7eb36c8c9e2d82c12456b42f9c (
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
|
/* */ 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
*/
|