Set the line width in logical pixels.
(mut self, width: f32)
| 78 | |
| 79 | /// Set the line width in logical pixels. |
| 80 | pub fn with_pixel_width(mut self, width: f32) -> Self { |
| 81 | self.width = Size::Pixels(width); |
| 82 | self |
| 83 | } |
| 84 | |
| 85 | /// Set the line width in world units. |
| 86 | pub fn with_world_width(mut self, width: f64) -> Self { |
no outgoing calls
no test coverage detected