Set the line width in pixels.
(mut self, width: f32)
| 62 | |
| 63 | /// Set the line width in pixels. |
| 64 | pub fn with_width(mut self, width: f32) -> Self { |
| 65 | self.line_style.width = Size::Pixels(width.max(0.5)); |
| 66 | self |
| 67 | } |
| 68 | |
| 69 | /// Set the line width in world units. |
| 70 | pub fn with_width_world(mut self, width: f64) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected