From 7d4acc28e4c5784736a716265dc680f610dfcbc4 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 22 Aug 2014 07:34:42 -0700 Subject: [PATCH] Add a scene file with some vector expressions Something for yamldumper to munch on. No actual vectors variables defined yet, though. --- scenes/oneBoxVectorExpression.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 scenes/oneBoxVectorExpression.yml diff --git a/scenes/oneBoxVectorExpression.yml b/scenes/oneBoxVectorExpression.yml new file mode 100644 index 0000000..5b87890 --- /dev/null +++ b/scenes/oneBoxVectorExpression.yml @@ -0,0 +1,14 @@ +--- !Scene +dimensions: [800, 600] +camera: !Camera.Perspective + origin: [7.48, 6.5, 5.34] + lookAt: [0, 0, 0] +objects: + - !Object.Box + near: 3 * y + 2 + far: [1, 1, 1] + color: [1, 0, 0] + - !Object.Plane + normal: [0, 1, 0] + distance: 1 + color: [0, 0, 1]