This commit is contained in:
2026-08-22 16:33:18 +02:00
commit a106a26277
14 changed files with 878 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package utils
import "image"
func GetCenter(x, y int) image.Point {
return image.Point{
X: x / 2,
Y: y / 2,
}
}