Fortraneries/BloubWorld/scene.pov

69 lines
1.3 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 {
2022-02-08 02:53:49 +01:00
ambient_light rgb <0.09, 0.02, 0.02>
2022-02-06 23:45:08 +01:00
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 BH = 5;
#declare BV = 3;
2022-02-08 02:53:49 +01:00
#declare BR = 0.025;
#declare Une_Borne = object
{
union {
cylinder { <0, 0, 0>, <0, BV, 0>, BR }
cylinder { <0, 0, 0>, <0, 0.03, 0>, BR*4 }
}
}
#declare Les_Bornes = object
{
2022-02-07 01:50:49 +01:00
union {
2022-02-08 02:53:49 +01:00
object { Une_Borne translate <-BH, 0, -BH> pigment { color Blue } }
object { Une_Borne translate < BH, 0, -BH> pigment { color Green } }
object { Une_Borne translate <-BH, 0, BH> pigment { color Green } }
object { Une_Borne translate < BH, 0, BH> pigment { color Red } }
2022-02-07 01:50:49 +01:00
}
}
object { Les_Bornes }
// ----------------------------------------------------------
light_source { <4, 12, -11> color Gray80 }
2022-02-08 02:53:49 +01:00
// light_source { <4, 19, 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
}