I see why you say Strings take very little codesize! -- PEZ Another place you nano-types could possibly lose some size is letting Robocode normalize your angles for you - I've discovered (and I'm using, starting with FloodMini) that I can use robocode.util.Utils.normalRelativeAngle(angle), and it should be smaller than Math.asin(Math.sin(angle)). And to get angles between 0 and 2*pi, you can use robocode.util.Utils.normalAbsoluteAngle?(angle), although by experience, I think you need that a lot less. -- Kawigi
|