flag.scad (228B)
1$fn = 20; 2 3thickness = 1; 4 5pole_height = 30; 6 7flag_height = 5; 8flag_width = 10; 9 10cylinder(h = pole_height, r = thickness / 2); 11translate([0, -thickness/2, pole_height - flag_height]) 12 cube([flag_width, thickness, flag_height]);