All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.awt.geom.Point2D.Float

java.lang.Object
    |
    +----java.awt.geom.Point2D
            |
            +----java.awt.geom.Point2D.Float

public static class Point2D.Float
extends Point2D
A point specified in float precision.


Variable Index

 o x
The X coordinate.
 o y
The Y coordinate.

Constructor Index

 o Point2D.Float()
Constructs and initializes a Point with coordinates (0, 0).
 o Point2D.Float(float, float)
Constructs and initializes a Point with the specified coordinates.

Method Index

 o getX()
Returns the X coordinate of the point in double precision.
 o getY()
Returns the Y coordinate of the point in double precision.
 o setLocation(double, double)
Sets the location of this point to the specified double coordinates.
 o setLocation(float, float)
Sets the location of this point to the specified float coordinates.
 o toString()
Returns a String that represents the value of this Object.

Variables

 o x
public float x
The X coordinate.

 o y
public float y
The Y coordinate.

Constructors

 o Point2D.Float
public Point2D.Float()
Constructs and initializes a Point with coordinates (0, 0).

 o Point2D.Float
public Point2D.Float(float x,
                     float y)
Constructs and initializes a Point with the specified coordinates.

Methods

 o getX
public double getX()
Returns the X coordinate of the point in double precision.

Overrides:
getX in class Point2D
 o getY
public double getY()
Returns the Y coordinate of the point in double precision.

Overrides:
getY in class Point2D
 o setLocation
public void setLocation(double x,
                        double y)
Sets the location of this point to the specified double coordinates.

Overrides:
setLocation in class Point2D
 o setLocation
public void setLocation(float x,
                        float y)
Sets the location of this point to the specified float coordinates.

 o 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