From 1c5e38fe69ac8a6decbdd8abe93112f4e3369315 Mon Sep 17 00:00:00 2001 From: Joshua Rahm Date: Fri, 30 Jan 2015 17:11:48 -0700 Subject: added source --- src/Elucidean2DPointMaker.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Elucidean2DPointMaker.java (limited to 'src/Elucidean2DPointMaker.java') diff --git a/src/Elucidean2DPointMaker.java b/src/Elucidean2DPointMaker.java new file mode 100644 index 0000000..6bb2f8b --- /dev/null +++ b/src/Elucidean2DPointMaker.java @@ -0,0 +1,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 + */ \ No newline at end of file -- cgit