Grid: make buf and blur private

This commit is contained in:
2025-03-27 14:40:19 -04:00
parent a8fc644d6c
commit 985fb73042

View File

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