00001 #include <windows.h> 00002 #include "vertex.h" 00003 #include "mmgr.h" 00004 00005 00006 VERTEX::VERTEX(float sx, float sy, float sz, float snx, float sny, float snz) 00007 : 00008 x(sx), 00009 y(sy), 00010 z(sz), 00011 nx(snx), 00012 ny(sny), 00013 nz(snz), 00014 numVertices(3) 00015 { 00016 } 00017 00018 VERTEX::~VERTEX() 00019 { 00020 } 00021
1.2.15