In swift playground, we need cast Int to CGFloat explicitly, otherwise playground will say ERROR.
For example,
let someInt: Int = 3
let someFloat: CGFloat = CGFloat(someInt)
When use CGRectMake(...), we must cast Int to CGFloat.
Why can't happen implicitly ? What is the consideration to design this way ? Thanks for discussion here.