일단 유니티 에서는 아래와 같은 매크로 형식으로 정의 되어 있다. // Using pow often result to a warning like this // "pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them" // PositivePow remove this warning when you know the value is positive or 0 and avoid inf/NAN. // Note: https://msdn.microsoft.com/en-us/library/windows/desktop/bb509636(v=vs.85).aspx pow(0, >0) ==..