Blame view

main.cpp 14.2 KB
6bf618a1   David Mayerich   initial commit
1
  #include <iostream>
a4c3a0e0   Pavel Govyadinov   added the neccess...
2
  #include <sstream>
6bf618a1   David Mayerich   initial commit
3
4
5
6
7
  
  #include <GL/glut.h>
  
  #include <stim/visualization/camera.h>
  #include <stim/parser/arguments.h>
f8a38243   David Mayerich   made changes to s...
8
9
  #include <stim/visualization/obj.h>
  #include <stim/visualization/gl_spharmonics.h>
a4c3a0e0   Pavel Govyadinov   added the neccess...
10
  #include <stim/math/constants.h>
998eff30   Pavel Govyadinov   modified to use w...
11
  #include <stim/math/random.h>
6bf618a1   David Mayerich   initial commit
12
13
14
  
  #define theta_scale		0.01
  #define phi_scale		0.01
f8a38243   David Mayerich   made changes to s...
15
  #define zoom_scale		0.1
6bf618a1   David Mayerich   initial commit
16
17
18
19
20
  
  //create a global camera that will specify the viewport
  stim::camera cam;
  int mx, my;			//mouse coordinates in the window space
  
f37cf039   Pavel Govyadinov   added transitiona...
21
  stim::gl_spharmonics<double> S;
31c961c7   David Mayerich   interpolation cha...
22
  stim::gl_spharmonics<double> R;				//spherical harmonics to render
6bf618a1   David Mayerich   initial commit
23
24
25
26
27
28
29
  
  float d = 1.5;		//initial distance between the camera and the sphere
  
  bool rotate_zoom = true;	//sets the current camera mode (rotation = true, zoom = false)
  
  stim::arglist args;			//class for processing command line arguments
  
f8a38243   David Mayerich   made changes to s...
30
  bool zaxis = false;			//render the z-axis (set via a command line flag)
6bf618a1   David Mayerich   initial commit
31
  
31c961c7   David Mayerich   interpolation cha...
32
33
34
  /// INTERPOLATION
  stim::gl_spharmonics<double> Si;
  bool interp = false;				//if we are interpolating
f37cf039   Pavel Govyadinov   added transitiona...
35
36
  double alpha = 0.0;					//alpha value for interpolation
  double dalpha = 0.1;					//change in alpha value with a key press
31c961c7   David Mayerich   interpolation cha...
37
  
