symbol for BAT54C common cathode diode pair
[hw/altusmetrum] / packages / sot323.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 pad_width = 0.9;
22 real pad_height = 0.7;
23 real pad_spacing = 0.65;
24
25 real package_width = 1.25;
26 real package_height = 2;
27
28 real pad_x_off = 1.9 / 2;
29
30 real num_pad = 3;
31
32 element_start("sot323");
33
34 real pad_off(int n) {
35         return pad_spacing * (n - (num_pad - 1) / 2);
36 }
37
38 real corner(int dx, int dy) {
39         real    x = dx * package_width / 2;
40         real    y = dy * package_height / 2;
41         real    len = 0.4;
42
43         line(x, y, x - dx * len, y);
44         line(x, y, x, y - dy * len);
45 }
46
47 corner(-1, -1);
48 corner(1, -1);
49 corner(-1, 1);
50 corner(1, 1);
51
52 real dot_off = -.3;
53
54 line(-package_width/2 + dot_off, -package_height/2 + dot_off,
55      -package_width/2 + dot_off, -package_height/2 + dot_off);
56
57 pad_mm(-pad_x_off,
58        -pad_spacing,
59        pad_width,
60        pad_height,
61        "1", "1");
62
63 pad_mm(-pad_x_off,
64        pad_spacing,
65        pad_width,
66        pad_height,
67        "2", "2");
68
69 pad_mm(pad_x_off,
70        0,
71        pad_width,
72        pad_height,
73        "3", "3");
74
75 element_end();