After decimating the enemy forces that have attacked your ship, you are charged with taking out as many of the remaining enemy fighters as possible. 3d space fighter game was initially written while I was testing some 3d routines I was implementing for a flight simulator, but my daughter started playing it and seemed to enjoy it so I added a few sound effects, explosions etc. and so this little game was born.

Dependencies:   mbed

Math/Vector3d.h

Committer:
taylorza
Date:
2015-02-08
Revision:
4:b857db213f10
Parent:
1:9ff7384171ec

File content as of revision 4:b857db213f10:

#ifndef __VECTOR3D_H__
#define __VECTOR3D_H__
class Vector3d
{
    public:
        Vector3d() :
            X(0), Y(0), Z(0)
        {
        }
        
        Vector3d(float x, float y, float z) :
            X(x), Y(y), Z(z)
        {            
        }
        
    public:    
        float   X;
        float   Y;
        float   Z;
};
#endif //__VECTOR3D_H__