;

; Library of Babel
; by Fogus
;

(world (shading gourad flat)
(camera (position 100 100 20) (lookat 0 0 20))
(lights
(light (type model) (ambient 0.5 0.5 0.5 1.0))
(light (type directional)
(ambient 0.5 0.5 0.5 1.0)
(diffuse 1.0 1.0 1.0 1.0)
(specular 1.0 1.0 1.0 1.0)
(position 0.0 0.0 1.0 1.0)
)
; Also allows point light
)

(object (name cube1) (type cube)
(scale 40 40 40)
(translate 0 40 100)
(material
(ambience 0.8 0.8 0.2 1.0)
(diffusity 0.1 0.5 0.8 1.0)
(specularity 1.0 1.0 1.0 1.0)
(emission 0 0 0 1)
(shininess 1.0)
}
)
)




-m