This commit is contained in:
2026-06-21 01:18:50 +03:00
parent afd438930e
commit 3b32bfa85f
20 changed files with 70 additions and 73 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ func (i Into) At(x, y int) color.Color {
r := image.Rect(x1, y1,
x1+i.Src.Bounds().Dx(), y1+i.Src.Bounds().Dy())
if (image.Point{x, y}).In(r) {
return i.Src.At(x-x1,y-y2)
return i.Src.At(x-x1, y-y2)
}
return i.Dst.At(x, y)
}