I have an ellipse where the radius of x-axis = 100 and y-axis = 30. I have 3 objects where I want to evenly distribute it along the ellipse.
I have already done this for a circle where both axis' are the same, ex: radius x-axis=100 and y-axis = 100. I did:
- evenSpace = 360/3.
Object1 (x,y) = (100 * cos(120*180*1) , 100 * sin(120*180*1).
Object2 same thing but instead of '1', it's 2.
Object3 same thing but instead of '1', it's 3.
This worked out fine for a circle, but with an ellipse I can't get it to work because the x-axis radius is much longer than the y-axis. Any help people? Thanks in advance.