/* * povray +q9 +a0.02 -I$< -d -W1152 -H900 */ #version 3.7; global_settings { ambient_light rgb <0.07, 0.07, 0.07> assumed_gamma 1.0 } /* system includes */ #include "colors.inc" /* ------------------------------------------------------ */ #local K = 2; #macro Borne(Interp) box { <-K, -0.01, -K>, } pigment { image_map { png "pixart.png" interpolate Interp } rotate 90*x translate <0.5, 0, 0.5> scale } #end /* ------------------------------------------------------ */ #local EC = 2.10; #local HH = 0.10; object { Borne(2) translate <-EC, HH, -EC> } object { Borne(3) translate < EC, HH, -EC> } object { Borne(4) translate <-EC, HH, EC> } light_source { <-100, 100, 70> color White } plane { <0, 1, 0>, 0 pigment { color MidnightBlue } } /* ------------------------------------------------------ */ #local AngleCam = 42; camera { location <0, 14, -6> look_at <0, 0.1, 0> right x*image_width/image_height angle AngleCam }