Renamed constants to new style.

This commit is contained in:
Branimir Karadžić
2017-06-09 20:08:52 -07:00
parent bbdc0fbcbd
commit 3fbcddb4ef
19 changed files with 72 additions and 72 deletions

View File

@@ -510,7 +510,7 @@ struct Imgui
for (int32_t ii = 0; ii < NUM_CIRCLE_VERTS; ++ii)
{
float a = (float)ii / (float)NUM_CIRCLE_VERTS * (float)(bx::pi * 2.0);
float a = (float)ii / (float)NUM_CIRCLE_VERTS * (float)(bx::kPi * 2.0);
m_circleVerts[ii * 2 + 0] = cosf(a);
m_circleVerts[ii * 2 + 1] = sinf(a);
}