I have a problem the circles i use are not painted in the exact location which I want them to. For example, I want to paint them in coordinates lets say x=200
y=200 and r=200, that is why i use
but in the picture it does not go exactly on the point (200,200) of the picture with exactly r=200 but instead goes to about (300,300) with r=100. How can i solve this?
y=200 and r=200, that is why i use
Code:
xGraph.FillEllipse(Brush, 200, 200, 200,200);
Comment