mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 01:34:13 -05:00
12 lines
214 B
C++
12 lines
214 B
C++
#pragma once
|
|
|
|
namespace math
|
|
{
|
|
template <typename Type>
|
|
class Util
|
|
{
|
|
public:
|
|
static inline Type absolute_distance(Type a, Type b) noexcept { return a > b ? a - b : b - a; }
|
|
};
|
|
}
|