diff options
Diffstat (limited to 'src/ReverseElucidean2DPointMaker.java')
| -rw-r--r-- | src/ReverseElucidean2DPointMaker.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ReverseElucidean2DPointMaker.java b/src/ReverseElucidean2DPointMaker.java new file mode 100644 index 0000000..96a5529 --- /dev/null +++ b/src/ReverseElucidean2DPointMaker.java @@ -0,0 +1,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 + */
\ No newline at end of file |