DG Kernel (ActiveX) Documentation


Skip Navigation Links.
Start page
Quick Start
Search Page
Installation
What is new
Upgrading Native Apps
Licensing
Expand ModelsModels
Expand DG Kernel ControlsDG Kernel Controls
Collapse API ReferenceAPI Reference
Interface List
Vector Space
Collapse General GeometryGeneral Geometry
Expand ModelModel
Expand ViewView
Expand General ComputingGeneral Computing
Expand Samples and TutorialsSamples and Tutorials
Expand GraphicsGraphics
Expand Math ObjectsMath Objects
Expand DeprecatedDeprecated
Redistribution
Model Viewer
Open Source
Support
Skip Navigation LinksHome Page > API Reference > General Geometry > IPointArray_DG Go to DGKC docs Search Documentation


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)