- java.lang.Object
-
- java.awt.geom.Point2D
-
- java.awt.geom.Point2D.Float
-
- All Implemented Interfaces:
-
Serializable
,Cloneable
- Enclosing class:
- Point2D
public static class Point2D.Float extends Point2D implements Serializable
Float
类定义了浮点精度指定的点。- 从以下版本开始:
- 1.2
- 另请参见:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.awt.geom.Point2D
Point2D.Double, Point2D.Float
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 double
getX()
返回double
精度的Point2D
的X坐标。double
getY()
返回这个Point2D
的Y坐标在double
精度。void
setLocation(double x, double y)
将此Point2D
的位置设置为指定的double
坐标。void
setLocation(float x, float y)
将此Point2D
的位置设置为指定的float
坐标。String
toString()
返回一个表示String
的值的Point2D
。-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.awt.geom.Point2D
clone, distance, distance, distance, distanceSq, distanceSq, distanceSq, equals, hashCode, setLocation
-
-
-
-
方法详细信息
-
getX
public double getX()
以double
精度返回此Point2D
的X坐标。
-
getY
public double getY()
返回double
精度的Point2D
的Y坐标。
-
setLocation
public void setLocation(double x, double y)
将此Point2D
的位置设置为指定的double
坐标。- Specified by:
-
setLocation
在Point2D
- 参数
-
x
- 这个Point2D
的新X坐标 -
y
- 这个Point2D
的新的Y坐标 - 从以下版本开始:
- 1.2
-
setLocation
public void setLocation(float x, float y)
将此Point2D
的位置设置为指定的float
坐标。- 参数
-
x
- 这个Point2D
的新X坐标 -
y
- 这个新的Y坐标Point2D
- 从以下版本开始:
- 1.2
-
-