com.supermap.data
类 GeoCurve
- java.lang.Object
-
- com.supermap.data.Geometry
-
- com.supermap.data.GeoCurve
-
-
构造器概要
构造器 构造器和说明 GeoCurve()
构造一个新的 GeoCurve 对象。GeoCurve(GeoCurve geoCurve)
根据指定的 GeoCurve 对象构造一个与其完全相同的新对象。GeoCurve(Point2Ds controlPoints)
根据指定的参数来构造一个 GeoCurve 的新对象。
-
方法概要
所有方法 实例方法 具体方法 限定符和类型 方法和说明 GeoCurve
clone()
返回当前 GeoCurve 对象的一个拷贝。GeoLine
convertToLine(int pointCountPerSegment)
将二维曲线几何对象转换为线几何对象。void
dispose()
释放该对象所占用的资源。Point2Ds
getControlPoints()
返回控制点集合。double
getLength()
返回二维曲线几何对象的长度。boolean
isEmpty()
返回二维曲线几何对象是否为空。void
setControlPoints(Point2Ds controlPoints)
设置控制点集合。void
setEmpty()
将二维曲线对象置为空。
-
-
-
构造器详细资料
-
GeoCurve
public GeoCurve()
构造一个新的 GeoCurve 对象。
-
GeoCurve
public GeoCurve(GeoCurve geoCurve)
根据指定的 GeoCurve 对象构造一个与其完全相同的新对象。- 参数:
geoCurve
- 指定的 GeoCurve 对象。
-
GeoCurve
public GeoCurve(Point2Ds controlPoints)
根据指定的参数来构造一个 GeoCurve 的新对象。- 参数:
controlPoints
- 控制点串。
-
-
方法详细资料
-
getLength
public double getLength()
返回二维曲线几何对象的长度。- 返回:
- 二维曲线几何对象的长度。
- Default:
- 默认值为 0。
-
isEmpty
public boolean isEmpty()
返回二维曲线几何对象是否为空。
-
getControlPoints
public Point2Ds getControlPoints()
返回控制点集合。- 返回:
- 控制点集合。
- Default:
- 默认值为空的
Point2Ds
对象。
-
setControlPoints
public void setControlPoints(Point2Ds controlPoints)
设置控制点集合。- 参数:
controlPoints
- 控制点集合。
-
convertToLine
public GeoLine convertToLine(int pointCountPerSegment)
将二维曲线几何对象转换为线几何对象。- 参数:
pointCountPerSegment
- 二维曲线的相邻控制点之间插值拟合的节点数。- 返回:
- 线集合对象。
-
clone
public GeoCurve clone()
返回当前 GeoCurve 对象的一个拷贝。
-
-