Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Computer GraphicsRSS Feeds

Program of Midpoint Circle Drawing

Posted By: Easy Tutor     Category: C++ Programming     Views: 26361

Write a program of Midpoint Circle Drawing.

Code for Program of Midpoint Circle Drawing in C++ Programming

# include <iostream.h>
# include <conio.h>
# include <graphics.h>
# include <math.h>
void Circle(int Radius,int xC,int yC);
void main()
{
    int gDriver=DETECT, gMode;
    initgraph(&gDriver,&gMode,"c:\\tc\\bgi");

    int Radius, xC, yC;
    cout<< endl << "Enter Center point coordinates...";
    cout<<endl<<"  Xc    : ";
    cin>>xC;
    cout<<endl<<"  Xc    : ";
    cin>>yC;
    cout<<endl<<"Radius  : ";
    cin>>Radius;
    cleardevice();
    Circle(Radius,xC,yC);
    getch();
    return;
}
void Circle(int Radius,int xC,int yC)
{
    int P;
    int x,y;
    void Draw(int x,int y,int xC,int yC);
    P = 1 - Radius;
    x = 0;
    y = Radius;
    Draw(x,y,xC,yC);
    while (x<=y)
    {
        x++;
        if (P<0)
        {
            P += 2 * x + 1;
        }
        else
        {
            P += 2 * (x - y) + 1;
            y--;
        }
        Draw(x,y,xC,yC);
    }

}
void Draw(int x,int y,int xC,int yC)
{
    putpixel(xC + x,yC + y,12);
    putpixel(xC + x,yC - y,12);
    putpixel(xC - x,yC + y,12);
    putpixel(xC - x,yC - y,12);
    putpixel(xC + y,yC + x,12);
    putpixel(xC - y,yC + x,12);
    putpixel(xC + y,yC - x,12);
    putpixel(xC - y,yC - x,12);
}
  
Share: 


Didn't find what you were looking for? Find more on Program of Midpoint Circle Drawing Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Program of Midpoint Circle Drawing is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
Rani Dasari from India Comment on: Sep 24
please provide source code to display olympic logo using openGl

Rani Dasari from India Comment on: Sep 24
please provide source code to display olympic logo using openGl

View All Comments