This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

🚨 Fix examples

+2 -2
+1 -1
examples/dna-analysis-machine/src/main.rs
··· 39 39 let red_dot = Object::BigCircle( 40 40 Region::from_topright(draw_in.topright().translated(-3, 1), (4, 3)) 41 41 .unwrap() 42 - .random_point(), 42 + .random_point(&mut rand::rng()), 43 43 ) 44 44 .colored(Color::Red) 45 45 .filtered(Filter::glow(5.0));
+1 -1
examples/schedule-hell/src/main.rs
··· 194 194 let object_name = format!("{}", ctx.ms); 195 195 layer.set_object( 196 196 &object_name, 197 - Object::Dot(world.resized(-1, -1).random_point()) 197 + Object::Dot(world.resized(-1, -1).random_point(&mut ctx.extra.rng)) 198 198 .colored(Color::Cyan), 199 199 ); 200 200