We are coding in C++, have half a circle, starting a a certain point (e.g. (0,-310)
) and finishing at a certain point (0,310)
. We have the radius, and we have the equation X^2 + Y^2 = r^2
. Now we are trying to calculate some (say 10+) points on the line of this circle.
Hence, we are trying to create an increment that will calculate the Y/X values between these points, using the equation shown above to make sure that all the points calculated are on the line of the circle.
Once we have these points, we are trying to put them into several complex equations to calculate angles of a robot arm that is to draw this shape. This is not really the priority, but I thought I should include our overall aim in the question.
How to create an increment to calculate all the coordinates on line of the half circle between our two start points?
Then put these values into the equations in the code above to calculate the angles of the robot arm. looking for a way to do this without calculating each point individually, i.e. create an increment that will do it in one go.
This is kind of what we are aiming for, to calculate the points in bold.