15 lines
225 B
C++
15 lines
225 B
C++
#pragma once
|
|
|
|
#include <glm/vec2.hpp>
|
|
|
|
namespace util {
|
|
|
|
float randf_0_1();
|
|
float randf_m1_1();
|
|
|
|
glm::vec2 randv2_m1_1();
|
|
glm::vec2 randv2_0_1();
|
|
|
|
float deg2rad(float deg);
|
|
float rad2deg(float rad);
|
|
}
|