author | Radek Brich <radek.brich@devl.cz> |
Tue, 08 Apr 2008 01:05:12 +0200 | |
branch | pyrit |
changeset 60 | a23b5089b9c3 |
parent 59 | 64e456ab823d |
child 62 | 07c2f8084719 |
permissions | -rwxr-xr-x |
58 | 1 |
#!/usr/bin/python |
2 |
||
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
3 |
from raytracer import Raytracer, Light, Sphere, Triangle, Material, Camera |
58 | 4 |
from lworeader import LoadLightwaveLwoFile |
5 |
import Image |
|
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
6 |
from math import * |
58 | 7 |
|
8 |
rt = Raytracer() |
|
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
9 |
|
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
10 |
cam = Camera(eye=(0.,5.,8.)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
11 |
rotx=0.3 |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
12 |
cam.rotate((cos(rotx),-sin(rotx),0.,0.)) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
13 |
rt.setcamera(cam) |
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
14 |
|
58 | 15 |
mat = Material(colour=(0.9, 0.9, 0.9)) |
59
64e456ab823d
add color support to lwo reader
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
16 |
LoadLightwaveLwoFile(rt, "../models/car/Nissan300ZX.lwo", mat, smooth=False, scale=0.4) |
58 | 17 |
|
60
a23b5089b9c3
moving to SCons build system
Radek Brich <radek.brich@devl.cz>
parents:
59
diff
changeset
|
18 |
light = Light(position=(-5.0, 10.0, 8.0), colour=(0.9, 0.9, 0.9)) |
58 | 19 |
rt.addlight(light) |
20 |
||
21 |
imagesize = (800, 600) |
|
22 |
data = rt.render(imagesize) |
|
23 |
img = Image.fromstring("RGB", imagesize, data) |
|
24 |
img.save('car.png') |