(x: f64, y: f64, size: f64)
| 49 | } |
| 50 | |
| 51 | pub fn new_world(x: f64, y: f64, size: f64) -> Self { |
| 52 | Self { |
| 53 | position: [x, y], |
| 54 | size: size as f32, |
| 55 | size_mode: MARKER_SIZE_WORLD, |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | pub fn filled_circle(x: f64, y: f64, size: f32) -> Self { |
| 60 | Self::new(x, y, size) |
nothing calls this directly
no outgoing calls
no test coverage detected