2#include <ossia/detail/config.hpp>
10using vec2f = std::array<float, 2ul>;
11using vec3f = std::array<float, 3ul>;
12using vec4f = std::array<float, 4ul>;
14template <
typename T,
typename U>
15inline vec2f make_vec(T f1, U f2)
17 return std::array<float, 2>{(float)f1, (
float)f2};
20template <
typename T,
typename U,
typename V>
21inline vec3f make_vec(T f1, U f2, V f3)
23 return std::array<float, 3>{(float)f1, (
float)f2, (float)f3};
26template <
typename T,
typename U,
typename V,
typename W>
27inline vec4f make_vec(T f1, U f2, V f3, W f4)
29 return std::array<float, 4>{(float)f1, (
float)f2, (float)f3, (
float)f4};
31template <std::
size_t N>
32std::array<float, N> fill_vec(
float f)
34 std::array<float, N> arr;