All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.geom.Point2D.Double
java.lang.Object
|
+----java.awt.geom.Point2D
|
+----java.awt.geom.Point2D.Double
- public static class Point2D.Double
- extends Point2D
A point specified in double precision.
x- The x coordinate of the point.
y- The y coordinate of the point.
Point2D.Double()
- Constructs and initializes a Point with coordinates (0, 0).
Point2D.Double(double, double)
- Constructs and initializes a Point with the specified coordinates.
getX()
- Returns the X coordinate of the point in double precision.
getY()
- Returns the Y coordinate of the point in double precision.
setLocation(double, double)
- Sets the location of this point to the specified double coordinates.
toString()
- Returns a String that represents the value of this Object.
x
public double x
- The x coordinate of the point.
y
public double y
- The y coordinate of the point.
Point2D.Double
public Point2D.Double()
- Constructs and initializes a Point with coordinates (0, 0).
Point2D.Double
public Point2D.Double(double x,
double y)
- Constructs and initializes a Point with the specified coordinates.
getX
public double getX()
- Returns the X coordinate of the point in double precision.
- Overrides:
- getX in class Point2D
getY
public double getY()
- Returns the Y coordinate of the point in double precision.
- Overrides:
- getY in class Point2D
setLocation
public void setLocation(double x,
double y)
- Sets the location of this point to the specified double coordinates.
- Overrides:
- setLocation in class Point2D
toString
public String toString()
- Returns a String that represents the value of this Object.
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature