// paramètres mot = "#Hélène, OpenScad, c'est la vie" ;//rentrez votre mot ici size=15; projection(cut = false){ // fonction pour obtenir un SVG translate([0,0,-0.5]){ linear_extrude(height = 1, center=false,convexity = 1, twist= 0){ text(mot, font = "Calibri", size = size, halign = "center"); } } //base du socle translate([0,-8,0]){ difference(){ cube([300,20,1],center=true); translate([-125,-10,0]){ cube([6,21,2],center=true); } translate([125,-10,0]){ cube([6,21,2],center=true); } } } //texte en supplément pour le marquage, à placer sous inkscape translate([0,-80,-0.5]){ linear_extrude(height = 1, center=false,convexity = 1, twist= 0){ text(mot, font = "Calibri", size = size, halign = "center"); } } }