I am writing a program which moves a square image 1 pixel to the right every millisecond. The image starts at a x position of -469 and when it is done it ends up at an x position of 11. I want to move the image to the right 60 pixels a second but the Runnable code in java uses milliseconds to handle when it moves the pixel by a value of one. What value in milliseconds would I use to achieve that increase of 60 a second.
PS sorry if this involves programming but Im not the best at math and it is a math problem not a programming problem.