real lilhole = mils1002mm(4600);
real copper = mils1002mm(2500);
+real package_width = 17.8;
+real package_height = 10.0;
+
element_start("fuse3568");
+real corner(int dx, int dy) {
+ real x = dx * package_width / 2;
+ real y = dy * package_height / 2;
+ real len = 2.5;
+
+ line(x, y, x - dx * len, y);
+ line(x, y, x, y - dy * len);
+}
+
+corner(-1, -1);
+corner(1, -1);
+corner(-1, 1);
+corner(1, 1);
+
pin_mm(-hspace/2, -vspace/2, bighole, copper, "1", "1");
pin_mm(-hspace/2, vspace/2, lilhole, copper, "1", "1");