2016-09-27 16:23:58 +00:00
|
|
|
#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();
|
2016-09-28 09:35:56 +00:00
|
|
|
|
|
|
|
float deg2rad(float deg);
|
|
|
|
float rad2deg(float rad);
|
2016-09-27 16:23:58 +00:00
|
|
|
}
|