how do i find out pixel value at certain degree on the circumference of a circle if I know the pixel co-ordinates of the center of the circle, radius of the circle ,and perpendicular angle. Basically, I am trying to draw the hands of a clock at various times ( 1 o clock , 2 o clock etc )
|
|
Let
|
||
|
|
|
|
Where the centre of the circle is (X0, Y0), the radius is R and the angle with the x-axis is theta: X1 = (R * cos theta) + X0 and Y1 = (R * sin theta) + Y0 |
||||||||||
|
|
|
Draw lines from the center to coordinates computed with |
||
|
|
|
|
if center is at x0, y0, and 0,0 iz at bottom-left corner, then 1 o'clock is at x0 + r*sin(2π/3), y0+r*cos(2π/3). |
||
|
|
|
|
If (x1,y1) is a point on the circumference and (x,y) is the center, then |
||||||
|
