Polished wall generation, though work is needed good enough for main now

This commit is contained in:
grimsace
2026-03-11 12:43:41 -05:00
parent 580d7e9d4c
commit 8dc7546e09
6 changed files with 605 additions and 22 deletions
+6
View File
@@ -41,6 +41,12 @@ func (m *PixelMask) SetXY(x, y int) {
}
}
func (m *PixelMask) ClearXY(x, y int) {
if m.InBounds(x, y) {
m.Data[m.index(x, y)] = 0
}
}
func (m *PixelMask) GetPoint(p image.Point) bool {
return m.GetXY(p.X, p.Y)
}