00001 #include <windows.h> 00002 #include "vertex.h" 00003 #include "mmgr.h" 00004 00005 VERTEX::VERTEX(VECTOR scoords, VECTOR snormal) 00006 { 00007 coords = scoords; 00008 normal = snormal; 00009 } 00010 00011 VERTEX::VERTEX(float sx, float sy, float sz, float snx, float sny, float snz) 00012 { 00013 coords.x = sx; 00014 coords.y = sy; 00015 coords.z = sz; 00016 normal.x = snx; 00017 normal.y = sny; 00018 normal.z = snz; 00019 } 00020 00021 VERTEX::~VERTEX() 00022 { 00023 } 00024