// Math is independent from the rest of the library, to ensure seamless usage with other client. #pragma once #include "Core/Math/MathPCH.h" #include "Core/Core.h" namespace Phanes::Core::Math { // Typenames with RealType constrain have to be floating point numbers. template concept RealType = std::is_floating_point_v; // Typenames with IntType constrain have to be integer number. template concept IntType = std::is_integral_v; // Typenames with Arithmethic constrain have to be number. template concept Arithmethic = std::is_arithmetic_v; }