From 4d397e0d494ed8f92ff239def32cfa7ea4332513 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Fri, 8 Oct 2010 15:49:33 +0000 Subject: [PATCH] added scenes/simple.fart git-svn-id: svn://anubis/fart/trunk@369 7f9b0f55-74a9-4bce-be96-3c2cd072584d --- scenes/simple.fart | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 scenes/simple.fart diff --git a/scenes/simple.fart b/scenes/simple.fart new file mode 100644 index 0000000..a1e918d --- /dev/null +++ b/scenes/simple.fart @@ -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> + } + } +}