15 lines
211 B
C++
15 lines
211 B
C++
#include "scalar.hpp"
|
|
#include "VectorSpace.hpp"
|
|
|
|
|
|
namespace hyporo
|
|
{
|
|
|
|
using vec2 = VectorSpace<scalar, 2>;
|
|
|
|
using vec3 = VectorSpace<scalar, 3>;
|
|
|
|
using vec4 = VectorSpace<scalar, 4>;
|
|
|
|
} // end namespace hyporo
|