PopufareHousingCommon.scad 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 2019 Clementine Computing LLC.
  3. *
  4. * This file is part of PopuFare.
  5. *
  6. * PopuFare is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * PopuFare is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with PopuFare. If not, see <https://www.gnu.org/licenses/>.
  18. *
  19. */
  20. $fs = 1.0/64.0;
  21. // in mm
  22. //
  23. POPUFARE_HOUSING_WIDTH = 200;
  24. //POPUFARE_HOUSING_DEPTH = 150;
  25. POPUFARE_HOUSING_DEPTH = 180;
  26. //POPUFARE_HOUSING_HEIGHT = 150;
  27. POPUFARE_HOUSING_HEIGHT = 150;
  28. POPUFARE_GLAND_DIAMETER = 31.5;
  29. POPUFARE_SCREEN_WIDTH = 118;
  30. POPUFARE_SCREEN_HEIGHT = 70;
  31. //POPUFARE_FRONT_HEIGHT = 35;
  32. POPUFARE_FRONT_HEIGHT = 60;
  33. POPUFARE_FIXTURE_DX = 42.5;
  34. POPUFARE_FIXTURE_DY = 42.5;
  35. POPUFARE_BRACKET_CX = 20;
  36. POPUFARE_BRACKET_D = 5;
  37. POPUFARE_BRACKET_DS = 100;
  38. POPUFARE_BRACKET_DE = 40;
  39. // ...
  40. //
  41. _MATERIAL_THICKNESS = 1.0/8.0;
  42. _M2 = 2.0;
  43. _M2r = 2.0/2;
  44. _M3 = 3.0;
  45. _M3r = 3.0/2;
  46. _M4 = 4.0;
  47. _M4r = 4.0/2;
  48. _M5 = 5.0;
  49. _M5r = 5.0/2;