Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

vertex.h

Go to the documentation of this file.
00001 // Vertex Class    by Alan Baylis 2001
00002 
00003 #ifndef VertexH
00004 #define VertexH
00005 
00006 class VERTEX
00007 {
00008     public:
00009         VERTEX(float x = 0, float y = 0, float z = 0, float nx = 0, float ny = 0, float nz = 0);
00010         ~VERTEX();
00011 
00012         int numVertices;
00013         float x;
00014         float y;
00015         float z;
00016         float nx;
00017         float ny;
00018         float nz;
00019         float u;
00020         float v;
00021 };
00022 
00023 #endif
00024 

Generated on Fri Dec 23 05:19:55 2005 for Particles by doxygen1.2.15