Hi;
 
I was playing with line drawing, drawing a box where each line was a different thickness. So I did:
 
moveTo (start)
for each line:
    setLineWidth()
    lineTo()
    stroke()
 
What was real interesting is that Acrobat did a line join for each connection except the end of the final line to the start of the first line. I am assuming that Acrobat will join to lines if the end of one line is the same location of the next line (which makes sense). But is there anyway to get it to join the end of the fourth line to the begining of the first line? I can't do a closePath() because the line width changes on each segment.
 
thanks - dave

Reply via email to