Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

13 řádky
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. }