render-all.scad 661 B

12345678910111213141516171819202122
  1. // License: CC0
  2. //
  3. // To the extent possible under law, Clementine Computing LLC has waived
  4. // all copyright and related or neighboring rights to this file.
  5. //
  6. // This work is published from: United States.
  7. //
  8. include <PopufareHousingCommon.scad>
  9. include <PopufarePowerAdapterTop.scad>
  10. include <PopufarePowerAdapterBottom.scad>
  11. include <PopufarePowerAdapterMiddle.scad>
  12. include <PopufarePowerAdapterMiddleSupport.scad>
  13. module render() {
  14. PopufarePowerAdapterTopPlate();
  15. translate([70,0]) PopufarePowerAdapterBottomPlate();
  16. translate([140,0]) PopufarePowerAdapterMiddlePlate();
  17. translate([70*3,0]) PopufarePowerAdapterMiddleSupportPlate();
  18. }
  19. render();