filename:
src/utils/MathUtils.h
branch:
feature/world
back to repo
/*
*
* _____ _ _
* / ___|| | | |
* \ `--. | |_ _ __ __ _ | |_ ___ ___
* `--. \| __|| '__| / _` || __| / _ \ / __|
* /\__/ /| |_ | | | (_| || |_ | (_) |\__ \
* \____/ \__||_| \__,_| \__| \___/ |___/
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Copyright (C) 2025 Armen Deroian
*
*/
#ifndef MATH_H
#define MATH_H
#include <cmath>
namespace stratos::utils {
template <typename T> T round(const T value, const int precision) {
const T factor = std::pow(10, precision);
return std::round(value * factor) / factor;
}
inline int ceilLog2(const int value) {
if (value == 0) return 0;
return 32 - __builtin_clz(value - 1);
}
} // namespace stratos::utils
#endif //MATH_H