-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMidpoint-Circle-Drawing-Algorithm.cpp
95 lines (76 loc) · 1.95 KB
/
Midpoint-Circle-Drawing-Algorithm.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
Md. Abdul Mutalib
B.Sc (Engg.) in CSE
North East University Bangladesh
Connect with me:
Github: https://github.com/mamutalib
*/
#include <stdio.h>
#include <GL/gl.h>
#include <GL/glut.h>
#define ll long long
#define ull unsigned long long
#define ld long double
#define nl '\n'
#define fn for(int i = 0; i<n; i++)
#define ft for(int i = 0; i<t; i++)
#define wt while(t--)
#define wn while(n--)
#define fs first
#define f first
#define s second
#define pf printf
#define sc scanf
float x=0,y,x2,y2,m,i,j,p;
int dx=0,dy=0,r;
void display(void) {
glClear (GL_COLOR_BUFFER_BIT);
glEnd();
glColor3f (0.0, 1.0, 0.0);
glBegin(GL_POINTS);
p=1-r;
while((x<=y)){
if(p<0){
x=x+1;
y=y;
printf("%0.2f %0.2f\n",x,y);
p=p+(2*x)+1;
}
else{
x=x+1;
y=y-1;
printf("%0.2f %0.2f\n",x,y);
p=p+(2*x)+1-(2*y);
}
glVertex3f (((x/100)), ((y/100)), 0.0);
glVertex3f (((y/100)), ((x/100)), 0.0);
glVertex3f ((-(x/100)), (-(y/100)), 0.0);
glVertex3f ((-(x/100)), ((y/100)), 0.0);
glVertex3f (((x/100)), (-(y/100)), 0.0);
glVertex3f (((y/100)), (-(x/100)), 0.0);
glVertex3f ((-(y/100)), (-(x/100)), 0.0);
glVertex3f ((-(y/100)), ((x/100)), 0.0);
}
glEnd();
glFlush ();
}
void init (void) {
glClearColor (0.0, 0.0, 0.0, 0.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
}
int main(int argc, char** argv){
printf("Enter radius: ");
scanf("%d",&r);
y=r;
glutInit(&argc, argv);
glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB);
glutInitWindowSize (500, 500);
glutInitWindowPosition (100, 100);
glutCreateWindow ("Midpoint Circle Drawing Algorithm");
init ();
glutDisplayFunc(display);
glutMainLoop();
return 0;
}