6bf618a1   David Mayerich   initial commit
38
39
40
41
42
43
44
45
46
47
48
  bool init(){
  
  	//set the clear color to white
  	glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
  
  	//initialize the camera
  	cam.setPosition(d, d, d);
  	cam.LookAt(0, 0, 0, 0, 1, 1);
  	cam.setFOV(40);
  
  	//initialize the texture map stuff	
31c961c7   David Mayerich   interpolation cha...
49
  	R.glInit(256);
6bf618a1   David Mayerich   initial commit
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  
  	return true;
  }
  
  //code that is run every time the user changes something
  void display(){
  	//clear the screen
  	glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
  
  	//set the projection matrix
  	glMatrixMode(GL_PROJECTION);				//put the projection matrix on the stack
  	glLoadIdentity();							//set it to the identity matrix
  	gluPerspective(cam.getFOV(), 1, 0.001, 1000000);	//set up a perspective projection
  
  
  	//set the model view matrix
  	glMatrixMode(GL_MODELVIEW);					//load the model view matrix to the stack
  	glLoadIdentity();							//set it to the identity matrix
  
  	//get the camera parameters
f8a38243   David Mayerich   made changes to s...
70
71
72
  	stim::vec3<float> p = cam.getPosition();
  	stim::vec3<float> u = cam.getUp();
  	stim::vec3<float> d = cam.getDirection();
6bf618a1   David Mayerich   initial commit
73
74
75
  
  	//specify the camera parameters to OpenGL
  	gluLookAt(p[0], p[1], p[2], d[0], d[1], d[2], u[0], u[1], u[2]);
f37cf039   Pavel Govyadinov   added transitiona...
76
77
78
79
80
81
82
  	if(interp)
  	{
  		R=S*(1.0-alpha)+Si*alpha;
  		R.glInit();
  		interp = false;
  	}
  	std::cout << "R "  << R.str() << std::endl;
6bf618a1   David Mayerich   initial commit
83
84
  
  	//draw the sphere
f37cf039   Pavel Govyadinov   added transitiona...
85
  
31c961c7   David Mayerich   interpolation cha...
86
87
  	R.glRender();
  
6bf618a1   David Mayerich   initial commit
88
  
f8a38243   David Mayerich   made changes to s...
89
90
91
92
93
94
95
96
97
98
  	//glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
  
  	//draw the z-axis if requested
  	if(zaxis){
  		glDisable(GL_TEXTURE_2D);
  		glColor3f(0.0f, 1.0f, 0.0f);
  		glBegin(GL_LINES);
  			glVertex3f(0.0, 0.0, 0.0);
  			glVertex3f(0.0, 0.0, 100.0);
  		glEnd();
998eff30   Pavel Govyadinov   modified to use w...
99
100
101
102
103
104
105
106
107
108
109
110
  
  		glColor3f(1.0f, 0.0f, 0.0f);
  		glBegin(GL_LINES);
  			glVertex3f(0.0, 0.0, 0.0);
  			glVertex3f(100.0, 0.0, 0.0);
  		glEnd();
  
  		glColor3f(0.0f, 0.0f, 1.0f);
  		glBegin(GL_LINES);
  			glVertex3f(0.0, 0.0, 0.0);
  			glVertex3f(0.0, 100.0, 0.0);
  		glEnd();
f8a38243   David Mayerich   made changes to s...
111
112
  	}
  
6bf618a1   David Mayerich   initial commit
113
114
115
116
  	//flush commands on the GPU
  	glutSwapBuffers();
  }
  
f37cf039   Pavel Govyadinov   added transitiona...
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  //Process Arrow Key presses.
  void
  processSpecialKeys(int key, int xx, int yy)
  {
          switch(key)
          {
                  case GLUT_KEY_UP:
                          alpha = alpha + dalpha;          
                          break;
                  case GLUT_KEY_DOWN:
                          alpha = alpha - dalpha;          
                          break;
          }
  	interp = true;
          glutPostRedisplay();
  }     
  
6bf618a1   David Mayerich   initial commit
134
135
136
137
138
  void mouse_press(int button, int state, int x, int y){
  
  	//set the camera motion mode based on the mouse button pressed
  	if(button == GLUT_LEFT_BUTTON)
  		rotate_zoom = true;
f8a38243   David Mayerich   made changes to s...
139
  	else if(button == GLUT_RIGHT_BUTTON)
6bf618a1   David Mayerich   initial commit
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  		rotate_zoom = false;
  
  	//if the mouse is pressed
  	if(state == GLUT_DOWN){
  		//set the current mouse position
  		mx = x;		my = y;
  	}
  }
  
  void mouse_drag(int x, int y){
  
  	//if the camera is in rotation mode, rotate
  	if(rotate_zoom == true){
  		float theta = theta_scale * (mx - x);
  		float phi = -phi_scale * (my - y);
  
  		//if the mouse is dragged
  		cam.OrbitFocus(theta, phi);
  	}
  	//otherwize zoom
  	else{
f8a38243   David Mayerich   made changes to s...
161
  		cam.Push(zoom_scale*(my - y));
6bf618a1   David Mayerich   initial commit
162
163
164
165
166
167
168
  	}
  
  	//update the mouse position
  	mx = x;		my = y;
  
  	glutPostRedisplay();
  }
