Hi
I want to be able to input the start screen co-ordinates and the destination co-ordinates and plot a sine curve between them.
So for example. I may wish to start at 100,100 on the screen and end at 150,150. I want to plot a sine curve between these 2 points.
The formula I use to plot a sine curve is
x=x+1;
y=y-sin(degrees)*radius;
The question I have is is it possible to create a formula which plots a sine curve which hits 2 given points.