22 #ifndef QDENGINE_MINIGAMES_ADV_QDMATH_H 23 #define QDENGINE_MINIGAMES_ADV_QDMATH_H 25 #include "qdengine/xmath.h" 29 #define SQRT2 1.41421356f 30 #define SQRT3 1.73205081f 32 inline float dist(
const mgVect2f& v1,
const mgVect2f& v2) {
33 return sqrt((v1.x - v2.x) * (v1.x - v2.x) + (v1.y - v2.y) * (v1.y - v2.y));
36 inline float abs(
const mgVect2f& v) {
37 return sqrt(v.x * v.x + v.y * v.y);
40 inline void norm(mgVect2f& v) {
50 template<
class T,
class T1,
class T2>
51 inline T clamp(
const T& x,
const T1& xmin,
const T2& xmax) {
52 if (x < xmin)
return xmin;
53 if (x > xmax)
return xmax;
58 inline T abs(
const T& x) {
65 #endif // QDENGINE_MINIGAMES_ADV_QDMATH_H Базовый класс для игровых ресурсов.
Definition: console.h:28