(size: f64, marker_type: MarkerType)
| 177 | } |
| 178 | |
| 179 | pub fn new_world(size: f64, marker_type: MarkerType) -> Self { |
| 180 | Self { |
| 181 | size: Size::World(size), |
| 182 | marker_type, |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | pub fn circle(size: f32) -> Self { |
| 187 | Self { |
nothing calls this directly
no outgoing calls
no test coverage detected