User:Mimarx/sandbox/templates/

Code - car_with_lengthened_body.scad
 scale([1.2,1,1]) {
     // Car body base
     cube([60,20,10],center=true);
     // Car body top
     translate([5,0,10 - 0.001])
         cube([30,20,10],center=true);
 }