// Jam test file. // Use a file like this to test your Jam files as you work with them. // #version 3 #declare jamfile = "test.jam" // substitute your file name here #include "colors.inc" global_settings { assumed_gamma 1.0 } // ---------------------------------------- camera { location <0.0, 1.0, -4.0> look_at <0.0, 0.0, 0.0> } sky_sphere { pigment { gradient y color_map { [0.0 color blue 0.6] [1.0 color rgb 1] } } } light_source { <-30, 30, -30> color White } light_source { <10, 30, -30> color White*0.5 } #declare test = #include jamfile object { test scale 0.03 pigment {Flesh} }