summaryrefslogtreecommitdiff
path: root/resources/scenes/three_balls.yml
blob: f9e75715d3aa00404f05b3ef30b4edc33dedda37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
materials:
  grass:
    Lambertian:
      color:
        data: [ 0.8, 0.8, 0.0 ]

  center:
    Lambertian:
      color:
        data: [ 0.1, 0.2, 0.5 ]

  left:
    Dialectric:
      refraction_index: 1.5

  right:
    Metal:
      color:
        data: [ 0.8, 0.6, 0.2]
      fuzz: 0.0

geometry:
  - Sphere:
      pos:
        data: [ 0.0, -100.5, -1.0 ]
      radius: 100.0
      material: grass

  - Sphere:
      pos:
        data: [ 0.0, 0.0, -1.0 ]
      radius: 0.5
      material: center

  - Sphere:
      pos:
        data: [ -1.0, 0.0, -1.0 ]
      radius: 0.5
      material: left

  - Sphere:
      pos:
        data: [ -1.0, 0.0, -1.0 ]
      radius: -0.4
      material: left

  - Sphere:
      pos:
        data: [ 1.0, 0.0, -1.0 ]
      radius: -0.5
      material: right