Hi<br> You need to add up the colors of the surrounding pixels and average it out.<br>So you'd do something like <br>PSET(x,y),(POINT(x,y)+POINT(x+1,y)+POINT(x-1,y)+POINT(x,y-1)+POINT(x,y+1))\5<br>for each pixel on the line, after you enter graphics mode.<br><br>If you want to see...