-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path008.c
More file actions
331 lines (301 loc) · 6.96 KB
/
Copy path008.c
File metadata and controls
331 lines (301 loc) · 6.96 KB
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#include "screencasts.h"
/* Poor man's approximation of PI */
#define PI 3.1415926535898
/* Macro for sin & cos in degrees */
#define Cos(th) cos(PI/180*(th))
#define Sin(th) sin(PI/180*(th))
/* D degrees of rotation */
#define DEF_D 5
/* Globals */
double dim=2.0; /* dimension of orthogonal box */
char *windowName="OpenGL screenscasts 8: Drawing in 3d part 3: Spheres, Cylinders, and Cones";
int windowWidth=500;
int windowHeight=450;
/* Various global state */
int toggleAxes = 0; /* toggle axes on and off */
int toggleValues = 1; /* toggle values on and off */
int toggleMode = 0; /* projection mode */
int th = 0; /* azimuth of view angle */
int ph = 0; /* elevation of view angle */
int fov = 55; /* field of view for perspective */
int asp = 1; /* aspect ratio */
int objId = 0; /* object to draw */
/*
* project()
* ------
* Sets the projection
*/
void project()
{
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
if (toggleMode) {
/* perspective */
gluPerspective(fov,asp,dim/4,4*dim);
}
else {
/* orthogonal projection*/
glOrtho(-dim*asp,+dim*asp, -dim,+dim, -dim,+dim);
}
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
/*
* setEye()
* ------
* Set the eye position
*/
void setEye()
{
if (toggleMode) {
double Ex = -2*dim*Sin(th)*Cos(ph);
double Ey = +2*dim *Sin(ph);
double Ez = +2*dim*Cos(th)*Cos(ph);
/* camera/eye position, aim of camera lens, up-vector */
gluLookAt(Ex,Ey,Ez , 0,0,0 , 0,Cos(ph),0);
}
/* Orthogonal - set world orientation */
else {
glRotatef(ph,1,0,0);
glRotatef(th,0,1,0);
}
}
/*
* drawAxes()
* ------
* Draw the axes
*/
void drawAxes()
{
if (toggleAxes) {
/* Length of axes */
double len = 2.0;
glColor3f(1.0,1.0,1.0);
glBegin(GL_LINES);
glVertex3d(0,0,0);
glVertex3d(len,0,0);
glVertex3d(0,0,0);
glVertex3d(0,len,0);
glVertex3d(0,0,0);
glVertex3d(0,0,len);
glEnd();
/* Label axes */
glRasterPos3d(len,0,0);
print("X");
glRasterPos3d(0,len,0);
print("Y");
glRasterPos3d(0,0,len);
print("Z");
}
}
/*
* drawValues()
* ------
* Draw the values in the lower left corner
*/
void drawValues()
{
if (toggleValues) {
glColor3f(0.8,0.8,0.8);
printAt(5,5,"View Angle (th, ph) =(%d, %d)", th,ph);
printAt(5,25,"Projection mode =(%s)", toggleMode?"Perspective":"Orthogonal");
}
}
/*
* vertex
* ------
* Draw vertex in polar coordinates
*/
void vertex(double th2,double ph2)
{
double x = Sin(th2)*Cos(ph2);
double y = Cos(th2)*Cos(ph2);
double z = Sin(ph2);
glVertex3d(x,y,z);
}
/*
* drawShape()
* ------
* Draw the GLUT shape
*/
void drawShape()
{
int th2, ph2, i, j, k;
// objId == 0 => draw nothing
/* Sphere */
if (objId == 1) {
for (ph2=-90;ph2<90;ph2+=DEF_D) {
glBegin(GL_QUAD_STRIP);
for (th2=0;th2<=360;th2+=2*DEF_D) {
glColor3f(0.0,1.0,0.0); //green
vertex(th2,ph2);
glColor3f(0.0,0.0,1.0); //blue
vertex(th2,ph2+DEF_D);
}
glEnd();
}
}
/* cylinder */
else if (objId == 2) {
/* sides */
glBegin(GL_QUAD_STRIP);
for (j=0;j<=360;j+=DEF_D) {
glColor3f(1.0,1.0,0.0);
glVertex3f(Cos(j),+1,Sin(j));
glColor3f(0.0,1.0,0.0);
glVertex3f(Cos(j),-1,Sin(j));
}
glEnd();
/* top and bottom circles */
/* reuse the currentTexture on top and bottom) */
for (i=1;i>=-1;i-=2) {
glBegin(GL_TRIANGLE_FAN);
glColor3f(0.0,0.0,1.0);
glVertex3f(0,i,0);
for (k=0;k<=360;k+=DEF_D) {
glColor3f(1.0,0.0,0.0);
glVertex3f(i*Cos(k),i,Sin(k));
}
glEnd();
}
}
/* cone */
else if (objId == 3) {
/* sides */
glBegin(GL_TRIANGLES);
for (k=0;k<=360;k+=DEF_D){
glColor3f(0.0,0.0,1.0);
glVertex3f(0,0,1);
glColor3f(0.0,1.0,1.0);
glVertex3f(Cos(k),Sin(k),0);
glColor3f(1.0,0.0,0.0);
glVertex3f(Cos(k+DEF_D),Sin(k+DEF_D),0);
}
glEnd();
/* bottom circle */
/* rotate back */
glRotated(90,1,0,0);
glBegin(GL_TRIANGLES);
for (k=0;k<=360;k+=DEF_D) {
glColor3f(1.0,0.0,0.0);
glVertex3f(0,0,0);
glColor3f(1.0,0.0,1.0);
glVertex3f(Cos(k),0,Sin(k));
glColor3f(1.0,1.0,0.0);
glVertex3f(Cos(k+DEF_D),0,Sin(k+DEF_D));
}
glEnd();
}
errCheck("error in draw shape");
}
/*
* display()
* ------
* Display the scene
*/
void display()
{
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
glEnable(GL_DEPTH_TEST);
glLoadIdentity();
/* setup functions */
setEye();
/* draw */
drawAxes();
drawValues();
/* magic here */
drawShape();
/* Flush and swap */
glFlush();
glutSwapBuffers();
}
/*
* reshape()
* ------
* GLUT calls this routine when the window is resized
*/
void reshape(int width,int height)
{
asp = (height>0) ? (double)width/height : 1;
glViewport(0,0, width,height);
project();
}
/*
* windowKey()
* ------
* GLUT calls this routine when a non-special key is pressed
*/
void windowKey(unsigned char key,int x,int y)
{
/* Exit on ESC */
if (key == 27) exit(0);
/* Spacebar - Toggle through shapes */
else if (key == 32) {
if (objId == 3) objId = 0;
else objId++;
}
else if (key == 'a' || key == 'A') toggleAxes = 1-toggleAxes;
else if (key == 'v' || key == 'V') toggleValues = 1-toggleValues;
else if (key == 'm' || key == 'M') toggleMode = 1-toggleMode;
/* Change field of view angle */
else if (key == '-' && key>1) fov--;
else if (key == '+' && key<179) fov++;
/* Change dimensions */
else if (key == 'D') dim += 0.1;
else if (key == 'd' && dim>1) dim -= 0.1;
project();
glutPostRedisplay();
}
/*
* windowSpecial()
* ------
* GLUT calls this routine when an arrow key is pressed
*/
void windowSpecial(int key,int x,int y)
{
/* Right arrow key - increase azimuth by 5 degrees */
if (key == GLUT_KEY_RIGHT) th += 5;
/* Left arrow key - decrease azimuth by 5 degrees */
else if (key == GLUT_KEY_LEFT) th -= 5;
/* Up arrow key - increase elevation by 5 degrees */
else if (key == GLUT_KEY_UP) ph += 5;
/* Down arrow key - decrease elevation by 5 degrees */
else if (key == GLUT_KEY_DOWN) ph -= 5;
/* Keep angles to +/-360 degrees */
th %= 360;
ph %= 360;
project();
glutPostRedisplay();
}
/*
* windowMenu
* ------
* Window menu is the same as the keyboard clicks
*/
void windowMenu(int value)
{
windowKey((unsigned char)value, 0, 0);
}
/*
* main()
* ----
* Start up GLUT and tell it what to do
*/
int main(int argc,char* argv[])
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
glutInitWindowSize(windowWidth,windowHeight);
glutCreateWindow(windowName);
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutKeyboardFunc(windowKey);
glutSpecialFunc(windowSpecial);
glutCreateMenu(windowMenu);
glutAddMenuEntry("Toggle Axes [a]",'a');
glutAddMenuEntry("Toggle Values [v]",'v');
glutAddMenuEntry("Toggle Mode [m]",'m');
glutAttachMenu(GLUT_RIGHT_BUTTON);
glutMainLoop();
return 0;
}