(x: f64, y: f64, size: f32)
| 41 | |
| 42 | impl Point { |
| 43 | pub fn new(x: f64, y: f64, size: f32) -> Self { |
| 44 | Self { |
| 45 | position: [x, y], |
| 46 | size, |
| 47 | size_mode: MARKER_SIZE_PIXELS, |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | pub fn new_world(x: f64, y: f64, size: f64) -> Self { |
| 52 | Self { |
nothing calls this directly
no outgoing calls
no test coverage detected