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           float x;
00013           float y;
00014           float z;
00015           float nx;
00016           float ny;
00017           float nz;
00018 };
00019 
00020 #endif
00021 

Generated on Fri Dec 23 05:21:20 2005 for Skybox by doxygen1.2.15