Holodisk model from the Fallout and Fallout 2 games.
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.
 
 

26 wiersze
745 B

  1. // dependency: https://github.com/revarbat/BOSL
  2. use <BOSL/transforms.scad>
  3. module tape(start, end, height = tape_height, thickness = tape_thickness) {
  4. color("RosyBrown")
  5. up(thickness) hull() {
  6. translate(start) sphere(thickness);
  7. translate(end) sphere(thickness);
  8. up(height - thickness) {
  9. translate(start) sphere(thickness);
  10. translate(end) sphere(thickness);
  11. }
  12. }
  13. }
  14. module tape_spool(r_in, r_out, height = tape_height, thickness = tape_thickness) {
  15. color("RosyBrown")
  16. up(thickness) minkowski() {
  17. difference() {
  18. cylinder(h=height - thickness, r=r_out);
  19. cylinder(h=height - thickness, r=r_in);
  20. }
  21. sphere(thickness);
  22. }
  23. }