submission.scad 399 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Animation setup:
  3. * FPS: 30
  4. * Steps: 100
  5. */
  6. include <../config/pot.scad>
  7. include <../config/top.scad>
  8. include <../assets/bottom.scad>
  9. include <../assets/top.scad>
  10. bottom_object();
  11. top_position
  12. = single_pot_size.z
  13. + pot_wall_thickness
  14. + top_wall_thickness;
  15. $fn = 20;
  16. translate([0, 0, top_position + top_position * (1 - $t)]) {
  17. rotate([180, 0, 0]) {
  18. top_object();
  19. }
  20. }