Warning, /games/skladnik/src/images/stone_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 #include "colors.inc"
0005 #include "stones.inc"
0006
0007 #declare StoneTexture = T_Stone8
0008
0009 background { color rgb <0, 0, 0> }
0010
0011 light_source {
0012 <-1000000/3, 1000000/3, -1000000> color rgb <0.625, 0.625, 0.625>
0013 }
0014 light_source {
0015 <-1000000/3, 1000000/3, -1000000> color rgb <0.625, 0.625, 0.625>
0016 }
0017
0018 #declare Stone = object {
0019 superellipsoid {
0020 <1/3, 1/3>
0021
0022 scale <1/2, 1/4, 1/4>
0023 }
0024 }
0025
0026 #declare HalfStone = object {
0027 superellipsoid {
0028 <1/2, 1/3>
0029
0030 scale <1/4, 1/4, 1/4>
0031 }
0032 }