کد زیر رو جهت رسم یک دایره نوشتم اما دایره کامل نیست
مشکل کدم کجاست؟

int x, Xc = 50, Yc = 50, r = 100;
float y;
Bitmap bmp1 = new Bitmap(200, 200);
for (x = r - Xc; x < Xc + r; x++)
{
y = (float)(Math.Sqrt(r * r - (x - Xc) * (x - Xc)));
bmp1.SetPixel((int)x, (int)(Yc + y), Color.Red);
pictureBox1.Image = bmp1;
bmp1.SetPixel((int)(x),(int)Math.Abs(Yc-y),Color.Red);
pictureBox1.Image = bmp1;
}