Grid: make buf and blur private

This commit is contained in:
Simon Gardling 2025-03-27 14:40:19 -04:00
parent a8fc644d6c
commit 985fb73042
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D

View File

@ -46,9 +46,9 @@ pub struct Grid {
pub data: Vec<f32>,
// Scratch space for the blur operation.
// pub buf: Vec<f32>,
pub buf: Buf,
pub blur: Blur,
buf: Buf,
blur: Blur,
pub agents: Vec<Agent>,
}