Versions in this module Expand all Collapse all v0 v0.7.2 Oct 26, 2025 v0.7.0 Aug 8, 2025 Changes in this version + func EncodeBmp(pixelData []float64, w, h int, filepath string) + type Bitmap struct + Height int + Pixels []float64 + Width int + func NewBitmap(w, h int) *Bitmap + func (c *Bitmap) Clear(r, g, b float64) + func (c *Bitmap) GetPixel(x, y int) (float64, float64, float64) + func (c *Bitmap) SaveImage(filename string) + func (c *Bitmap) SetPixel(x, y int, r, g, b float64) + func (c *Bitmap) SetPixelGray(x, y int, val float64)