IMDraw: change default point color to (1, 1, 1, 1) (was (0, 0, 0, 0))

This commit is contained in:
faiface 2017-05-06 22:57:55 +02:00
parent f7dad2f3c2
commit 29785fb937
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ func (imd *IMDraw) Clear() {
func (imd *IMDraw) Reset() {
imd.points = nil
imd.opts = point{}
imd.Color(pixel.Alpha(1))
imd.Precision(64)
}