removed gcem as dep

This commit is contained in:
2026-06-15 00:37:47 +03:00
parent 75c3f2409d
commit 47dcee037e
38 changed files with 1351 additions and 927 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
// Created by Orange on 11/13/2024.
//
#pragma once
#include "omath/internal/optional_constexpr_math.hpp"
#include "omath/internal/constexpr_math.hpp"
#include "vector3.hpp"
namespace omath
{
@@ -40,13 +40,13 @@ namespace omath
}
[[nodiscard]]
OMATH_CONSTEXPR Vector::ContainedType side_a_length() const
constexpr Vector::ContainedType side_a_length() const
{
return m_vertex1.distance_to(m_vertex2);
}
[[nodiscard]]
OMATH_CONSTEXPR Vector::ContainedType side_b_length() const
constexpr Vector::ContainedType side_b_length() const
{
return m_vertex3.distance_to(m_vertex2);
}