...
Code Block | ||
---|---|---|
| ||
HC_Open_Segment_By_Key(m_pHView->GetModelKey()); HC_Set_Visibility("markers=on,faces=off,vertices=on"); HC_Set_Heuristics("culling = off"); char tempstr[1024]; float marker_size = (float)50 / 100; sprintf(tempstr, "%f wsu", marker_size); HC_Set_Variable_Marker_Size(tempstr); /*Setting the marker symbol to one of the two allowable symbols*/ HC_Set_Marker_Symbol("(*)"); /*Setting the Driver Option for Hardware Acceleration*/ HC_Open_Segment_By_Key(m_pHView->GetViewKey()); HC_Set_Driver_Options("marker drawing = fastest"); HC_Close_Segment(); HC_Insert_Shell(pcount, pts, flist_count, faces); HC_Close_Segment(); |
...