Strip Class Reference
 
 
 
Strip Class Reference

This reference page is linked to from the following overview topics: Retrieving Mesh Strip Data.


#include <Strip.h>

Inheritance diagram for Strip:
MaxHeapOperators

Class Description

Graphics Strip Class.

Public Member Functions

void  AddVert (DWORD vtx)
void  AddVert (DWORD vtx, DWORD tvtx)
void  AddVertN (DWORD vtx, DWORD nor)
void  AddVertN (DWORD vtx, DWORD tvtx, DWORD nor)

Public Attributes

MtlID  mID
DWORD  smGrp
DWTab  v
DWTab  n
DWTab  tv

Member Function Documentation

void AddVert ( DWORD  vtx ) [inline]
void AddVert ( DWORD  vtx,
DWORD  tvtx 
) [inline]
{ v.Append(1, &vtx); tv.Append(1, &tvtx); }
void AddVertN ( DWORD  vtx,
DWORD  nor 
) [inline]
{ v.Append(1, &vtx); n.Append(1, &nor); }
void AddVertN ( DWORD  vtx,
DWORD  tvtx,
DWORD  nor 
) [inline]
{ v.Append(1, &vtx); tv.Append(1, &tvtx); n.Append(1, &nor); }

Member Data Documentation