|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.awt.geom.Point2D
public abstract class Point2D
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 |
构造方法详细信息 |
---|
protected Point2D()
Point2D.Float
,
Point2D.Double
,
Point
方法详细信息 |
---|
public abstract double getX()
double
精度返回此 Point2D
的 X 坐标。
Point2D
的 X 坐标。public abstract double getY()
double
精度返回此 Point2D
的 Y 坐标。
Point2D
的 Y 坐标。public abstract void setLocation(double x, double y)
Point2D
的位置设为指定的 double
坐标。
x, y
- 此 Point2D
的坐标public void setLocation(Point2D p)
Point2D
的位置设为指定的 Point2D
对象的坐标。
p
- 用于设置此 Point2D
的指定的 Point2D
public static double distanceSq(double X1, double Y1, double X2, double Y2)
X1, Y1
- 第一个点的坐标X2, Y2
- 第二个点的坐标
public static double distance(double X1, double Y1, double X2, double Y2)
X1, Y1
- 第一个点的坐标X2, Y2
- 第二个点的坐标
public double distanceSq(double PX, double PY)
Point2D
到指定点的距离的平方。
PX, PY
- 其他点的坐标
Point2D
和指定点之间距离的平方。public double distanceSq(Point2D pt)
Point2D
到指定 Point2D
的距离的平方。
pt
- 指定的 Point2D
Point2D
到指定 Point2D
之间距离的平方。public double distance(double PX, double PY)
Point2D
到指定点的距离。
PX, PY
- 指定 Point2D
的坐标
Point2D
和指定点之间的距离。public double distance(Point2D pt)
Point2D
到指定 Point2D
的距离。
pt
- 指定的 Point2D
Point2D
和指定 Point2D
之间的距离。public Object clone()
Object
中的 clone
OutOfMemoryError
- 如果没有足够的内存。Cloneable
public int hashCode()
Point2D
的哈希码。
Object
中的 hashCode
Point2D
的哈希码Object.equals(java.lang.Object)
,
Hashtable
public boolean equals(Object obj)
Point2D
的两个实例的 x
和 y
成员字段的值相同,则它们是相等的,这表示它们在坐标空间中的位置是一样的。
Object
中的 equals
obj
- 要与此 Point2D
的实例进行比较的对象
Point2D
的实例且有相同的值,则返回 true
;否则返回 false
。Object.hashCode()
,
Hashtable
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2004 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。