I want to draw line from one point to another unknown point.I want to find this unknown point using its angle and radius from current point. Then i want to draw between these two points as line..
Can anyone help me?
Thanks in advance...
Note:
I already used these method
x2 = x1 - length * cos(angle)
y2 = y1 - length * sin(angle)
But these found point is not correct for some angle...