You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an unwanted blemish on the default circle shape. line start and end points overlap.
package main
import (
"github.com/fogleman/gg"
)
funcmain() {
d:=gg.NewContext(200, 200)
d.SetHexColor("000")
d.Clear()
d.SetHexColor("FFF")
d.DrawCircle(100, 100, 50)
// d.SetLineCapButt() <- this should be the default style and belong to the circle.d.Stroke()
d.SavePNG("canvas.png")
}
The text was updated successfully, but these errors were encountered:
setanarut
changed the title
The end point of closed polylines with line thickness 1 looks bad.
The start-end point of lines with line thickness less than three is drawn incorrectly
Sep 23, 2023
setanarut
changed the title
The start-end point of lines with line thickness less than three is drawn incorrectly
Wrong line Cap style for closed shapes.
Oct 3, 2023
There is an unwanted blemish on the default circle shape. line start and end points overlap.
The text was updated successfully, but these errors were encountered: