(size: f32)
| 184 | } |
| 185 | |
| 186 | pub fn circle(size: f32) -> Self { |
| 187 | Self { |
| 188 | size: Size::Pixels(size), |
| 189 | marker_type: MarkerType::FilledCircle, |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | pub fn ring(size: f32) -> Self { |
| 194 | Self { |
nothing calls this directly
no outgoing calls
no test coverage detected