Fortraneries/BloubWorld/scene.pov

60 lines
1.2 KiB
POVRay
Raw Normal View History

2022-02-06 23:45:08 +01:00
/*
* BLOUBSWORLD
* new Sun 06 Feb 2022 01:33:39 PM CET, rue Ernest Renan
*/
#version 3.7;
global_settings {
ambient_light rgb <0.02, 0.02, 0.09>
assumed_gamma 1.0
}
#include "colors.inc"
#include "bloubs.inc"
object {
Bloubs
texture {
pigment { color Gray50 }
finish { phong 0.58 metallic 0.45 }
}
}
plane {
<0, 1, 0>, 0
texture {
pigment { color Gray10 }
2022-02-07 01:50:49 +01:00
finish { phong 0.18 metallic 0.45 }
2022-02-06 23:45:08 +01:00
}
}
2022-02-07 01:50:49 +01:00
// ----------------------------------------------------------
#declare Les_Bornes = object
{
#declare BH = 5;
#declare BV = 3;
#declare BR = 0.02;
union {
cylinder { <-BH, 0, -BH>, <-BH, BV, -BH>, BR pigment { color Blue } }
cylinder { < BH, 0, -BH>, < BH, BV, -BH>, BR pigment { color Green } }
cylinder { <-BH, 0, BH>, <-BH, BV, BH>, BR pigment { color Green } }
cylinder { < BH, 0, BH>, < BH, BV, BH>, BR pigment { color Red } }
}
}
object { Les_Bornes }
// ----------------------------------------------------------
light_source { <4, 12, -11> color Gray80 }
light_source { <4, 9, 9> color White }
2022-02-06 23:45:08 +01:00
camera {
2022-02-07 01:50:49 +01:00
location <7, 5, -16>
2022-02-06 23:45:08 +01:00
look_at <0, 0, 0>
right x*image_width/image_height
2022-02-07 01:50:49 +01:00
angle 54
2022-02-06 23:45:08 +01:00
}