This is likely an easy solution that is simply eluding me. Specifically, I am creating locations on a canvas dynamically using a sin() function for equidistant points on a circle. Once these points are created, I am animating a shape moving from one point to the next by calculating the slope between points and redrawing the shape at each slope step.
Problem is, depending on the coordinate values, the slope step may just be one step from point a to point b. I need the shape to move along the path, not just jump point to point.
What I want to do is force the location coordinates (x, y) to be even numbers allowing for slope values to always be reducible. So, the simple part of question is...
How do I check if an int value is even? If it is not, I will simply add 1 to the coordinate value.