From 3e7b6863e5442059c52928e1454934f4e6b6cf2a Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Tue, 16 Jul 2002 09:57:00 +0000 Subject: [PATCH] * sea/src/DEF_drive.c : - fprintWIRESEG() : Tient compte de la largeur des segments quant il ne sont pas a la largeur minimale. Jusqu'a present, seuls les segments de type STRIPE ou SPECIAL NET avaient leurs largeurs reelles prise en compte. --- alliance/src/sea/src/DEF_drive.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alliance/src/sea/src/DEF_drive.c b/alliance/src/sea/src/DEF_drive.c index a86f1ed6..76e22e73 100644 --- a/alliance/src/sea/src/DEF_drive.c +++ b/alliance/src/sea/src/DEF_drive.c @@ -1,5 +1,5 @@ /* - * $Id: DEF_drive.c,v 1.1 2002/04/25 16:16:20 jpc Exp $ + * $Id: DEF_drive.c,v 1.2 2002/07/16 09:57:00 jpc Exp $ * * /----------------------------------------------------------------\ * | | @@ -1342,7 +1342,7 @@ static void fprintWIRESEG(apPhseg, aFlags) { fprintf (DEF_FILE, "%s ", DEF_layer2a (apPhseg->LAYER)); - if (aFlags & F_SEG_WIDTH) + if ((aFlags & F_SEG_WIDTH) || (apPhseg->WIDTH > MBKSCALE(2))) fprintf (DEF_FILE, "%ld ", MBK2DEF_length (apPhseg->WIDTH)); if (aFlags & F_SEG_STRIPE)