998eff30   Pavel Govyadinov   modified to use w...
169
  /*
a4c3a0e0   Pavel Govyadinov   added the neccess...
170
171
172
173
174
175
176
177
178
  float uniformRandom()
  {
  	return (  (float)(rand()))/(  (float)(RAND_MAX)); 
  }
  
  std::vector<stim::vec3 <float> >
  sample_sphere(int num_samples, float radius = 1.0)
  {
  
31c961c7   David Mayerich   interpolation cha...
179
  	float solidAngle = stim::TAU;	///Solid angle to sample over
a4c3a0e0   Pavel Govyadinov   added the neccess...
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
  	float PHI[2], Z[2], range;	///Range of angles in cylinderical coordinates
  	PHI[0] = solidAngle/2;		///project the solid angle into spherical coords
  	PHI[1] = asin(0);		///
  	Z[0] = cos(PHI[0]);		///project the z into spherical coordinates
  	Z[1] = cos(PHI[1]);		///
  	range = Z[0] - Z[1];		///the range of all possible z values.
  
  	float z, theta, phi;		/// temporary individual
  
  	std::vector<stim::vec3<float> > samples;
  
  	//srand(time(NULL));			///set random seed
  	srand(100);			///set random seed
  
  	for(int i = 0; i < num_samples; i++)
  	{
  		z = uniformRandom()*range + Z[1];
31c961c7   David Mayerich   interpolation cha...
197
  		theta = uniformRandom() * stim::TAU;
a4c3a0e0   Pavel Govyadinov   added the neccess...
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
  		phi = acos(z);
  		stim::vec3<float> sph(1, theta, phi);
  		stim::vec3<float> cart = sph.sph2cart();
  		sph[0] *= radius;
  		samples.push_back(cart);
  	}
  	samples.push_back(stim::vec3<float>(0.,0.,1.));
  	samples.push_back(stim::vec3<float>(0.,1.0,0.));
  	samples.push_back(stim::vec3<float>(0.,-1.,0.));
  
  
  	std::stringstream name;
        for(int i = 0; i < num_samples; i++)
             name << samples[i].str() << std::endl;
             name << samples[num_samples].str() << std::endl;
             name << samples[num_samples+1].str() << std::endl;
             name << samples[num_samples+2].str() << std::endl;
  	
      
        std::ofstream outFile;
        outFile.open("New_Pos_Vectors.txt");
        outFile << name.str().c_str();
  
  	return samples;
  }
998eff30   Pavel Govyadinov   modified to use w...
223
  */
