Core: Integrate semantic constants in math structs

- Excludes self-explanatory constants (ZERO, ONE, etc)
This commit is contained in:
Thaddeus Crews
2025-08-18 11:57:20 -05:00
parent 0c51ede243
commit 84c0ec04f3
16 changed files with 192 additions and 123 deletions

View File

@ -38,7 +38,7 @@ class String;
struct Vector4i;
struct [[nodiscard]] Vector4 {
static const int AXIS_COUNT = 4;
static constexpr int AXIS_COUNT = 4;
enum Axis {
AXIS_X,