CommonLibSSE (Parapets fork)
NiMath.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  constexpr float NI_INFINITY = FLT_MAX;
6  constexpr float NI_PI = static_cast<float>(3.1415926535897932);
7  constexpr float NI_HALF_PI = 0.5F * NI_PI;
8  constexpr float NI_TWO_PI = 2.0F * NI_PI;
9 
10  float NiAbs(float a_value);
11  float NiASin(float a_value);
12  float NiFastATan2(float a_y, float a_x);
13 }
Definition: AbsorbEffect.h:6
float NiAbs(float a_value)
float NiASin(float a_value)
constexpr float NI_INFINITY
Definition: NiMath.h:5
float NiFastATan2(float a_y, float a_x)
constexpr float NI_HALF_PI
Definition: NiMath.h:7
constexpr float NI_TWO_PI
Definition: NiMath.h:8
constexpr float NI_PI
Definition: NiMath.h:6