浏览代码

sanitized square roots

devel
Ludovic 'Archivist' Lagouardette 4 年前
父节点
当前提交
e47731f1e5
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      include/gp/math.hpp

+ 7
- 0
include/gp/math.hpp 查看文件

@ -13,9 +13,14 @@ namespace gp {
T lerp(T input, T low, T high) {
return low + (high - low) * input;
}
template<typename T>
T lextrap(T input, T low, T high) {
return (input - low) / (high - low);
}
template<typename T, size_t fixed_passes = 16>
T fixed_sqrt(T value) {
gp_config::assertion(value >= 0, "trying to compute square root of negative number");
if(value == 0) return 0;
T ret = value / 2;
T tmp;
@ -30,6 +35,7 @@ namespace gp {
template<typename T, size_t cap_passes = 16>
T epsilon_sqrt(T value) {
gp_config::assertion(value >= 0, "trying to compute square root of negative number");
if(value == 0) return 0;
T ret = value / 2;
T tmp;
@ -52,6 +58,7 @@ namespace gp {
template<typename T, size_t cap_passes = 16>
T stable_sqrt(T value) {
gp_config::assertion(value >= 0, "trying to compute square root of negative number");
if(value == 0) return 0;
T ret = value / 2;
T tmp;

正在加载...
取消
保存