refactored camera

This commit is contained in:
2024-12-04 04:58:29 +03:00
parent c2c0b29dc9
commit dc3fcafd48
16 changed files with 262 additions and 194 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ namespace omath
Clamped = 1,
};
template<class Type, Type min = Type(0), Type max = Type(360), AngleFlags flags = AngleFlags::Normalized>
template<class Type = float, Type min = Type(0), Type max = Type(360), AngleFlags flags = AngleFlags::Normalized>
requires std::is_arithmetic_v<Type>
class Angle
{