refactor: plotter, generator

This commit is contained in:
Ilia Denisov
2025-09-12 21:32:50 +03:00
parent d3b00b5c8d
commit 05999687aa
11 changed files with 262 additions and 140 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ package bitmap
import "slices"
func (p bitmap) value() []uint32 {
func (p Bitmap) value() []uint32 {
return slices.Clone(p.bitVector)
}
var Value = (bitmap).value
var Value = (Bitmap).value