| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- * Copyright (c) 2019 Clementine Computing LLC.
- *
- * This file is part of PopuFare.
- *
- * PopuFare is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * PopuFare is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with PopuFare. If not, see <https://www.gnu.org/licenses/>.
- *
- */
- $fs = 1.0/64.0;
- // in mm
- //
- POPUFARE_HOUSING_WIDTH = 200;
- //POPUFARE_HOUSING_DEPTH = 150;
- POPUFARE_HOUSING_DEPTH = 180;
- //POPUFARE_HOUSING_HEIGHT = 150;
- POPUFARE_HOUSING_HEIGHT = 150;
- POPUFARE_GLAND_DIAMETER = 31.5;
- POPUFARE_SCREEN_WIDTH = 118;
- POPUFARE_SCREEN_HEIGHT = 70;
- //POPUFARE_FRONT_HEIGHT = 35;
- POPUFARE_FRONT_HEIGHT = 60;
- POPUFARE_FIXTURE_DX = 42.5;
- POPUFARE_FIXTURE_DY = 42.5;
- POPUFARE_BRACKET_CX = 20;
- POPUFARE_BRACKET_D = 5;
- POPUFARE_BRACKET_DS = 100;
- POPUFARE_BRACKET_DE = 40;
- // ...
- //
- _MATERIAL_THICKNESS = 1.0/8.0;
- _M2 = 2.0;
- _M2r = 2.0/2;
- _M3 = 3.0;
- _M3r = 3.0/2;
- _M4 = 4.0;
- _M4r = 4.0/2;
- _M5 = 5.0;
- _M5r = 5.0/2;
|