This is a bit of an embarrasing question, but is there a way to do that that does not involve me using the floor(someInt) function? I know there is an int() a atof, a ftoa, hell there is even a hex(), but no float()?
In my case, I brought an int attr via a prim expression then dividing it by a float. This resulted on an integer result, which was bad. In ex and python, I would do the float conversion, but in expression, I got stuck ): floor forces the result to float which did the trick , but it seems strange not to have a float () function