All Packages Class Hierarchy This Package Previous Next Index
Object | +----EDU.emporia.mathtools.Point2D
Point2D class defines a point representing a location
in (x, y) coordinate space.
This class is only the abstract superclass for all objects that store a 2D coordinate. The actual storage representation of the coordinates is left to the subclass. (Note: We only include this in the package so that it can be used in versions of Java before 1.2)
Double class defines a point specified in
double precision.
Float class defines a point specified in float
precision.
Point2D to
a specified point.
Point2D to a
specified Point2D.
Point2D to a specified point.
Point2D to a specified Point2D.
Point2D in
double precision.
Point2D in
double precision.
Point2D.
Point2D to the
specified float coordinates.
Point2D to the same
coordinates as the specified Point2D object.
protected Point2D()
public java.lang.Object clone()
public static double distance(double X1,
double Y1,
double X2,
double Y2)
public double distance(double PX,
double PY)
Point2D to
a specified point.
Point2D
Point2D
and a specified point.
public double distance(Point2D pt)
Point2D to a
specified Point2D.
Point2D
Point2D and
the specified Point2D.
public static double distanceSq(double X1,
double Y1,
double X2,
double Y2)
public double distanceSq(double PX,
double PY)
Point2D to a specified point.
Point2D and the specified point.
public double distanceSq(Point2D pt)
Point2D to a specified Point2D.
Point2D
Point2D to a specified Point2D.
public boolean equals(Object obj)
Point2D are equal if the values of their
x and y member fields, representing
their position in the coordinate space, are the same.
Point2D
true if the object to be compared is
an instance of Point2D and has
the same values; false otherwise.
public abstract double getX()
Point2D in
double precision.
Point2D.
public abstract double getY()
Point2D in
double precision.
Point2D.
public int hashCode()
Point2D.
Point2D.
public abstract void setLocation(double x,
double y)
Point2D to the
specified float coordinates.
Point2D
public void setLocation(Point2D p)
Point2D to the same
coordinates as the specified Point2D object.
Point2D the which to set
this Point2D
All Packages Class Hierarchy This Package Previous Next Index