(x: f64, y: f64, size: f64)
| 81 | } |
| 82 | |
| 83 | pub fn empty_circle_world(x: f64, y: f64, size: f64) -> Self { |
| 84 | Self::new_world(x, y, size) |
| 85 | } |
| 86 | |
| 87 | pub fn square_world(x: f64, y: f64, size: f64) -> Self { |
| 88 | Self::new_world(x, y, size) |
nothing calls this directly
no outgoing calls
no test coverage detected