I2DPointArray_DG Interface
- GetCount
- SetCount
- GetPoint
- GetPoint1
- SetPoint
- SetPoint
- Add
- InsertAt
- RemoveAt
- RemoveAll
- FindPoint
- Copy
- Append
- InsertArrayAt
All indices in DG Kenel are 0-based
Standalone I2DPointArray_DG can be created using IObjectGenerator_DG.Create("I2DPointArray_DG") > I2DPointArray_DG query
int GetCount()
void SetCount(int count)
void GetPoint(int index, double x, double y)
DG2D GetPoint1(int index)
void SetPoint(int index, double x, double y)
void SetPoint1(int index, DG2D pt)
void Add(double x, double y)
void InsertAt(int indexAt, double x, double y)
void RemoveAt(int index)
void RemoveAll()
void FindPoint(double x, double y, double tolerance, int index)
void Copy(I2DPointArray_DG iArray)
void Append(I2DPointArray_DG iArray)
void InsertArrayAt(int indexAt, I2DPointArray_DG iArray)
|