From 1d22e27d81d4430e3b7145c4df0bf9490727de3e Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 20 Jul 2014 16:55:52 -0700 Subject: [PATCH] Specify object types in threeSpheres.yml These don't actually do anything yet, but I'd like to get this going once I start adding more object types. --- scenes/threeSpheres.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scenes/threeSpheres.yml b/scenes/threeSpheres.yml index 0c4f5e0..b34f8ea 100644 --- a/scenes/threeSpheres.yml +++ b/scenes/threeSpheres.yml @@ -1,14 +1,17 @@ --- !Scene dimensions: [1920, 1080] -camera: +camera: !Camera.Perspective right: [1.77, 0, 0] objects: - - origin: [0, 0.5, 2] + - !Object.Sphere + origin: [0, 0.5, 2] radius: 0.33 color: [1, 0, 0] - - origin: [-0.33, 0, 2] + - !Object.Sphere + origin: [-0.33, 0, 2] radius: 0.33 color: [0, 1, 0] - - origin: [0.33, 0, 2] + - !Object.Sphere + origin: [0.33, 0, 2] radius: 0.33 color: [0, 0, 1]