dropped .dll/.so support

This commit is contained in:
2024-12-23 13:47:28 +03:00
parent 4e3b85a313
commit b0156cec18
18 changed files with 95 additions and 118 deletions
+1 -3
View File
@@ -4,9 +4,7 @@
#pragma once
#include "omath/Angles.hpp"
#include <algorithm>
#include "omath/omath_export.hpp"
namespace omath
{
@@ -18,7 +16,7 @@ namespace omath
template<class Type = float, Type min = Type(0), Type max = Type(360), AngleFlags flags = AngleFlags::Normalized>
requires std::is_arithmetic_v<Type>
class OMATH_API Angle
class Angle
{
Type m_angle;
constexpr Angle(const Type& degrees)