enable icon indicating copy to clipboard operation
enable copied to clipboard

Agg backend doesn't draw line to arc start point

Open corranwebster opened this issue 3 years ago • 0 comments

Given:

x, y = 100, 100
gc.begin_path()
gc.move_to(x - 12, y - 12)
gc.arc(x, y, 12.0, 0.0, np.pi)
gc.line_to(x - 12, y - 12)
gc.draw_path()

Compare Agg: image vs. Quartz: image

From the documentation: https://github.com/enthought/enable/blob/bb2c358248ef72c03d62b2563985f01e1dad6977/kiva/basecore2d.py#L607-L609

corranwebster avatar Jul 23 '22 13:07 corranwebster