You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
398B

  1. $fn = $preview? 32 : 72;
  2. module marker(col) {
  3. translate([0,0,7]) {
  4. color(col) scale([4,4,14]) sphere(d=1);
  5. color(col) cylinder(h=15, d1=7,d2=13);
  6. translate([0,0,15]){
  7. color(col) cylinder(h=11, d=13);
  8. translate([0,0,11]) {
  9. cylinder(h=97, d=14.5);
  10. translate([0,0,97]) {
  11. color(col) cylinder(h=4, d=13);
  12. }
  13. }
  14. }
  15. }
  16. }
  17. marker("red");