aboutsummaryrefslogtreecommitdiff
path: root/smelt/glfw/gfx_glfw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smelt/glfw/gfx_glfw.cpp')
-rw-r--r--smelt/glfw/gfx_glfw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/smelt/glfw/gfx_glfw.cpp b/smelt/glfw/gfx_glfw.cpp
index d8135e8..c545073 100644
--- a/smelt/glfw/gfx_glfw.cpp
+++ b/smelt/glfw/gfx_glfw.cpp
@@ -730,7 +730,7 @@ void SMELT_IMPL::configProjectionMatrix2D(int w,int h)
void SMELT_IMPL::configProjectionMatrix3D(int w,int h,float fov)
{
memset(mproj,0,sizeof(mproj));
- float f=1./tanf(M_PI*fov/360.);
+ float f=1./tanf(PI*fov/360.);
float ar=(float)w/(float)h;
float Near=0.1,Far=1000.;
mproj[0]=f/ar;mproj[5]=f;