missing commas

This commit is contained in:
potassium 2024-05-01 16:05:20 +03:00
parent 303bd59901
commit b4a0a68a1c

View File

@ -91,31 +91,31 @@ func (p pair) At(x, y int) color.Color {
)
case Up:
draw.Draw(
rgbaImg, rgbaImg.Bounds()
rgbaImg, rgbaImg.Bounds(),
p.first,
image.ZP, draw.Src
image.ZP, draw.Src,
)
draw.Draw(
rgbaImg, p.Bounds(),
p.second,
image.Point{
0,
p.first.Bounds().Dy()
p.first.Bounds().Dy(),
},
draw.Src,
)
case Down:
draw.Draw(
rgbaImg, rgbaImg.Bounds()
rgbaImg, rgbaImg.Bounds(),
p.second,
image.ZP, draw.Src
image.ZP, draw.Src,
)
draw.Draw(
rgbaImg, p.Bounds(),
p.first,
image.Point{
0,
p.second.Bounds().Dy()
p.second.Bounds().Dy(),
},
draw.Src,
)