eduEngine 1.0
Course framework for DA376B
Loading...
Searching...
No Matches
glmcommon.hpp
1// Created by Carl Johan Gribel.
2// Licensed under the MIT License. See LICENSE file for details.
3
4#ifndef glmcommob_h
5#define glmcommob_h
6#pragma once
7
8#include <sstream>
9#include <string>
10#include <glm/glm.hpp>
11#include <glm/gtc/type_ptr.hpp>
12#include <glm/gtc/matrix_transform.hpp>
13
14namespace glm_aux {
15
16 constexpr glm::vec3 vec3_000{ 0.0f, 0.0f, 0.0f };
17 constexpr glm::vec3 vec3_100{ 1.0f, 0.0f, 0.0f };
18 constexpr glm::vec3 vec3_010{ 0.0f, 1.0f, 0.0f };
19 constexpr glm::vec3 vec3_001{ 0.0f, 0.0f, 1.0f };
20 constexpr glm::vec3 vec3_111{ 1.0f, 1.0f, 1.0f };
21
22 struct Ray
23 {
24 glm::vec3 origin, dir;
25 float z_near = std::numeric_limits<float>::max();
26
27 Ray();
28 Ray(const glm::vec3& origin, const glm::vec3& dir);
29 glm::vec3 point_of_contact() const;
30 operator bool();
31 };
32
33 // Integer representation of a floating-point value.
34
35
36 bool intersect_ray_AABB(
37 Ray& ray,
38 const glm::vec3& aabb_min,
39 const glm::vec3& aabb_max
40 );
41
44 std::string to_string(const glm::vec3& vec);
45
48 std::string to_string(const glm::vec4& vec);
49
52 std::string to_string(const glm::mat4& mat);
53
59 glm::mat4 T(
60 const glm::vec3& translation);
61
68 glm::mat4 R(
69 float angle,
70 const glm::vec3& axis);
71
78 glm::mat4 R(
79 float yaw,
80 float pitch);
81
87 glm::mat4 S(
88 const glm::vec3& scale);
89
97 glm::mat4 TR(
98 const glm::vec3& translation,
99 float angle,
100 const glm::vec3& axis);
101
108 glm::mat4 TS(
109 const glm::vec3& translation,
110 const glm::vec3& scale);
111
119 glm::mat4 RS(
120 float angle,
121 const glm::vec3& axis,
122 const glm::vec3& scale);
123
132 glm::mat4 TRS(
133 const glm::vec3& translation,
134 float angle,
135 const glm::vec3& axis,
136 const glm::vec3& scale);
137
165 glm::mat4 create_viewport_matrix(
166 float x,
167 float y,
168 float width,
169 float height,
170 float near,
171 float far);
172
185 Ray world_ray_from_window_coords(
186 const glm::ivec2& window_coords,
187 const glm::mat4& V,
188 const glm::mat4& P,
189 const glm::mat4& VP);
190
196 bool window_coords_from_world_pos(
197 const glm::vec3& world_pos,
198 const glm::mat4& VP_PROJ_V,
199 glm::ivec2& window_coords);
200
201}
202
203#endif
Definition glmcommon.hpp:23