switch to stock shield from fotofab
[hw/altusmetrum] / packages / fotofab2x3.5c
1 /*
2  * Copyright © 2013 Bdale Garbee <bdale@gag.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 /*
19  * This is a footprint for a stock fotofab shield that is 2 x 3 inches.
20  */
21
22 load "footprint.5c";
23 import Footprint;
24
25 real pad_width = 2.00;          /* mm */
26 real shield_width = 76.20;
27 real shield_height = 50.80;
28
29 element_start("fotofab2x3");
30
31 pad_mm(shield_width/2, 0, pad_width, shield_height+pad_width, "1", "1");
32 pad_mm(-shield_width/2, 0, pad_width, shield_height+pad_width, "1", "1");
33 pad_mm(0, shield_height/2, shield_width+pad_width, pad_width, "1", "1");
34 pad_mm(0, -shield_height/2, shield_width+pad_width, pad_width, "1", "1");
35
36 element_end();
37