13 lines
197 B
C++
13 lines
197 B
C++
#pragma once
|
|
|
|
|
|
template <typename T, int Dims>
|
|
class templated_vector
|
|
{
|
|
|
|
};
|
|
|
|
|
|
using v2f = templated_vector<float, 2>;
|
|
using v3f = templated_vector<float, 3>;
|
|
using v4f = templated_vector<float, 4>; |