|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.awt.geom
类 Point2D
java.lang.Object java.awt.geom.Point2D
- 所有已实现的接口:
- Cloneable
- 直接已知子类:
- Point, Point2D.Double, Point2D.Float
Point2D
类定义表示 (x, y) 坐标空间中的位置的点。
此类是所有存储 2D 坐标对象的惟一抽象超类。坐标的实际存储表示形式要靠子类来完成。
嵌套类摘要 | |
---|---|
static class |
Point2D.Double Double 类以 double 精度定义指定的点。 |
static class |
Point2D.Float Float 类以 float 精度定义指定的点。 |
构造方法摘要 | |
---|---|
protected |
Point2D() 这是一个无法直接实例化的抽象类。 |
方法摘要 | |
---|---|
Object |
clone() 创建一个与此对象具有相同类和相同内容的新对象。 |
double |
distance(double PX, double PY) 返回从此 Point2D 到指定点的距离。 |
static double |
distance(double X1, double Y1, double X2, double Y2) 返回两个点之间距离。 |
double |
distance(Point2D pt) 从此 Point2D 到指定 Point2D 的距离。 |
double |
distanceSq(double PX, double PY) 返回从此 Point2D 到指定点的距离的平方。 |
static double |
distanceSq(double X1, double Y1, double X2, double Y2) 返回两个点之间距离的平方。 |
double |
distanceSq(Point2D pt) 返回从此 Point2D 到指定 Point2D 的距离的平方。 |
boolean |
equals(Object obj) 确定两个点是否相等。 |
abstract double |
getX() 以 double 精度返回此 Point2D 的 X 坐标。 |
abstract double |
getY() 以 double 精度返回此 Point2D 的 Y 坐标。 |
int |
hashCode() 返回此 Point2D 的哈希码。 |
abstract void |
setLocation(double x, double y) 将此 Point2D 的位置设为指定的 double 坐标。 |
void |
setLocation(Point2D p) 将此 Point2D 的位置设为指定的 Point2D 对象的坐标。 |
从类 java.lang.Object 继承的方法 |
---|
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
Point2D
protected Point2D()
-
这是一个无法直接实例化的抽象类。特定于类型的实现子类可用于实例化,并提供用于存储满足以下各种访问器方法所需信息的许多格式。
- 另请参见:
-
Point2D.Float
,Point2D.Double
,Point
方法详细信息 |
---|
getX
public abstract double getX()
-
以
double
精度返回此Point2D
的 X 坐标。 -
-
- 返回:
-
此
Point2D
的 X 坐标。 - 从以下版本开始:
- 1.2
getY
public abstract double getY()
-
以
double
精度返回此Point2D
的 Y 坐标。 -
-
- 返回:
-
此
Point2D
的 Y 坐标。 - 从以下版本开始:
- 1.2
setLocation
public abstract void setLocation(double x, double y)
-
将此
Point2D
的位置设为指定的double
坐标。 -
-
- 参数:
-
x, y
- 此Point2D
的坐标 - 从以下版本开始:
- 1.2
setLocation
public void setLocation(Point2D p)
-
将此
Point2D
的位置设为指定的Point2D
对象的坐标。 -
-
- 参数:
-
p
- 用于设置此Point2D
的指定的Point2D
- 从以下版本开始:
- 1.2
distanceSq
public static double distanceSq(double X1, double Y1, double X2, double Y2)
- 返回两个点之间距离的平方。
-
-
- 参数:
-
X1, Y1
- 第一个点的坐标 -
X2, Y2
- 第二个点的坐标 - 返回:
- 两组指定坐标之间的距离的平方。
distance
public static double distance(double X1, double Y1, double X2, double Y2)
- 返回两个点之间距离。
-
-
- 参数:
-
X1, Y1
- 第一个点的坐标 -
X2, Y2
- 第二个点的坐标 - 返回:
- 两组指定坐标之间的距离。
distanceSq
public double distanceSq(double PX, double PY)
-
返回从此
Point2D
到指定点的距离的平方。 -
-
- 参数:
-
PX, PY
- 其他点的坐标 - 返回:
-
此
Point2D
和指定点之间距离的平方。