class HT_Markerstrip  
See Also
HT_Vertex_Set, HT_Point_Set, HT_Renderer::draw_3d_markerstrip
Constructor
HT_Markerstrip
Creates a markerstrip object.  

HT_Markerstrip::HT_Markerstrip

Purpose

Creates a marker strip object. Synopsis
HT_Markerstrip() : HT_Vertex_Set()
HT_Markerstrip(int count, HT_Point const * points)
    : HT_Vertex_Set(count, points)
HT_Markerstrip(int count, HT_Point const * points, HT_Boolean copy)
    : HT_Vertex_Set(count, points, copy)
Details The markerstrip is created. To add vertices, colors, normals, or texture parameters, reference the base classes for HT_Markerstrip. These are HT_Vertex_Set and HT_Point_Set. If the copy parameter is HK_True, then count points are copied from the points array into the markerstrip object. If the copy parameter is HK_False, the markerstrip object point array refers directly to the array of points in the points array.