From: Keith Packard Date: Sun, 7 Jul 2013 19:42:27 +0000 (-0700) Subject: Flip MLP 4x3 package around X-Git-Tag: telelco-v3.0~869 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=a3ddaa64e488e88d193f381d95d4bc667152132e;p=hw%2Faltusmetrum Flip MLP 4x3 package around Was drawn looking at the bottom rather than the top. Not so useful Signed-off-by: Keith Packard --- diff --git a/packages/mlp8-4x3.5c b/packages/mlp8-4x3.5c index a00f536..153e66c 100644 --- a/packages/mlp8-4x3.5c +++ b/packages/mlp8-4x3.5c @@ -75,17 +75,17 @@ corner(1, 1); real dot_off = -.3; -line(-package_width/2 + dot_off, -package_height/2 + dot_off, - -package_width/2 + dot_off, -package_height/2 + dot_off); +line(-package_width/2 + dot_off, package_height/2 - dot_off, + -package_width/2 + dot_off, package_height/2 - dot_off); for (pad = 0; pad < num_pad; pad++) { /* top (1-4) */ - pad_top (pad_off_x(pad), -package_height / 2, pad + 1); + pad_top (pad_off_x(pad), package_height / 2, pad + 1); /* bottom (8-5) */ - pad_bottom (pad_off_x(pad), package_height / 2, 8 - pad); + pad_bottom (pad_off_x(pad), -package_height / 2, 8 - pad); }