6bf618a1   David Mayerich   initial commit
224
225
226
  void process_arguments(int argc, char* argv[]){
  
  	args.add("help", "prints this help");
f8a38243   David Mayerich   made changes to s...
227
228
229
  	args.add("rand", "generates a random set of SH coefficients", "", "[N min max]");
  	args.add("sparse", "generates a function based on a set of sparse basis functions", "", "[l0 m0 c0 l1 m1 c1 l2 m2 c2 ...]");
  	args.add("basis", "displays the specified SH basis function", "", "n, or [l m]");
745a7358   David Mayerich   fixed default val...
230
  	args.add("obj", "approximates a geometric object given as a Wavefront OBJ file", "", "filename, degree (integer), samples (integer)");
f8a38243   David Mayerich   made changes to s...
231
232
  	args.add("out", "filename for outputting spherical harmonics coefficients", "", "filename");
  	args.add("zaxis", "render the z-axis as a green line");
a4c3a0e0   Pavel Govyadinov   added the neccess...
233
  	args.add("pdf", "outputs the PDF if an OBJ files is given");
31c961c7   David Mayerich   interpolation cha...
234
  	args.add("interp", "interpolates between two specified sets of coefficients", "", "[c0 c1 c2 c3 ...]");
745a7358   David Mayerich   fixed default val...
235
  	args.add("center", "the center of the model given with --obj", "", "[x y z]");
6bf618a1   David Mayerich   initial commit
236
237
238
239
  
  	//process the command line arguments
  	args.parse(argc, argv);
  
f8a38243   David Mayerich   made changes to s...
240
241
242
243
  	//set the z-axis flag
  	if(args["zaxis"].is_set())
  		zaxis = true;
  
f8a38243   David Mayerich   made changes to s...
244
  	//if arguments are specified, push them as coefficients
f37cf039   Pavel Govyadinov   added transitiona...
245
  	if(args.nargs() > 0 && !args["interp"]){
f8a38243   David Mayerich   made changes to s...
246
  		//push all of the arguments to the spherical harmonics class as coefficients
f37cf039   Pavel Govyadinov   added transitiona...
247
  		for(unsigned int a = 0; a < args.nargs(); a++){
f8a38243   David Mayerich   made changes to s...
248
  			S.push(atof(args.arg(a).c_str()));
f37cf039   Pavel Govyadinov   added transitiona...
249
250
  			R = S;
  		}
f8a38243   David Mayerich   made changes to s...
251
  	}
f37cf039   Pavel Govyadinov   added transitiona...
252
253
254
255
256
257
258
259
260
  	else if(args.nargs() > 0 && args["interp"]){
  		for(unsigned int a = 0; a < args.nargs(); a++){
  			S.push(atof(args.arg(a).c_str()));
  		}
  
  		for (unsigned int a = 0; a < args["interp"].nargs(); a++)
  			Si.push(args["interp"].as_float(a));
  
  		R = S+Si*0.0;
f8a38243   David Mayerich   made changes to s...
261
  
f37cf039   Pavel Govyadinov   added transitiona...
262
263
264
  		
  		
  	}
f8a38243   David Mayerich   made changes to s...
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
  	//if the user wants to use a random set of SH coefficients
  	else if(args["rand"].is_set()){
  
  		//return an error if the user specifies both fixed and random coefficients
  		if(args.nargs() != 0){
  			std::cout<<"Error: both fixed and random coefficients are specified"<<std::endl;
  			exit(1);
  		}
  
  		//seed the random number generator
  		srand(time(NULL));
  
  		unsigned int N = args["rand"].as_int(0);		//get the number of random coefficients
  		double Cmin = args["rand"].as_float(1);			//get the minimum and maximum coefficient values
  		double Cmax = args["rand"].as_float(2);
  
  		//generate the coefficients
  		for(unsigned int c = 0; c < N; c++){
  
  			double norm = (double) rand() / RAND_MAX;		//calculate a random number in the range [0, 1]
  			double scaled = norm * (Cmax - Cmin) + Cmin;	//scale the random number to [Cmin, Cmax]
  			S.push(scaled);									//push the value as a coefficient
  		}
  	}
  	else if(args["sparse"].is_set()){
  
  		//calculate the number of sparse coefficients
  		unsigned int nC = args["sparse"].nargs() / 3;
  
  		std::vector<unsigned int> C;	//vector of 1D coefficients
  		unsigned int Cmax = 0;			//maximum coefficient provided
  
  		std::vector<double> V;			//vector of 1D coefficient values
  
  		unsigned int c;
  		int l, m;
  		double v;
  		//for each provided coefficient
  		for(unsigned int i = 0; i < nC; i++){
  
  			//load data for a single coefficient from the command line
  			l = args["sparse"].as_int( i * 3 + 0 );
  			m = args["sparse"].as_int( i * 3 + 1 );
  			v = args["sparse"].as_float( i * 3 + 2 );
  
  			//calculate the 1D coefficient
  			c = pow(l + 1, 2) - (l - m) - 1;
  
  			//update the maximum coefficient index
  			if(c > Cmax) Cmax = c;
6bf618a1   David Mayerich   initial commit
315
  
f8a38243   David Mayerich   made changes to s...
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
  			//insert the coefficient and value into vectors
  			C.push_back(c);
  			V.push_back(v);			
  		}
  
  		//set the size of the SH coefficient array
  		S.resize(Cmax + 1);
  		
  		//insert each coefficient
  		for(unsigned int i = 0; i < nC; i++){
  			S.setc(C[i], V[i]);
  		}
  
  	}
  	else if(args["obj"].is_set()){
  
998eff30   Pavel Govyadinov   modified to use w...
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
  		std::string filename = args["obj"].as_string(0);	///Read Filename
  		unsigned int l = args["obj"].as_int(1);			///l value
  		int p = args["obj"].as_int(2);				///number of samples
  		stim::obj<double> object(filename);			///Open the file
  		stim::vec3<double> c;					///read the center
  		if(args["center"].is_set())
  			stim::vec3<double> c(args["center"].as_float(0), args["center"].as_float(1), args["center"].as_float(2));
  		else
  			c = stim::vec3<double>(0,0,0);
  		
  		unsigned int nV = object.numV();
  		std::vector< stim::vec3<double> > points;			///redo the points such that they are in a stim::vec3 array, not stim::vec array
  //		points.resize(nV);
  		
  		for(int i = 0; i < nV; i++)
  		{
  			stim::vec<double> temp = object.getV(i);
  			points.push_back(stim::vec3<double>(temp[0], temp[1], temp[2]));
  		}
  		S.pdf(points, l, l, c, p);
  		
  /*
  		std::vector<stim::vec3<double> > sphere = stim::Random<double>::sample_sphere(p, 1.0, stim::TAU);
f8a38243   David Mayerich   made changes to s...
355
356
357
358
359
360
  
  		//create an obj object
  		stim::obj<double> object(filename);
  
  		//get the centroid of the object
  		stim::vec<double> c = object.centroid();
a4c3a0e0   Pavel Govyadinov   added the neccess...
361
  		c[0] = 0; c[1] = 0; c[2] = 0;
f8a38243   David Mayerich   made changes to s...
362
363
364
365
366
367
  
  		//get the number of vertices in the model
  		unsigned int nV = object.numV();
  
  		//for each vertex in the model, create an MC sample
  		std::vector< stim::vec<double> > spherical;
998eff30   Pavel Govyadinov   modified to use w...
368
369
  		stim::vec<double> sample;
  		stim::vec<double> centered;
f8a38243   David Mayerich   made changes to s...
370
371
372
373
374
375
376
377
378
379
  		for(unsigned int i = 0; i < nV; i++){
  
  			sample = object.getV(i);			//get a vertex in cartesian coordinates
  			centered = sample - c;
  			spherical.push_back(centered.cart2sph());
  		}
  
  		//generate the spherical PDF
  		stim::spharmonics<double> P;
  		P.pdf(spherical, l, l);
998eff30   Pavel Govyadinov   modified to use w...
380
  		std::vector<double> weights;		///array of weights
a4c3a0e0   Pavel Govyadinov   added the neccess...
381
382
383
384
385
386
387
388
  		if(args["pdf"].is_set())
  		{
  //			S.pdf(spherical, l, l);
  			for(int i = 0; i < p; i++)	///for each point on the sphere.
  			{
  				float val = 0;		///value starts with 0
  				for(int j = 0; j < nV; j++)		///for each point on surface
  				{
998eff30   Pavel Govyadinov   modified to use w...
389
  					stim::vec3<double> star(object.getV(j)[0] - c[0],
a4c3a0e0   Pavel Govyadinov   added the neccess...
390
391
392
393
394
395
396
397
398
399
400
401
  						object.getV(j)[1] - c[1], 
  						object.getV(j)[2] - c[2]);		///center each point on the model 
  //					val += abs(star.dot(sphere[i])); 		///sum the dot product of the centered point and the sphere.
  					if(star.dot(sphere[i]) > 0)
  						val += pow(star.dot(sphere[i]),8); 		///sum the dot product of the centered point and the sphere.
  				}
  				weights.push_back(val);
  			}
  			
  			S.mcBegin(l,l);
  			for(int i = 0; i < p; i++)
  			{
998eff30   Pavel Govyadinov   modified to use w...
402
  				stim::vec3<double> sph = sphere[i].cart2sph();
a4c3a0e0   Pavel Govyadinov   added the neccess...
403
404
405
  				S.mcSample(sph[1], sph[2], weights[i]);
  			}
  			S.mcEnd();
f8a38243   David Mayerich   made changes to s...
406
  
f8a38243   David Mayerich   made changes to s...
407
  		}
a4c3a0e0   Pavel Govyadinov   added the neccess...
408
409
410
411
412
413
414
415
416
417
418
419
420
  		else{ 
  			//begin Monte-Carlo sampling, using the model vertices as samples
  			S.mcBegin(l, l);
  			double theta, phi, fx, px;
  			for(unsigned int i = 0; i < nV; i++){
  				theta = spherical[i][1];
  				phi = spherical[i][2];
  				fx = spherical[i][0];
  				px = P(theta, phi);
  				S.mcSample(theta, phi, fx / px);
  			}
  			S.mcEnd();
  		}
998eff30   Pavel Govyadinov   modified to use w...
421
  */
f8a38243   David Mayerich   made changes to s...
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
  	}
  
  	//if the user specifies an SH basis function
  	else if(args["basis"].is_set()){
  
  		unsigned int n;
  
  		//if the user specifies one index for the basis function
  		if(args["basis"].nargs() == 1)
  			n = args["basis"].as_int(0);
  		else if(args["basis"].nargs() == 2){
  			int l = args["basis"].as_int(0);		//2D indexing (l, m)
  			int m = args["basis"].as_int(1);
  
  			n = pow(l+1, 2) - (l - m) - 1;			//calculate the 1D index
  		}
  
  		//add zeros for the first (n-1) coefficients
  		for(unsigned int c = 0; c < n; c++)
  			S.push(0);
  
  		//add the n'th coefficient
  		S.push(1);
  	}
  
  	//output the spherical harmonics coefficients if requested
  	if(args["out"].is_set()){
  		
  		if(args["out"].nargs() == 0)
  			std::cout<<S.str()<<std::endl;
  		else{
  
  			//open the output file
  			std::ofstream outfile;
  			outfile.open(args["out"].as_string(0).c_str());
  
  			outfile<<S.str();
  
  			outfile.close();
  		}
  	}
  
  
  	
  	
6bf618a1   David Mayerich   initial commit
467
468
469
470
471
  
  	//if the user asks for help, give it and exit
  	if(args["help"].is_set()){
  		std::cout<<"usage: shview c0 c1 c2 c3 ... --option [A B C]"<<std::endl;
  		std::cout<<"examples:"<<std::endl;
f8a38243   David Mayerich   made changes to s...
472
473
474
475
476
477
478
  		std::cout<<"   generate a spherical function with 4 coefficients (l=0 to 2)"<<std::endl;
  		std::cout<<"          shview 1.3 0.2 2.3 1.34"<<std::endl;
  		std::cout<<"   display a spherical function representing the spherical harmonic l = 3, m = -2"<<std::endl;
  		std::cout<<"          shview --basis 3 -2"<<std::endl;
  
  
  
6bf618a1   David Mayerich   initial commit
479
480
481
  		std::cout<<args.str();
  		exit(0);
  	}
f37cf039   Pavel Govyadinov   added transitiona...
482
483
  
  	R = S;
745a7358   David Mayerich   fixed default val...
484
485
  	std::cout << "R: " << R.str() << std::endl << std::endl;
  	std::cout << "S: " << S.str() << std::endl;
6bf618a1   David Mayerich   initial commit
486
487
488
489
  }
  
  int main(int argc, char *argv[]){
  
f8a38243   David Mayerich   made changes to s...
490
491
492
493
  #ifdef _WIN32
  	args.set_ansi(false);
  #endif
  
6bf618a1   David Mayerich   initial commit
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
  	//initialize GLUT
  	glutInit(&argc, argv);
  
  	//process arguments
  	process_arguments(argc, argv);
  
  	//set the size of the GLUT window
  	glutInitWindowSize(500, 500);
  
  	glutInitDisplayMode(GLUT_DEPTH | GLUT_RGBA | GLUT_DOUBLE);
  
  	//create the GLUT window (and an OpenGL context)
  	glutCreateWindow("Spherical Harmonic Viewport");
  
  	//set the display function (which will be called repeatedly by glutMainLoop)
  	glutDisplayFunc(display);
  
  	//set the mouse press function (called when a mouse button is pressed)
  	glutMouseFunc(mouse_press);
  	//set the mouse motion function (which will be called any time the mouse is dragged)
  	glutMotionFunc(mouse_drag);
  
f37cf039   Pavel Govyadinov   added transitiona...
516
517
  	glutSpecialFunc(processSpecialKeys);
  
6bf618a1   David Mayerich   initial commit
518
519
520
521
522
523
524
525
526
527
528
529
530
531
  	//run the initialization function
  	if(!init())
  		return 1;	//return an error if it fails
  
  
  	//enter the main loop
  	glutMainLoop();
  
  	//return 0 if everything is awesome
  	return 0;
  
  
  
  }