public class GeoPoint extends Geometry
构造器和说明 |
---|
GeoPoint()
构造一个新的 GeoPoint 对象,此几何点对象的坐标 X,Y 分别为-1.7976931348623157e+308。
|
GeoPoint(double x, double y)
根据指定的参数来构造一个 GeoPoint 的新对象。
|
GeoPoint(GeoPoint point)
根据给定的 GeoPoint 对象构造一个与其完全相同的新对象。
|
GeoPoint(Point2D point)
根据指定的参数来构造一个 GeoPoint 的新对象。
|
限定符和类型 | 方法和说明 |
---|---|
GeoPoint |
clone()
返回当前 GeoPoint 对象的一个拷贝。
|
void |
dispose()
释放该对象所占用的资源。
|
double |
getX()
返回此点几何对象的 X 坐标。
|
double |
getY()
返回此点几何对象的 Y 坐标。
|
boolean |
isEmpty()
判断当前点几何是否为空,即其 X 和 Y 坐标是否均为-1.7976931348623157e+308。
|
void |
setX(double x)
设置此点几何对象的 X 坐标。
|
void |
setY(double y)
设置此点几何对象的 Y 坐标。
|
public GeoPoint()
public GeoPoint(double x, double y)
x
- 指定点几何对象的 X 坐标值。y
- 指定点几何对象的 Y 坐标值。public GeoPoint(GeoPoint point)
point
- 指定的 GeoPoint 对象。public GeoPoint(Point2D point)
point
- 指定的二维点对象。public double getX()
public void setX(double x)
x
- 用以设置此点几何对象的 X 坐标。public double getY()
public void setY(double y)
y
- 用以设置此点几何对象的 Y 坐标。public GeoPoint clone()
public boolean isEmpty()
Environment
类。