DGKC Control Documentation


Skip Navigation Links.
Start page
Quick Start
Search Page
Installation
What is new
Licensing
Expand ModelsModels
Expand DG Kernel ControlDG Kernel Control
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
Support
Skip Navigation LinksHome Page > API Reference > General Geometry > IPointArray_DG Go to ActiveX docs Search Documentation


IPointArray_DG Interface

All indices in DG Kenel are 0-based

A standalone point array can be created via IObjectGenerator_DG.IObjectGenerator_DG.Create<IPointArray_DG>() call.

Properties

int Count

Methods

GetPoint
SetPoint
SetPoint
Add
Add
InsertAt
RemoveAt
RemoveAll
FindPoint
Copy
Append
InsertArrayAt

PointDg GetPoint(int index)


void SetPoint(int index, PointDg pt)


void SetPoint(int index, double x, double y, double z)


void Add(PointDg pt)


void Add(double x, double y, double z)


void InsertAt(int indexAt, PointDg pt)


void RemoveAt(int index)


void RemoveAll()


int FindPoint(PointDg 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)