Couple more scenes to test coordinate grids

This commit is contained in:
Eryn Wells 2014-07-24 08:03:13 -07:00
parent 63bb28a94a
commit 900c667994
2 changed files with 51 additions and 0 deletions

17
scenes/boxCoordinates.yml Normal file
View file

@ -0,0 +1,17 @@
--- !Scene
dimensions: [800, 600]
camera:
origin: [0, 0, -5]
objects:
- !Object.Sphere
radius: 0.2
origin: [0, 0, 0]
color: [1, 1, 1]
- !Object.Sphere
radius: 0.2
origin: [-0.5, -0.5, -0.5]
color: [1, 0, 0]
- !Object.Sphere
radius: 0.2
origin: [0.5, 0.5, 0.5]
color: [0, 1, 1]

34
scenes/sphereGrid.yml Normal file
View file

@ -0,0 +1,34 @@
--- !Scene
dimensions: [800, 600]
camera: !Camera.Perspective
origin: [1.0, 1.5, -5]
direction: [-0.188, -0.282, 0.941]
objects:
- !Object.Sphere
origin: [-1, 0, 0]
radius: 0.2
color: [1, 0, 0]
- !Object.Sphere
origin: [0, 0, 0]
radius: 0.2
color: [0, 1, 0]
- !Object.Sphere
origin: [1, 0, 0]
radius: 0.2
color: [0, 0, 1]
- !Object.Sphere
origin: [0, 1, 0]
radius: 0.2
color: [1, 1, 0]
- !Object.Sphere
origin: [0, -1, 0]
radius: 0.2
color: [1, 0, 1]
- !Object.Sphere
origin: [0, 0, 1]
radius: 0.2
color: [0, 1, 1]
- !Object.Sphere
origin: [0, 0, -1]
radius: 0.2
color: [1, 1, 1]