ARRAY3D structure

Declared in: GeoTransformers.h

Multiple 3D points. Could be referring to ground coordinates or any other 3D space (usually cartesian).

[C / C++]

typedef struct {

DWORD pntNo; // number of stored points

VERTEX3D * XYZs; // three dimensional points

} ARRAY3D;

Collaboration diagram:

ARRAY3D

Collaboration graph for ARRAY3D structure

Members

pntNo

Number of points that can be stored in the encapsulated array. Do not change this member for an output package.

XYZs

Encapsulated array of 3D points. For an output package, do not change the value of the pointer, but only the array's content.

Requirements

Platform

32 bit Windows OS

Environment

ANSI C / C++ Standard compliant

Example

For a detailed example using this structure, please see Custom GeoTransformer VC++ Sample.

Related Topics

Referenced By: GeoTransData::GTD

References: VERTEX3D