blob: 169aee2b06caaa07668b3cf4a6b23bee3f6c6d2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* */ public class Euclidean2DPointMaker extends Point2DMaker
/* */ {
/* */ public Euclidean2DPointMaker()
/* */ {
/* 15 */ super('x', 'y', new EuclideanDynamicGraphBuilder());
/* */ }
/* */ public Point2D createPoint(double x, double y) {
/* 18 */ return new Point2D(x, y);
/* */ }
/* */ public GraphIterator getIteratorInstance(Graph2D graph) {
/* 21 */ return EuclideanGraphIterator.getInstance(graph);
/* */ }
/* */ }
/* Location: Modulus.jar
* Qualified Name: Euclidean2DPointMaker
* JD-Core Version: 0.6.2
*/
|