module Number (Number) where -- It's simplest to stick to a simple floating point number in all -- code: the one used in OpenGL. -- OpenGL >= 2.5.0.0 no longer implicitly casts between Float and GLFloat -- The approach below sucks. Is there a better way to use standard floats? import Graphics.UI.GLUT type Number = GLfloat