DG Kernel (ActiveX) Documentation


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


IArrayFloat_DG Interface

All indices in DG Kenel are 0-based

A standalone array can be created with a IObjectGenerator_DG.Create("IArrayFloat_DG") call.

GetCount
SetCount
IsEmpty
GetAt
SetAt
InsertAt
Add
RemoveAt
RemoveAll
Find
Copy
Append

int GetCount()


bool IsEmpty()


void SetCount(int count)


float GetAt(int index)


void SetAt(int index, float val)


void InsertAt(int indexAt, float val)


void Add(float val)


void RemoveAt(int index)


void RemoveAll()


int Find(float val, float tolerance)

Returns -1 if not found


void Copy(IArrayFloat_DG iArray)


void Append(IArrayFloat_DG iArray)