Ok, this might sound like a strange question but it is an interesting one. I am coding for iOS and have been told that it is always best to multiply rather than divide values as it is faster.
I know that processors these days probably make this a non issue but my curiosity has gotten the better of me and I am wondering if anyone might be able to shed some light on this for me.
SO..... My question is this -
is:
player.position = ccp(player.contentSize.width / 2, winSize.height / 2);
slower than:
player.position = ccp(player.contentSize.width * 0.5, winSize.height * 0.5);
player.contentSize.widthandwinSize.heightare floating-point numbers. – icktoofay Sep 18 '11 at 5:15player.contentSize.widthandwinSize.heightare integers, how about bit shifting for speed? – Matt Ball Sep 18 '11 at 5:16