************************************************************************ #declare Support_Lampe_Boule = object { #local H_SLB = 2.70; // hauteur totale #local L_SLB = 1.60; // largeur, ecart des deux jambes #local R_SLB = 0.03; // rayon du tube merge { cylinder { 0, y*H_SLB, R_SLB translate -x*L_SLB } cone { 0, 0.20, 0.16*y, 0.15 translate -x*L_SLB } cylinder { 0, y*H_SLB, R_SLB translate x*L_SLB } cone { 0, 0.20, 0.16*y, 0.15 translate x*L_SLB } difference { torus { L_SLB, R_SLB } box { <-5, -1, -5>, <5, 1, 0> } rotate x*270 translate y*H_SLB } } // pigment { color Gray80 } } ************************************************************************