(size: f32)
| 205 | } |
| 206 | |
| 207 | pub fn star(size: f32) -> Self { |
| 208 | Self { |
| 209 | size: Size::Pixels(size), |
| 210 | marker_type: MarkerType::Star, |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | pub fn triangle(size: f32) -> Self { |
| 215 | Self { |
nothing calls this directly
no outgoing calls
no test coverage detected