HIC_Draw_3D_...

PURPOSE

Draws a specified 3D geometry element.

CALLING SEQUENCE

HIC_Draw_3D_Geometry (nr, geo)

HIC_Draw_3D_Marker (nr, marker)

HIC_Draw_3D_Polyedge (nr, polyedge)

HIC_Draw_3D_Polygon (nr, polygon)

HIC_Draw_3D_Polyline (nr, polyline)

HIC_Draw_3D_Polymarker (nr, polymarker)

HIC_Draw_3D_Polyhedron (nr, polyhedron)

HIC_Draw_3D_Text (nr, text)

HIC_Draw_3D_Tristrip (nr, tristrip)

---------------------------------------------------------------------------------
 nr          HT_Rendition    Rendition. Passed by reference.                         
geo          HT_Geometry     Geometry descriptor structure. Passed by reference.     
marker       HT_Marker       Marker descriptor structure. Passed by reference.       
polyedge     HT_Polyedge     Polyedge descriptor structure. Passed by reference.     
polygon      HT_Polygon      Polygon descriptor structure. Passed by reference.      
polyline     HT_Polyline     Polyline descriptor structure. Passed by reference.     
polymarker   HT_Polymarker   Polymarker descriptor structure. Passed by reference.
polyhedron   HT_Polyhedron   Polyhedron descriptor structure. Passed by reference.
text         HT_Text         Text descriptor structure. Passed by reference.         
tristrip     HT_Tristrip     Tristrip descriptor structure. Passed by reference.     
---------------------------------------------------------------------------------

DETAILS

Each of these functions is the standard default method for the corresponding "draw 3d ..." callback point.

They draw geometry elements specified with respect to object coordinates, which are the coordinates you use for inserting the elements with the classic HIC_New_... function.

Back