Path: utzoo!mnetor!uunet!lll-winken!lll-lcc!ames!umd5!uvaarpa!mcnc!decvax!savax!elrond!kearns From: kearns@elrond.CalComp.COM (Arlene S. Kearns) Newsgroups: comp.windows.x Subject: mizerlines.c dy > dx Message-ID: <2099@elrond.CalComp.COM> Date: 7 Apr 88 14:17:46 GMT Organization: Calcomp, A Lockheed Company, Hudson, NH, USA Lines: 25 Keywords: mizerlines.c dy > dx Has anyone noticed a problem with mizerline.c If dy is greater than dx the first scan line is not stored in pspans, and if therefore not draw. This is probably a bug that has already been corrected but I guess we missed the correction. Where should this be posted? I have X11R2, the same code existed in X11R1. I added to my server the line: *pspan = pt1; immediately after the line: /* Y_AXIS */ I also changed the lines (about 12 lines down) from: y += signdy; pspan->x = x; pspan++->y = y; *pwidth++ = 1; to: y += signdy; pspan++; pspan->x = x; pspan->y = y; *pwidth++ = 1;