added scenes/simple.fart

git-svn-id: svn://anubis/fart/trunk@369 7f9b0f55-74a9-4bce-be96-3c2cd072584d
This commit is contained in:
Josh Holtrop 2010-10-08 15:49:33 +00:00
parent eb7de55ea9
commit 4d397e0d49

27
scenes/simple.fart Normal file
View File

@ -0,0 +1,27 @@
scene {
options {
width 400
height 300
}
camera {
position <5, -5, 4>
look_at <0, 0, 1>
}
light {
position <10, -10, 50>
}
plane {
position <0, 0, 1>, 0
material {
color <0, 1, 0.2>
reflectance 0.4
}
}
sphere {
radius 1
translate <0, 0, 1>
material {
color <1, 1, 0>
}
}
}