Public Attributes | |
int | number |
the number of the poly in an object. More... | |
char | type |
the type of the poly (GL_QUAD, GL_POLY_STRIP, GL_TRIANGLE_STRIP... ). More... | |
struct color | col |
the color of this polygon. More... | |
list<int>* | verteces |
the list of verteces the polygon is constructed with. More... |
Definition at line 88 of file visualThread.cpp.
00089 { 00090 int number; 00091 char type; 00092 struct color col; 00093 list<int>* verteces; 00094 }
|
|
|
the type of the poly (GL_QUAD, GL_POLY_STRIP, GL_TRIANGLE_STRIP... ).
Definition at line 91 of file visualThread.cpp.
|
the list of verteces the polygon is constructed with.
Definition at line 93 of file visualThread.cpp.