Warning, /games/skladnik/src/images/floor_common.inc is written in an unsupported language. File is not indexed.

0001 // Pov-ray image source for Skladnik
0002 // SPDX-FileCopyrightText: 1998-1999  Anders Widell <awl@hem.passagen.se>
0003 
0004 #declare FloorColour = <114/255, 114/255, 114/255>;
0005 
0006 camera {
0007   orthographic
0008   location <0, 0, -50>
0009   look_at  <0, 0, 0>
0010   right    <1, 0, 0>
0011   up       <0, 1, 0>
0012 }
0013 
0014 light_source { <-5000, 10000, -10000> color rgb <1, 1, 1> }
0015 light_source { <-5000, 10000, -10000> color rgb <1, 1, 1> }
0016 
0017 plane { -z, -2
0018   pigment { color rgb FloorColour }
0019 }