Added shared library support.

This commit is contained in:
2024-07-24 01:36:20 -07:00
parent 1b70383448
commit 8e7cc39000
122 changed files with 298 additions and 298 deletions

View File

@@ -6,7 +6,7 @@
namespace ehs
{
class Math
class EHS_LIB_IO Math
{
private:
static float Sqrt_AVX(const float from);
@@ -26,22 +26,22 @@ namespace ehs
constexpr static double dblEpsilon = 1e-16;
/// Absolute tolerance comparison for single precision floats.
static bool AbsCmp(const float a, const float b);
static bool AbsCmp(float a, float b);
/// Absolute tolerance comparison for double precision floats.
static bool AbsCmp(const double a, const double b);
static bool AbsCmp(double a, double b);
/// Relative tolerance comparison for single precision floats.
static bool RelCmp(const float a, const float b);
static bool RelCmp(float a, float b);
/// Relative tolerance comparison for double precision floats.
static bool RelCmp(const double a, const double b);
static bool RelCmp(double a, double b);
/// Combined absolute and relative tolerance comparison for single precision floats.
static bool ComCmp(const float a, const float b);
static bool ComCmp(float a, float b);
/// Combined absolute and relative tolerance comparison for double precision floats.
static bool ComCmp(const double a, const double b);
static bool ComCmp(double a, double b);
template<typename T = float>
static T Max(const T a, const T b)