more formats and math stuffs

This commit is contained in:
Greg Wells
2025-07-09 13:28:18 -04:00
parent 8b31d2e936
commit ef815541c7
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
#pragma once
#include <math.h>
static const inline float gnRadians(const float degrees) { return degrees * (3.14159265358979323846f / 180.0f); }
static const inline float gnRoot(const float input, const float n) { return pow(input, 1./n); }