Calibrationtest.scad 412 B

1234567891011
  1. $fn=60;
  2. difference() {
  3. cube(20, center=true);
  4. sphere(d=19);
  5. rotate([0,0,0]) cylinder(d=15, h=30, center=true);
  6. rotate([0,90,0]) cylinder(d=15, h=30, center=true);
  7. rotate([90,0,0]) cylinder(d=15, h=30, center=true);
  8. translate([0,-10,0]) rotate([0,45,0]) translate([0,0,20]) cube([40,1,40], center=true);
  9. translate([10,00,0]) rotate([45,0,0]) translate([0,0,20]) cube([1,40,40], center=true);
  10. }