Write a C Program to Draw Circle using Bresenham’s Circle Algorithm

By | 02.12.2016

Draw Circle using Bresenham’s Circle Algorithm


Write a C Program to Draw Circle using Bresenham’s Circle Algorithm. Here’s simple Program to Draw Circle using Bresenham’s Circle Algorithm in C Programming Language.


Below is the source code for C Program to Draw Circle using Bresenham’s Circle Algorithm which is successfully compiled and run on Windows System to produce desired output as shown below :


SOURCE CODE : :


/*  C Program to Draw Circle using Bresenham’s Circle Algorithm  */

#include <stdio.h>
#include <dos.h>
#include <graphics.h>
void plotPoints(int cx, int cy, int x, int y) {
        putpixel(cx+x, cy+y, RED);
        putpixel(cx-x, cy+y, RED);
        putpixel(cx+x, cy-y, RED);
        putpixel(cx-x, cy-y, RED);
        putpixel(cx+y, cy+x, RED);
        putpixel(cx-y, cy+x, RED);
        putpixel(cx+y, cy-x, RED);
        putpixel(cx-y, cy-x, RED);
}
void main() {
        int cx, cy, x = 0, y, r, p;
        int gd = DETECT, gm;
        clrscr();
        printf("Enter the coordinates of centre of the circle: ");
        scanf("%d %d", &cx, &cy);
        printf("Enter radius of : ");
        scanf("%d", &r);
        y = r;
        p = 3 - 2 * r;
        initgraph(&gd, &gm, "");
        cleardevice();
        while (x < y) {
                plotPoints(cx, cy, x, y);
                x++;
                if (p < 0)
                                        p = p + 4 * x + 6; else {
                        y--;
                        p = p + 4 * (x - y) + 10;
                }
                plotPoints(cx, cy, x, y);
                delay(200);
        }
        getch();
}

Above is the source code for C Program to Draw Circle using Bresenham’s Circle Algorithm which is successfully compiled and run on Windows System.The Output of the program is shown above .

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

2.5 2 votes
Article Rating
Category: C Programming Graphic Programs Tags:

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

Subscribe
Notify of
guest

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Jim Robb

Helped me out. Cheers.