What does the f after the numbers indicate? Is this from C or Objective-C? Is there any difference in not adding this to a constant number?
f
CGRec
It tells the computer that this is a floating point number (I assume you are talking about c/c++ here). If there is no f after the number, it is considered a double or an integer (depending on if there is a decimal or not).
3.0f -> float 3.0 -> double 3 -> integer