From 44caaaa23005f28e69f97d657a12350b56ede849 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?charlotte=20=F0=9F=8C=B8?= Date: Sat, 26 Sep 2026 15:40:40 -0700 Subject: [PATCH] Test ci breaking changes. --- crates/processing_pyo3/examples/particles_noise.py | 2 +- crates/processing_pyo3/examples/primitives_2d.py | 2 +- examples/rectangle.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/processing_pyo3/examples/particles_noise.py b/crates/processing_pyo3/examples/particles_noise.py index ba2aa993..6b8c5cd3 100644 --- a/crates/processing_pyo3/examples/particles_noise.py +++ b/crates/processing_pyo3/examples/particles_noise.py @@ -42,7 +42,7 @@ def draw(): material(mat) particles(p, particle) - noise.set(scale=0.25, strength=0.02, time=elapsed_time * 0.5) + noise.set(scale=0.25, strength=0.025, time=elapsed_time * 0.5) p.apply(noise) diff --git a/crates/processing_pyo3/examples/primitives_2d.py b/crates/processing_pyo3/examples/primitives_2d.py index e6e7f277..adcb4bdf 100644 --- a/crates/processing_pyo3/examples/primitives_2d.py +++ b/crates/processing_pyo3/examples/primitives_2d.py @@ -29,7 +29,7 @@ def draw(): angle = t + i * 0.15 x = cx + r * cos(angle) y = cy + r * sin(angle) - fill(217, (0.3 + i / 24.0) * 255, 51) + fill(51, (0.3 + i / 24.0) * 255, 217) ellipse(x, y, 6, 6) fill(25, 25, 25, 38) diff --git a/examples/rectangle.rs b/examples/rectangle.rs index 1f75466c..3e0ee690 100644 --- a/examples/rectangle.rs +++ b/examples/rectangle.rs @@ -31,8 +31,8 @@ fn sketch() -> error::Result<()> { graphics_record_command( graphics, DrawCommand::Rect { - x: 10.0, - y: 10.0, + x: 60.0, + y: 40.0, w: 100.0, h: 100.0, radii: [0.0, 0.0, 0.0, 0.0],