PopufareHousingSides.scad 566 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 <PopufareHousingSideLeft.scad>
  10. include <PopufareHousingSideRight.scad>
  11. module PopufareHousingSidesPlate() {
  12. translate([-30,-40,0])
  13. rotate(-90, [0,0,1])
  14. PopufareHousingSideLeftPlate();
  15. translate([30,40,0])
  16. rotate(90, [0,0,1])
  17. PopufareHousingSideRightPlate();
  18. }
  19. PopufareHousingSidesPlate();