IPointMatrix_DG Interface
A matrix, elements of which are 3D points. All indices in DG Kenel are 0-based
A standalone point matrix can be created via IObjectGenerator_DG.Create("IPointMatrix_DG") > IPointMatrix_DG query.
- GetSize
- SetSize
- GetPoint
- GetPoint1
- SetPoint
- SetPoint1
- Copy
- GetRows
- GetColumns
void GetSize(out int rows, out int columns)
void SetSize(int rows, int columns)
Point_DG GetPoint(int row, int column)
void GetPoint1(int row, int column, out double* x, out double* y, out double* z)
void SetPoint(int row, int column, Point_DG pt)
void SetPoint1(int row, int column, double x, double y, double z)
void Copy(IPointMatrix_DG iArray)
int GetRows()
int GetColumns()
|