Add int64 cube root and square root functions

This commit is contained in:
Jonathan G Rennison
2020-12-31 00:40:42 +00:00
parent ac5b0d8017
commit 2b02318c7e
2 changed files with 67 additions and 0 deletions

View File

@@ -433,5 +433,7 @@ static inline T DivTowardsPositiveInf(T a, T b)
}
uint32 IntSqrt(uint32 num);
uint32 IntSqrt64(uint64 num);
uint32 IntCbrt(uint64 num);
#endif /* MATH_FUNC_HPP */