Class EDU.auburn.VGJ.util.DPoint
All Packages Class Hierarchy This Package Previous Next Index
Class EDU.auburn.VGJ.util.DPoint
java.lang.Object
|
+----EDU.auburn.VGJ.util.DPoint
- public class DPoint
- extends Object
A class for holding a real position.
Here is the source.
-
x
-
-
y
-
-
DPoint()
-
-
DPoint(double, double)
-
-
DPoint(DPoint)
-
-
equals(DPoint)
-
-
move(double, double)
-
-
move(DPoint)
-
-
translate(double, double)
-
x
public double x
y
public double y
DPoint
public DPoint(double x_in,
double y_in)
DPoint
public DPoint()
DPoint
public DPoint(DPoint init)
equals
public boolean equals(DPoint other)
move
public void move(double new_x,
double new_y)
move
public void move(DPoint to)
translate
public void translate(double x_shift,
double y_shift)
All Packages Class Hierarchy This Package Previous Next Index