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
From C. It means float literal constant. You can omit both "f" and ".0" and use ints in your example because of implicit conversion of ints to floats.