public static class Point2D.Double extends Point2D implements Serializable
Double
类定义了一个指定在
double
精度的点。
Point2D.Double, Point2D.Float
Modifier and Type | Field and Description |
---|---|
double |
x
这个
Point2D 的X
Point2D 。
|
double |
y
这个
Point2D 的Y
Point2D 。
|
Constructor and Description |
---|
Double()
构造并初始化一个
Point2D 具有坐标(0,0)。
|
Double(double x, double y)
构造并初始化一个
Point2D 以指定的坐标。
|
Modifier and Type | Method and Description |
---|---|
double |
getX()
返回这个
Point2D 的
double 坐标在
double 精度。
|
double |
getY()
返回这个
Point2D 的
double 坐标在
double 精度。
|
void |
setLocation(double x, double y)
将此
Point2D 的位置设置为指定的
double 坐标。
|
String |
toString()
返回
String 表示此值
Point2D 。
|
clone, distance, distance, distance, distanceSq, distanceSq, distanceSq, equals, hashCode, setLocation
public double x
Point2D
的X
Point2D
。
public double y
Point2D
的Y
Point2D
。
public Double()
Point2D
具有坐标(0,0)。
public Double(double x, double y)
Point2D
以指定的坐标。
x
- 新建的Point2D的X
Point2D
y
- 新构建的Y坐标
Point2D
public double getX()
Point2D
在
double
精度。
public double getY()
Point2D
的Y坐标在
double
精度。
public void setLocation(double x, double y)
Point2D
的位置设置为指定的
double
坐标。
setLocation
在
Point2D
x
- 这个
Point2D
的新X
Point2D
y
- 这个
Point2D
的新的Y
Point2D
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.