nasty bug added

This commit is contained in:
tth
2022-02-08 02:53:49 +01:00
parent a693302969
commit d84c6d969c
10 changed files with 152 additions and 39 deletions

View File

@@ -5,7 +5,7 @@
#version 3.7;
global_settings {
ambient_light rgb <0.02, 0.02, 0.09>
ambient_light rgb <0.09, 0.02, 0.02>
assumed_gamma 1.0
}
@@ -31,16 +31,25 @@ plane {
// ----------------------------------------------------------
#declare Les_Bornes = object
{
#declare BH = 5;
#declare BV = 3;
#declare BR = 0.02;
#declare BR = 0.025;
#declare Une_Borne = object
{
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 } }
cylinder { <0, 0, 0>, <0, BV, 0>, BR }
cylinder { <0, 0, 0>, <0, 0.03, 0>, BR*4 }
}
}
#declare Les_Bornes = object
{
union {
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 } }
}
}
@@ -49,7 +58,7 @@ object { Les_Bornes }
// ----------------------------------------------------------
light_source { <4, 12, -11> color Gray80 }
light_source { <4, 9, 9> color White }
// light_source { <4, 19, 9> color White }
camera {
location <7, 5, -16>