com.supermap.data
类 Point3Ds
- java.lang.Object
-
- com.supermap.data.Point3Ds
-
public class Point3Ds extends java.lang.Object
三维点集合对象。此类管理三维线对象或三维线对象的子对象上的所有节点。由于线对象或线对象的子对象都是有向的,所以其点集合对象为有序的点的集合。
-
-
构造器概要
构造器 构造器和说明 Point3Ds()
构造一个新的 Point3Ds 对象。Point3Ds(Point3D[] points)
根据指定的参数来构造一个 Point3Ds 的新对象。Point3Ds(Point3Ds points)
根据给定的 Point3Ds 对象构造一个与其完全相同的新对象。
-
方法概要
所有方法 实例方法 具体方法 限定符和类型 方法和说明 int
add(Point3D pt)
将指定的点对象添加到点集合对象的末尾。int
addRange(Point3D[] points)
将指定的多个点对象添加到此点集合对象的末尾。void
clear()
清除当前点集合对象中的所有元素。Point3Ds
clone()
返回当前 Point3Ds 对象的一个拷贝。int
getCount()
返回此点集合对象中所包含的点对象的总数。Point3D
getItem(int index)
返回此点集合对象中指定序号的点对象。boolean
insert(int index, Point3D point)
将指定的点对象添加到此点集合的指定序号处。int
insertRange(int index, Point3D[] points)
将指定的多个点对象添加到此点集合中,从指定的序号开始依次添加。boolean
remove(int index)
将此点集合对象中指定序号处的点对象删除。int
removeRange(int index, int count)
将此点集合对象中从指定序号开始的指定个数的多个点对象删除。void
setItem(int index, Point3D point3D)
设置此点集合对象中指定序号的点对象。Point3D[]
toArray()
将此点集合对象转换成为一个点对象的数组。
-
-
-
构造器详细资料
-
Point3Ds
public Point3Ds()
构造一个新的 Point3Ds 对象。
-
Point3Ds
public Point3Ds(Point3Ds points)
根据给定的 Point3Ds 对象构造一个与其完全相同的新对象。- 参数:
points
- 指定的 Point3Ds 对象。
-
Point3Ds
public Point3Ds(Point3D[] points)
根据指定的参数来构造一个 Point3Ds 的新对象。- 参数:
points
- 指定的点对象的数组。
-
-
方法详细资料
-
clone
public Point3Ds clone()
返回当前 Point3Ds 对象的一个拷贝。- 覆盖:
clone
在类中java.lang.Object
- 返回:
- 通过克隆操作得到的 Point3Ds 对象。
-
getCount
public int getCount()
返回此点集合对象中所包含的点对象的总数。- 返回:
- 此点集合对象中所包含的点对象的总数。
- Default:
- 默认值为 0。
-
getItem
public Point3D getItem(int index)
返回此点集合对象中指定序号的点对象。- 参数:
index
- 指定的序号。- 返回:
- 此点集合对象中指定序号的点对象。
-
setItem
public void setItem(int index, Point3D point3D)
设置此点集合对象中指定序号的点对象。- 参数:
index
- 指定的序号。point3D
- 指定点集合对象中指定序号的点对象。
-
add
public int add(Point3D pt)
将指定的点对象添加到点集合对象的末尾。- 参数:
pt
- 要添加到此点集合对象中的点对象。- 返回:
- 添加的点对象的序号。
-
addRange
public int addRange(Point3D[] points)
将指定的多个点对象添加到此点集合对象的末尾。- 参数:
points
- 要添加到此点集合对象中的多个点对象。- 返回:
- 添加的多个点对象的个数。
-
insert
public boolean insert(int index, Point3D point)
将指定的点对象添加到此点集合的指定序号处。- 参数:
index
- 要添加到的序号。point
- 指定要添加的点对象。- 返回:
- 添加成功,返回 true;否则,返回 false。
-
insertRange
public int insertRange(int index, Point3D[] points)
将指定的多个点对象添加到此点集合中,从指定的序号开始依次添加。- 参数:
index
- 添加对象的起始序号。points
- 要添加的多个点对象。- 返回:
- 添加的点对象的个数。
-
remove
public boolean remove(int index)
将此点集合对象中指定序号处的点对象删除。- 参数:
index
- 要删除的点对象的序号。- 返回:
- 删除成功,返回 true;否则返回 false。
-
removeRange
public int removeRange(int index, int count)
将此点集合对象中从指定序号开始的指定个数的多个点对象删除。- 参数:
index
- 删除对象的起始序号。count
- 要删除的点对象的个数。- 返回:
- 删除的点对象的个数。
-
clear
public void clear()
清除当前点集合对象中的所有元素。
-
toArray
public Point3D[] toArray()
将此点集合对象转换成为一个点对象的数组。- 返回:
- 此点集合对象转换得到的点对象的数组。
-
-