From e844a3f001083b29ffd75fd39257781b7204e048 Mon Sep 17 00:00:00 2001 From: erg Date: Sat, 26 Feb 2005 23:07:17 +0000 Subject: [PATCH] Fix bug 492 - this also involved changing the 2 *_inside functions to accept a NULL edge, in which case checking is done for the node shape with no reference to ports. --- lib/dotgen/sameport.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/dotgen/sameport.c b/lib/dotgen/sameport.c index 170500e11..e3aa24718 100644 --- a/lib/dotgen/sameport.c +++ b/lib/dotgen/sameport.c @@ -148,7 +148,7 @@ static void sameport(node_t * u, elist * l, double arr_len) curve[3].x = ROUND(x2); curve[3].y = ROUND(y2); - shape_clip(u, curve, l->list[0]); + shape_clip(u, curve, 0); x1 = curve[0].x - ND_coord_i(u).x; y1 = curve[0].y - ND_coord_i(u).y; } @@ -163,12 +163,14 @@ static void sameport(node_t * u, elist * l, double arr_len) prt.defined = TRUE; prt.clip = 0; prt.theta = 0; + prt.side = 0; /* compute ARR_PORT at a distance ARR_LEN away from the boundary */ if ((arr_prt.defined = arr_len && TRUE)) { arr_prt.p.x = ROUND(x1 + x * arr_len); arr_prt.p.y = ROUND(y1 + y * arr_len); arr_prt.bp = 0; + arr_prt.side = 0; arr_prt.constrained = FALSE; arr_prt.order = (MC_SCALE * (ND_lw_i(u) + arr_prt.p.x)) / (ND_lw_i(u) + -- 2.40.0