forked from BabesGotByte/Graphics_LabCodes
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAnswer10.cpp
168 lines (139 loc) · 2.9 KB
/
Answer10.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include <GL/glut.h>
#include<GL/glu.h>
#include <stdlib.h>
// 0.769, 0, 0.776
// 0.341, 0, 0.494
// 0.251, 0.318, 0.306
int flag = 1;
GLfloat angle = 0.0f;
GLfloat angle2 = 0.0f;
int moving, startx, starty;
float r = 0.47f;
float g = 0.0f;
float b = 0.74f;
static void resize(int width, int height)
{
const float ar = (float) width / (float) height;
glViewport(0, 0, width, height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-12.0, 12.0, -1.0, 20.0, -15.0, 15.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
void makecylinder(float height,float Base)
{
GLUquadricObj *qobj;
qobj = gluNewQuadric();
glColor3f(r, g, b);
glPushMatrix();
glRotatef(-90, 1.0f, 0.0f, 0.0f);
gluCylinder(qobj, Base, Base - (0.2 * Base), height, 20, 20);
glPopMatrix();
}
void maketree(float height,float Base)
{
glPushMatrix();
float angle;
makecylinder(height, Base);
glTranslatef(0.0f, height,0.0f);
height -= height * 0.2f;
Base -= Base * 0.3f;
if (height > 1)
{
angle = 22.5f;
glPushMatrix();
glRotatef(angle, -1.0f, 0.0f, 0.0f);
maketree(height, Base);
glPopMatrix();
glPushMatrix();
glRotatef(angle, 0.5f, 0.0f, 0.866f);
maketree(height, Base);
glPopMatrix();
glPushMatrix();
glRotatef(angle, 0.5f, 0.0f, -0.866f);
maketree(height, Base);
glPopMatrix();
}
glPopMatrix();
}
static void display(void)
{
const double t = glutGet(GLUT_ELAPSED_TIME) / 1000.0;
const double a = t*90.0;
srand(GLUT_ELAPSED_TIME);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
glRotatef(angle, 0, 1, 0);
glRotatef(angle2, 0, 1, 0);
maketree(4.0f,0.1f);
glutSwapBuffers();
glFlush();
}
static void key(unsigned char key, int x, int y)
{
switch (key)
{
case 'r':
r = 0.47f;
g = 0.0f;
b = 0.74f;
break;
case 'g':
r = 0.341f;
g = 0.0f;
b = 0.494f;
break;
case 'b':
r = 0.035f;
g = 0.0f;
b = 0.341f;
break;
case 'q':
exit(0);
break;
}
glutPostRedisplay();
}
void mouse(int btn,int state,int x,int y)
{
if(btn==GLUT_LEFT_BUTTON && state==GLUT_DOWN)
{
moving=1;
startx=x;
starty=y;
}
if(btn==GLUT_LEFT_BUTTON && state==GLUT_UP)
{
moving=0;
}
}
void motion(int x,int y)
{
if(moving)
{
angle = angle + (x - startx);
angle2 = angle2 + (y - starty);
startx = x;
starty = y;
glutPostRedisplay();
}
}
/* Program entry point */
int main(int argc, char *argv[])
{
glutInit(&argc, argv);
glutInitWindowSize(1280,960);
glutInitWindowPosition(10,10);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
glutCreateWindow("3d fractal tree");
glutReshapeFunc(resize);
glutDisplayFunc(display);
glutKeyboardFunc(key);
glutMouseFunc(mouse);
glutMotionFunc(motion);
glClearColor(1, 0.627, 0.412,1);
glEnable(GL_DEPTH_TEST);
glutMainLoop();
return 0;
}