I want to draw a variable number of equidistant points on a HTML5 canvas element, using JavaScript. How do I calculate the X/Y position of each point?
EDIT:
I want the distance from one point to its direct neighbours and to the edges of the canvas to be the same.
If I had an 8px x 8px canvas and 4 points, the distace from a point to it's direct neighbours and to the edges of the canvas would be 2px.
But what if i had an uneven number of points and not a square canvas?
(i think an image might help to understand my problem a little better)
