infovis
D:/VC++/Info. Vis/infovis/infovis/Vertex.h
00001 #ifndef VERTEX_H
00002 #define VERTEX_H
00003 
00004 #include "utils.h"
00005 
00006 using namespace std;
00007 
00008 class Vertex
00009 {
00010 public:
00011    Vertex ( float x = 0.0f,float y = 0.0f) { mX = x; mY = y; }
00012 
00013    float mX;
00014    float mY;
00015    
00016    complexD getComplexCoords() { return complexD(mX, mY); }
00017 };
00018 #endif
 All Classes Functions