From a3ddaa64e488e88d193f381d95d4bc667152132e Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 7 Jul 2013 12:42:27 -0700 Subject: [PATCH] Flip MLP 4x3 package around Was drawn looking at the bottom rather than the top. Not so useful Signed-off-by: Keith Packard --- packages/mlp8-4x3.5c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); } -- 2.47.2