fix warning about truncation from double to float

This commit is contained in:
Andrew Meadows 2017-08-08 15:00:07 -07:00
parent b537d3b1ee
commit 5fba4cb68c

View file

@ -18,7 +18,7 @@
#include "EntityTreeElement.h"
const float SQRT_TWO_OVER_TWO = 0.7071067811865;
const float SQRT_TWO_OVER_TWO = 0.7071067811865f;
const float DEFAULT_VIEW_RADIUS = 10.0f;
// ConicalView is an approximation of a ViewFrustum for fast calculation of sort priority.