Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

13 wiersze
237B

  1. radius = 5;
  2. depth = 2;
  3. diff_h = (pow(radius,2)/depth - depth)/2;
  4. diff_radius = (pow(radius,2)/depth - depth)/2 + depth;
  5. difference(){
  6. translate([0,0,0])
  7. cylinder(r=radius,h=depth);
  8. translate([0,0,diff_radius])
  9. sphere(r=diff_radius);
  10. }