its a float value..
depending on what you need you can take different types of numbers..for example int (1,2,3...) float, etc..dont know a good tutorial on this, but try a search with google
This magic number is the constant PI, which is 180 degrees in radians. The f behind the number helps the compiler to distinguish 32-bit floats and 64-bit doubles. Because setFOV expects floats, and the compiler assumes 64-bit double for floating point constants without the "f", using the constant without the "f" would result in a compiler-warning that the precision will be lost when passing it to a function that uses floats.