Name: Anonymous 2009-02-01 7:20
Integers or floats?
setge, etc.) or using a conditional (jge, etc.)?
int's are faster, but converting from int to float incurs a performance penalty. If you need to do that a lot, stick with all float's. Division and multiplication of int's are slightly slower than that of float's sometimes, as well.