diff --git a/src/utils/math.hpp b/src/utils/math.hpp index 873acfa..a042035 100644 --- a/src/utils/math.hpp +++ b/src/utils/math.hpp @@ -1,6 +1,6 @@ #pragma once -#include "glm/gtc/type_ptr.hpp" // IWYU pragma: keep +#include namespace mt { @@ -8,4 +8,7 @@ namespace mt template T convert(vec2& v) { return T{ v.x, v.y }; } + + template + T convert(vec3& v) { return T{ v.x, v.y, v.z }; } }