Java Platform 1.2
Beta 4

java.awt.geom
Class 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.


Inner classes inherited from class java.awt.geom.Point2D
Point2D.Double, Point2D.Float
 
Field Summary
 float x
          The X coordinate.
 float y
          The Y coordinate.
 
Constructor Summary
Point2D.Float()
          Constructs and initializes a Point with coordinates (0, 0).
Point2D.Float(float x, float y)
          Constructs and initializes a Point with the specified coordinates.
 
Method Summary
 double getX()
          Returns the X coordinate of the point in double precision.
 double getY()
          Returns the Y coordinate of the point in double precision.
 void setLocation(double x, double y)
          Sets the location of this point to the specified double coordinates.
 void setLocation(float x, float y)
          Sets the location of this point to the specified float coordinates.
 String toString()
          Returns a String that represents the value of this Object.
 
Methods inherited from class java.awt.geom.Point2D
clone, distance, distance, distance, distanceSq, distanceSq, distanceSq, equals, setLocation
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

x

public float x
The X coordinate.
Since:
JDK1.2

y

public float y
The Y coordinate.
Since:
JDK1.2
Constructor Detail

Point2D.Float

public Point2D.Float()
Constructs and initializes a Point with coordinates (0, 0).
Since:
JDK1.2

Point2D.Float

public Point2D.Float(float x,
                     float y)
Constructs and initializes a Point with the specified coordinates.
Since:
JDK1.2
Method Detail

getX

public double getX()
Returns the X coordinate of the point in double precision.
Overrides:
getX in class Point2D
Since:
JDK1.2

getY

public double getY()
Returns the Y coordinate of the point in double precision.
Overrides:
getY in class Point2D
Since:
JDK1.2

setLocation

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

setLocation

public void setLocation(float x,
                        float y)
Sets the location of this point to the specified float coordinates.
Since:
JDK1.2

toString

public String toString()
Returns a String that represents the value of this Object.
Overrides:
toString in class Object
Since:
JDK1.2

Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.