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

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