| 12345678910111213141516171819202122232425262728293031323334 |
- // 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>
- module PopufareHousingSideLeftPlate() {
- w = POPUFARE_HOUSING_DEPTH;
- h = POPUFARE_HOUSING_HEIGHT;
- dh = POPUFARE_HOUSING_HEIGHT - POPUFARE_FRONT_HEIGHT;
- alen = dh*sqrt(2.0);
- w_right = w - dh;
- lip = 0;
- difference() {
- union() {
- square([w,h], center=true);
- }
- // chop off angle
- //
- translate([-w/2,-(h/2-POPUFARE_FRONT_HEIGHT)]) rotate(45, [0,0,1]) square([4*w,4*w]);
- }
- }
- //PopufareHousingSideLeftPlate();
|