example004.scad 101 B

1234567891011
  1. module example004()
  2. {
  3. difference() {
  4. cube(30, center = true);
  5. sphere(20);
  6. }
  7. }
  8. example004();