1
2 package org.catacomb.graph.arbor;
3
4
5 import org.catacomb.be.XYLocation;
6
7
8 public class ManipXYLocation implements XYLocation {
9
10 double xpos;
11 double ypos;
12
13 public ManipXYLocation(double x, double y) {
14 xpos = x;
15 ypos = y;
16 }
17
18
19 public double getX() {
20 return xpos;
21 }
22
23 public double getY() {
24 return ypos;
25 }
26
27 }