automated snapshot

This commit is contained in:
sumi
2025-12-20 01:51:28 -06:00
parent b89137415c
commit c8229f02d0
4 changed files with 169 additions and 83 deletions

View File

@@ -1,8 +1,8 @@
package main
import (
"math"
"github.com/gen2brain/raylib-go/raylib"
"math"
)
func clamp01(v float32) float32 {
@@ -27,4 +27,3 @@ func Brightness(c rl.Color) float32 {
b := float32(c.B) / 255
return 0.2126*r + 0.7152*g + 0.0722*b
}