| 12345678910111213141516171819202122 |
- // License: CC0
- //
- // To the extent possible under law, Clementine Computing LLC has waived
- // all copyright and related or neighboring rights to this file.
- //
- // This work is published from: United States.
- //
- include <PopufareHousingCommon.scad>
- include <PopufareHousingSideLeft.scad>
- include <PopufareHousingSideRight.scad>
- module PopufareHousingSidesPlate() {
- translate([-30,-40,0])
- rotate(-90, [0,0,1])
- PopufareHousingSideLeftPlate();
- translate([30,40,0])
- rotate(90, [0,0,1])
- PopufareHousingSideRightPlate();
- }
- PopufareHousingSidesPlate();
|