IPointArray_DG Interface
All indices in DG Kenel are 0-based
A standalone point array can be created via IObjectGenerator_DG.Create("IPointArray_DG") > IPointArray_DG query.
- GetCount
- SetCount
- GetPoint
- SetPoint
- SetPoint1
- Add
- Add1
- InsertAt
- RemoveAt
- RemoveAll
- FindPoint
- Copy
- Append
- InsertArrayAt
int GetCount()
void SetCount(int count)
Point_DG GetPoint(int index)
void SetPoint(int index, Point_DG pt)
void SetPoint1(int index, double x, double y, double z)
void Add(Point_DG pt)
void Add1(double x, double y, double z)
void InsertAt(int indexAt, Point_DG pt)
void RemoveAt(int index)
void RemoveAll()
int FindPoint(Point_DG pt, double tolerance)
Returns -1 if not found
void Copy(IPointArray_DG iArray)
void Append(IPointArray_DG iArray)
void InsertArrayAt(int indexAt, IPointArray_DG iArray)
|