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/Vector4f.cpp

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

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