author | Radek Brich <radek.brich@devl.cz> |
Sat, 29 Mar 2008 12:09:50 +0100 | |
branch | pyrit |
changeset 55 | f6d75ae82c88 |
parent 40 | 929aad02c5f2 |
child 62 | 07c2f8084719 |
permissions | -rw-r--r-- |
29 | 1 |
#include "raytracer.h" |
35
fb170fccb19f
new space partitioning structure: octree
Radek Brich <radek.brich@devl.cz>
parents:
29
diff
changeset
|
2 |
#include "octree.h" |
29 | 3 |
|
39
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
Radek Brich <radek.brich@devl.cz>
parents:
38
diff
changeset
|
4 |
#include "common_sdl.h" |
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
Radek Brich <radek.brich@devl.cz>
parents:
38
diff
changeset
|
5 |
#include "common_ply.h" |
37
5f954c0d34fc
octree traversal rewritten to avoid recursion
Radek Brich <radek.brich@devl.cz>
parents:
36
diff
changeset
|
6 |
|
40
929aad02c5f2
Makefile: added help and distclean target, plus small fixes
Radek Brich <radek.brich@devl.cz>
parents:
39
diff
changeset
|
7 |
int main(int argc, char **argv) |
29 | 8 |
{ |
39
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
Radek Brich <radek.brich@devl.cz>
parents:
38
diff
changeset
|
9 |
Raytracer rt; |
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
Radek Brich <radek.brich@devl.cz>
parents:
38
diff
changeset
|
10 |
Octree top; |
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
Radek Brich <radek.brich@devl.cz>
parents:
38
diff
changeset
|
11 |
Camera cam; |
29 | 12 |
|
36
b490093b0ac3
new virtual Shape::intersect_bbox
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
13 |
rt.setMaxDepth(0); |
29 | 14 |
rt.setTop(&top); |
15 |
||
16 |
Light light1(Vector3(-5.0, 2.0, 8.0), Colour(0.9, 0.3, 0.6)); |
|
17 |
light1.castShadows(false); |
|
18 |
rt.addlight(&light1); |
|
19 |
||
20 |
//Light light2(Vector3(-2.0, 10.0, 2.0), Colour(0.4, 0.6, 0.3)); |
|
21 |
//light2.castShadows(false); |
|
22 |
//rt.addlight(&light2); |
|
23 |
||
24 |
Material mat(Colour(0.9, 0.9, 0.9)); |
|
39
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
Radek Brich <radek.brich@devl.cz>
parents:
38
diff
changeset
|
25 |
load_ply(rt, "../models/bunny/bun_zipper.ply", &mat, Vector3(-29,29,29), Vector3(-1,-3,0)); |
29 | 26 |
|
27 |
rt.setCamera(&cam); |
|
28 |
cam.setEye(Vector3(0,0,10)); |
|
29 |
||
30 |
top.optimize(); |
|
31 |
||
39
7079dcc3bd74
ccdemos: put the common code to header files, common_ply.h and common_sdl.h
Radek Brich <radek.brich@devl.cz>
parents:
38
diff
changeset
|
32 |
loop_sdl(rt, cam); |
29 | 33 |
} |