Given x,y coordinates of 3 points, I have to tell that is it possible to draw a circle. If so, what is the equation of the circle in this format:
x^2 + y^2 + 2gx + 2fy + c = 0
Note that I am programming in C.
Help me.
Given x,y coordinates of 3 points, I have to tell that is it possible to draw a circle. If so, what is the equation of the circle in this format:
x^2 + y^2 + 2gx + 2fy + c = 0
Note that I am programming in C.
Help me.
g = -U_x
h = -U_y
c = g^2 + h^2 - r^2 where
r = D/2
thanks. i will try.