aboutsummaryrefslogtreecommitdiff
path: root/src/ReverseElucidean2DPointMaker.java
blob: 96a5529469dd9977d361dd621ca7cddda0a43b42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*    */ public class ReverseElucidean2DPointMaker extends Point2DMaker
/*    */ {
/*    */   public ReverseElucidean2DPointMaker()
/*    */   {
/* 13 */     super('y', 'x', new XEqualsDynamicGraphBuilder());
/*    */   }
/*    */   public Point2D createPoint(double x, double y) {
/* 16 */     return new Point2D(y, x);
/*    */   }
/*    */   public GraphIterator getIteratorInstance(Graph2D graph) {
/* 19 */     return XEqualsGraphIterator.getInstance(graph);
/*    */   }
/*    */ }

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