- java.lang.Object
-
- java.awt.geom.Point2D
-
- java.awt.geom.Point2D.Float
-
- 实现的所有接口
-
Serializable
,Cloneable
- Enclosing class:
- Point2D
public static class Point2D.Float extends Point2D implements Serializable
Float
类定义以float精度指定的点。- 从以下版本开始:
- 1.2
- 另请参见:
- Serialized Form
-
-
嵌套类汇总
-
嵌套类/接口声明在类 java.awt.geom.Point2D
Point2D.Double, Point2D.Float
-
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 double
getX()
以double
精度返回此Point2D
的X坐标。double
getY()
以double
精度返回此Point2D
的Y坐标。void
setLocation(double x, double y)
将此Point2D
的位置设置为指定的double
坐标。void
setLocation(float x, float y)
将此Point2D
的位置设置为指定的float
坐标。String
toString()
返回String
表示此值Point2D
。-
声明方法的类 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
- 此Point2D
的新Y坐标 - 从以下版本开始:
- 1.2
-
-