From 9cedca1fea6b2977b6c9f9ad583c29a3831d96dc Mon Sep 17 00:00:00 2001 From: tth Date: Wed, 16 Feb 2022 14:25:43 +0100 Subject: [PATCH] cosmetic changes --- BloubWorld/scene.pov | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/BloubWorld/scene.pov b/BloubWorld/scene.pov index 85ea7cf..f3ec78d 100644 --- a/BloubWorld/scene.pov +++ b/BloubWorld/scene.pov @@ -5,7 +5,7 @@ #version 3.7; global_settings { - ambient_light rgb <0.12, 0.01, 0.01> + ambient_light rgb <0.12, 0.04, 0.04> assumed_gamma 1.0 } @@ -37,21 +37,34 @@ plane { // ---------------------------------------------------------- -#declare BH = 5; -#declare BV = 5; -#declare BR = 0.025; +#declare BH = 5; // H = taille en horizontal +#declare BV = 5; // V = taille en vertical +#declare BR = 0.028; #declare Une_Borne = object { -union { +merge { cylinder { <0, 0, 0>, <0, BV, 0>, BR } - cylinder { <0, 0, 0>, <0, 0.02, 0>, BR*6 } + cylinder { <0, 0, 0>, <0, 0.04, 0>, BR*6 } } } +#declare Cadre_Haut = object +{ +merge { + cylinder { <-BH, 0, -BH>, <-BH, 0, BH>, BR } + cylinder { < BH, 0, -BH>, < BH, 0, BH>, BR } + cylinder { < BH, 0, -BH>, <-BH, 0, -BH>, BR } + cylinder { < BH, 0, BH>, <-BH, 0, BH>, BR } + } +pigment { color Gray50 } +} + #declare Les_Bornes = object { union { + object { Cadre_Haut translate y*(BV-0.05) } + 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 } }