Page 1 of 1

stroke-linejoin and arc/ellipse draw failure

Posted: 2011-05-23T21:32:26-07:00
by anthony
There appears to be a bug in 'arc' in that it is drawing the 'straight chord' if you enable
stroke-linejoin round
If stroke-linejoin is not given the ellipse correctly does not draw the enclosing chord

The same thing is happening for 'ellipse'

Example

Code: Select all

 convert -size 150x150 xc:none -fill none -stroke white -strokewidth 5 \
             -draw "stroke-linejoin round arc 10,10 130,130 60,150" \
             show:
or

Code: Select all

 convert -size 150x150 xc:none -fill none -stroke white -strokewidth 5 \
             -draw "stroke-linejoin round ellipse 70,70 60,60 60,150" \
             show: