symbol for BAT54C common cathode diode pair
[hw/altusmetrum] / packages / diodes / 2125.5c
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.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 load "../footprint.5c"
19 import Footprint;
20
21 real    total_width=2.4;
22 real    total_height=1.25;
23 real    pad_width=0.6;
24 real    pad_height = total_height;
25 real    pad_center_x = total_width / 2 - pad_width / 2;
26
27 element_start("2125");
28 pad_mm(-pad_center_x, 0, pad_width, pad_height, "1", "1");
29 pad_mm(pad_center_x, 0, pad_width, pad_height, "2", "2");
30
31 real    line_left = -pad_center_x - 0.5;
32 real    line_right = -pad_center_x - pad_width / 2 - .3;
33 real    line_top = 0 - pad_height / 2 - .3;
34
35 line(line_left, line_top, line_right, line_top);
36 line(line_right, line_top, line_right, -line_top);
37 line(line_right, -line_top, line_left, -line_top);
38      
39 element_end();