cPoint
cPoint class aims to represent objects that will simplify handling geometrical data. Structure of cPoint mimics the points structure that is used in FEMAP.
cPoint object has following properties:
LONG ID
- value that represents unique identification number of each pointINTEGER X
- value representing X coordinate of the pointINTEGER Y
- value representing Y coordinate of the pointINTEGER Z
- value representing Z coordinate of the point
Class is initialized with 0 values for all properties. To initialize the class objects with defined parameters follow example below:
Dim point As New cPoint
point.X = 5
point.Y = 7
point.Z = 14
point.ID = 1