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()
将此点集合对象转换成为一个点对象的数组。
|
public Point3Ds()
public Point3Ds(Point3Ds points)
points
- 指定的 Point3Ds 对象。public Point3Ds(Point3D[] points)
points
- 指定的点对象的数组。public Point3Ds clone()
clone
在类中 java.lang.Object
public int getCount()
public Point3D getItem(int index)
index
- 指定的序号。public void setItem(int index, Point3D point3D)
index
- 指定的序号。point3D
- 指定点集合对象中指定序号的点对象。public int add(Point3D pt)
pt
- 要添加到此点集合对象中的点对象。public int addRange(Point3D[] points)
points
- 要添加到此点集合对象中的多个点对象。public boolean insert(int index, Point3D point)
index
- 要添加到的序号。point
- 指定要添加的点对象。public int insertRange(int index, Point3D[] points)
index
- 添加对象的起始序号。points
- 要添加的多个点对象。public boolean remove(int index)
index
- 要删除的点对象的序号。public int removeRange(int index, int count)
index
- 删除对象的起始序号。count
- 要删除的点对象的个数。public void clear()
public Point3D[] toArray()