automated snapshot

This commit is contained in:
sumi
2025-12-18 01:03:41 -06:00
parent 6b64903be7
commit f3d0570f3f

View File

@@ -163,14 +163,14 @@ type ContourSketch struct {
func NewContourSketch(rng *rand.Rand, field Field) ContourSketch {
actors := make([]*Actor, 1000)
actors := make([]*Actor, 2000)
for i := range len(actors) {
actors[i] =
&Actor {
position: RandRadialVec(rng, 0, 500, 0, 360),
field: field,
stepSize: 0.5,
color: rl.NewColor(11, 35, 176, 170),
color: rl.NewColor(11, 35, 176, 100),
}
}