Math/Sphere: Remove SquaredDistance method

This commit is contained in:
Lynix
2016-12-15 18:32:58 +01:00
parent 165b73acb3
commit f5f6c859d7
6 changed files with 27 additions and 68 deletions

View File

@@ -436,9 +436,10 @@ namespace Nz
*/
//TODO: Mark as constexpr when supported by all major compilers
/*constexpr*/ inline unsigned int IntegralPow(unsigned int base, unsigned int exponent)
template<typename T>
/*constexpr*/ T IntegralPow(T base, unsigned int exponent)
{
unsigned int r = 1;
T r = 1;
for (unsigned int i = 0; i < exponent; ++i)
r *= base;