nasty bug added
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user