/
redgpu
/
r500
Обзор
Документация
Войти
/
redgpu
/
r500
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
drm/math/float_types.hpp
15 строк
324 B
Zack Buhman
drm: add matrix
30 окт 2025, 07:18
30 окт 2025, 07:18
5716b2b
Код
Авторство
О чём код?
#pragma once #include "vec2.hpp" #include "vec3.hpp" #include "vec4.hpp" #include "mat2x2.hpp" #include "mat3x3.hpp" #include "mat4x4.hpp" using vec2 = vec<2, float>; using vec3 = vec<3, float>; using vec4 = vec<4, float>; using mat2x2 = mat<2, 2, float>; using mat3x3 = mat<3, 3, float>; using mat4x4 = mat<4, 4, float>;