Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

20
libs/drape/glsl_func.hpp Normal file
View file

@ -0,0 +1,20 @@
#pragma once
#include <glm/geometric.hpp>
#include <glm/gtc/matrix_transform.hpp>
#define GLM_ENABLE_EXPERIMENTAL // TODO: Remove this line after upgrading glm to the latest version.
#include "std/glm_gtx_rotate_vector.hpp"
namespace glsl
{
using glm::cross;
using glm::distance;
using glm::dot;
using glm::length;
using glm::normalize;
using glm::rotate;
using glm::scale;
using glm::translate;
using glm::transpose;
} // namespace glsl