| 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 <PopufarePowerAdapterTop.scad>
- include <PopufarePowerAdapterBottom.scad>
- include <PopufarePowerAdapterMiddle.scad>
- include <PopufarePowerAdapterMiddleSupport.scad>
- module render() {
- PopufarePowerAdapterTopPlate();
- translate([70,0]) PopufarePowerAdapterBottomPlate();
- translate([140,0]) PopufarePowerAdapterMiddlePlate();
- translate([70*3,0]) PopufarePowerAdapterMiddleSupportPlate();
- }
- render();
|