Rename variable

This commit is contained in:
Hanno Braun 2022-03-18 15:36:55 +01:00
parent baf7dde08e
commit 3a5441fff8

View File

@ -141,8 +141,8 @@ fn main() -> anyhow::Result<()> {
let now = Instant::now(); let now = Instant::now();
if let Some(shape) = watcher.receive() { if let Some(new_shape) = watcher.receive() {
let new_shape = shape_processor.process(&shape); let new_shape = shape_processor.process(&new_shape);
new_shape.update_geometry(&mut renderer); new_shape.update_geometry(&mut renderer);
if camera.is_none() { if camera.is_none() {