enowars5-service-stldoctor

STL-Analyzing A/D Service for ENOWARS5 in 2021
git clone https://git.sinitax.com/sinitax/enowars5-service-stldoctor
Log | Files | Refs | README | LICENSE | sfeed.txt

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]);