Main Page | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals

/Users/blackie/Documents/myRepository/phobosengine-vc2005/phobosengine/phobosengine/Vector2f.cpp

Go to the documentation of this file.
00001 
00002 
00003 #include "Vector2f.h"
00004 
00005 namespace pge {
00006 
00007         Vector2f::Vector2f(void) {
00008                 m_v[0] = 0.0f;
00009                 m_v[1] = 0.0f;
00010         }
00011 
00012 
00013         Vector2f::Vector2f(float x, float y) {
00014                 m_v[0] = x;
00015                 m_v[1] = y;
00016         }
00017 
00018 
00019         Vector2f::~Vector2f(void) {
00020         }
00021 }

Generated on Mon Oct 16 12:08:11 2006 for Phobosengine by doxygen 1.3.4