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 #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 

Generated on Fri Dec 23 05:15:48 2005 for Constructive Solid Geometry by doxygen1.2.15