ID:1927808
 
(See the best response by Kaiochao.)
Code:
src.Move(src.loc,src.dir,step_x+(sin(Angle)*step_size),step_y+(cos(Angle)*step_size))


Problem description:
I am having a problem moving my object at a constant rate in the angle. I feel like sometimes it off by a little bit. Does this seem right?
Best response
That's right, but since step_x and step_y are being rounded to integers after each movement, it's not going to be accurate.

http://www.byond.com/forum/?post=151264
If you include the code from today, you can change your code to:
Project(step_size, Angle)
In response to Kaiochao
Thanks a lot, Kaiochao. After including your code I noticed a vast improvement on the pixel movement.