Al's Programming Resource Homepage  Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

vertex.cpp

Go to the documentation of this file.
00001 #include <windows.h>
00002 #include "vertex.h"
00003 
00004 
00005 VERTEX::VERTEX(float sx, float sy, float sz, float snx, float sny, float snz)
00006 {
00007     coords.x = sx;
00008     coords.y = sy;
00009     coords.z = sz;
00010     normal.x = snx;
00011     normal.y = sny;
00012     normal.z = snz;
00013 }
00014 
00015 VERTEX::~VERTEX()
00016 {
00017 }
00018 

Generated on Fri Dec 23 05:20:59 2005 for Polygon Selection by doxygen1.2.15