I am trying to plot coordinates around a circle programmatically. Here it is hard-coded to show what I am after:
var iteration = 4;
var left = [94,200,104,-6];
var top = [-6,94,200,94];
for(var i=0; i<iteration; i++){
$("#center").append("<div class='point' style='left:"+left[i]+"px;top:"+top[i]+"px'></div>");
}
Math is definitely not my strong point.
I need to represent people as small Circles standing around a large circle. However, there will be random numbers of people and they all need to be equidistant. I'm not sure whether I should be working from a central point.