Skip to content

Commit

Permalink
vgimg: translate to gg arc end point concept
Browse files Browse the repository at this point in the history
  • Loading branch information
kortschak committed Feb 20, 2019
1 parent af8bb81 commit 4af6152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vg/vgimg/vgimg.go
Expand Up @@ -258,7 +258,7 @@ func (c *Canvas) outline(p vg.Path) {
case vg.ArcComp:
c.ctx.DrawArc(comp.Pos.X.Dots(c.DPI()), comp.Pos.Y.Dots(c.DPI()),
comp.Radius.Dots(c.DPI()),
comp.Start, comp.Angle,
comp.Start, comp.Start+comp.Angle,
)

case vg.CurveComp:
Expand Down

0 comments on commit 4af6152

Please sign in to comment.