| author | Radek Brich <radek.brich@devl.cz> | 
| Mon, 28 Apr 2008 11:44:11 +0200 | |
| branch | pyrit | 
| changeset 88 | f7edb3b90816 | 
| parent 81 | 9dbb9c8c115b | 
| child 91 | 9d66d323c354 | 
| permissions | -rw-r--r-- | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
1  | 
#include "raytracer.h"  | 
| 
39
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
2  | 
#include "octree.h"  | 
| 
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
3  | 
|
| 
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
4  | 
#include "common_sdl.h"  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
5  | 
|
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
6  | 
Camera cam;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
7  | 
Light light(Vector3(-2.0, 10.0, -2.0), Colour(0.9, 0.9, 0.9));  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
8  | 
|
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
9  | 
Float lx, ly, lz, cf;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
10  | 
|
| 
81
 
9dbb9c8c115b
add 2D pixmap texture class
 
Radek Brich <radek.brich@devl.cz> 
parents: 
72 
diff
changeset
 | 
11  | 
void update_callback(Float*)  | 
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
12  | 
{
 | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
13  | 
if (lx != 0.0)  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
14  | 
light.pos.x += lx;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
15  | 
if (ly != 0.0)  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
16  | 
light.pos.y += ly;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
17  | 
if (lz != 0.0)  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
18  | 
light.pos.z += lz;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
19  | 
if (cf != 0.0)  | 
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
20  | 
cam.F += cf;  | 
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
21  | 
}  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
22  | 
|
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
23  | 
void key_callback(int key, int down)  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
24  | 
{
 | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
25  | 
switch (key)  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
26  | 
	{
 | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
27  | 
case SDLK_r:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
28  | 
lx = -0.1 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
29  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
30  | 
case SDLK_t:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
31  | 
lx = +0.1 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
32  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
33  | 
case SDLK_f:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
34  | 
ly = -0.1 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
35  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
36  | 
case SDLK_g:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
37  | 
ly = +0.1 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
38  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
39  | 
case SDLK_v:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
40  | 
lz = -0.1 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
41  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
42  | 
case SDLK_b:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
43  | 
lz = +0.1 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
44  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
45  | 
|
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
46  | 
case SDLK_z:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
47  | 
cf = -0.02 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
48  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
49  | 
case SDLK_x:  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
50  | 
cf = +0.02 * down;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
51  | 
break;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
52  | 
}  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
53  | 
}  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
54  | 
|
| 
39
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
55  | 
int main(int argc, char **argv)  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
56  | 
{
 | 
| 
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
57  | 
Raytracer rt;  | 
| 22 | 58  | 
|
| 
39
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
59  | 
Octree top;  | 
| 22 | 60  | 
rt.setTop(&top);  | 
| 
16
 
20bceb605f48
add Raytracer::setThreads()
 
Radek Brich <radek.brich@devl.cz> 
parents: 
15 
diff
changeset
 | 
61  | 
|
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
62  | 
rt.addLight(&light);  | 
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
63  | 
|
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
64  | 
//Light light2;  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
65  | 
//light2.colour = Colour(0.7, 0.3, 0.6);  | 
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
66  | 
//rt.addLight(&light2);  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
67  | 
|
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
68  | 
Material mat0a(Colour(0.7, 0.7, 0.7));  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
69  | 
mat0a. setReflectivity(0.0);  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
70  | 
Box box(Vector3(-10.0, -1.2, -20.0), Vector3(10.0, -1.0, 0.0), &mat0a);  | 
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
71  | 
rt.addShape(&box);  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
72  | 
|
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
73  | 
Material mat0b(Colour(0.1, 0.7, 0.8));  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
74  | 
mat0b.setReflectivity(0.7);  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
75  | 
Box box2(Vector3(-10.0, -1.2, -20.0), Vector3(10.0, 10.0, -20.2), &mat0b);  | 
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
76  | 
rt.addShape(&box2);  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
77  | 
|
| 
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
78  | 
Material mat1(Colour(1.0, 0.0, 0.0));  | 
| 
19
 
4e0955fca797
added Camera, currently w/o Python binding
 
Radek Brich <radek.brich@devl.cz> 
parents: 
16 
diff
changeset
 | 
79  | 
Sphere bigsphere(Vector3(3.0, 2.0, -7.0), 3.0, &mat1);  | 
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
80  | 
rt.addShape(&bigsphere);  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
81  | 
|
| 
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
82  | 
Material mat2(Colour(0.0, 1.0, 0.0));  | 
| 
19
 
4e0955fca797
added Camera, currently w/o Python binding
 
Radek Brich <radek.brich@devl.cz> 
parents: 
16 
diff
changeset
 | 
83  | 
Sphere smallsphere(Vector3(-5.5, 1.5, -8.0), 2.0, &mat2);  | 
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
84  | 
rt.addShape(&smallsphere);  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
85  | 
|
| 
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
86  | 
Material mat3(Colour(0.0, 0.0, 1.0));  | 
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
87  | 
mat3.setReflectivity(0.1);  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
88  | 
mat3.setTransmissivity(0.8, 1.5);  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
89  | 
Sphere tinysphere(Vector3(-1.2, 0.0, -2.0), 0.7, &mat3);  | 
| 
72
 
7c3f38dff082
kd-tree building - check all axes for best split, add additional shape-bbox check
 
Radek Brich <radek.brich@devl.cz> 
parents: 
60 
diff
changeset
 | 
90  | 
rt.addShape(&tinysphere);  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
91  | 
|
| 22 | 92  | 
top.optimize();  | 
93  | 
||
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
94  | 
cam.setEye(Vector3(-2.28908, 4.30992, 12.3051));  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
95  | 
cam.p = Vector3(0.0988566, -0.139543, -0.985269);  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
96  | 
cam.u = Vector3(-0.995004, 0, -0.0998334);  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
97  | 
cam.v = Vector3(0.0139311, 0.990216, -0.138846);  | 
| 
19
 
4e0955fca797
added Camera, currently w/o Python binding
 
Radek Brich <radek.brich@devl.cz> 
parents: 
16 
diff
changeset
 | 
98  | 
rt.setCamera(&cam);  | 
| 
 
4e0955fca797
added Camera, currently w/o Python binding
 
Radek Brich <radek.brich@devl.cz> 
parents: 
16 
diff
changeset
 | 
99  | 
|
| 
39
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
100  | 
w = 800;  | 
| 
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
101  | 
h = 600;  | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
102  | 
|
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
103  | 
/* run interactive mode */  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
104  | 
loop_sdl(rt, cam, update_callback, key_callback);  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
105  | 
|
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
106  | 
/* render image */  | 
| 
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
107  | 
if (argc == 2 && !strcmp(argv[1], "-r"))  | 
| 
39
 
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
 
Radek Brich <radek.brich@devl.cz> 
parents: 
37 
diff
changeset
 | 
108  | 
	{
 | 
| 
40
 
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
 
Radek Brich <radek.brich@devl.cz> 
parents: 
39 
diff
changeset
 | 
109  | 
pyrit_verbosity = 2;  | 
| 
88
 
f7edb3b90816
merge pixmap handling from sampler, material.h and ccdemos's image module to new Pixmap class
 
Radek Brich <radek.brich@devl.cz> 
parents: 
81 
diff
changeset
 | 
110  | 
DefaultSampler sampler(w, h);  | 
| 
48
 
a4913301c626
begin moving subsampling and oversampling to Sampler
 
Radek Brich <radek.brich@devl.cz> 
parents: 
47 
diff
changeset
 | 
111  | 
sampler.setOversample(2);  | 
| 
47
 
320d5d466864
move Sampler classes to sampler.cc
 
Radek Brich <radek.brich@devl.cz> 
parents: 
40 
diff
changeset
 | 
112  | 
rt.setSampler(&sampler);  | 
| 
 
320d5d466864
move Sampler classes to sampler.cc
 
Radek Brich <radek.brich@devl.cz> 
parents: 
40 
diff
changeset
 | 
113  | 
rt.render();  | 
| 
88
 
f7edb3b90816
merge pixmap handling from sampler, material.h and ccdemos's image module to new Pixmap class
 
Radek Brich <radek.brich@devl.cz> 
parents: 
81 
diff
changeset
 | 
114  | 
		sampler.getPixmap().writePNG("spheres_shadow.png");
 | 
| 
15
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
115  | 
}  | 
| 
 
a0a3e334744f
C++ demos: prepare infrastructure, add spheres_shadow.cc
 
Radek Brich <radek.brich@devl.cz> 
parents:  
diff
changeset
 | 
116  | 
}  |