Subversion Repositories gelsvn

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef __CGLA_VEC3HF_H__
#define __CGLA_VEC3HF_H__

/** The H in Vec3Hf stands for homogenous. 

*/

#include "Vec4f.h"

namespace CGLA {

        /** A 3D homogeneous vector is simply a four D vector.
                        I find this simpler than a special class for homogeneous
                        vectors. */
        typedef Vec4f Vec3Hf;

}
#endif