HM_PolyLine
Contains information about the geometry of a line represented by approximation points.
Syntax
struct HM_PolyLine {
int num_points;
HM_Point* points;
};
    Type
HyperMesh Ext API Function
Description
This structure contains information about the geometry of a line represented by approximation points.
The structure information is declared in hm_extapi.h.
The members are: num_points and points
Inputs
- num_points
 - The number of points in the line approximation.
 - points
 - Pointer to an array of HM_Point structures representing individual points. The number of entries in the array must not be smaller than the value specified by the num_points member of this HM_PolyLine structure.
 
Errors
None.