Set the line width in either logical pixels or world units.
(mut self, width: impl Into<Size>)
| 72 | |
| 73 | /// Set the line width in either logical pixels or world units. |
| 74 | pub fn with_width(mut self, width: impl Into<Size>) -> Self { |
| 75 | self.width = width.into(); |
| 76 | self |
| 77 | } |
| 78 | |
| 79 | /// Set the line width in logical pixels. |
| 80 | pub fn with_pixel_width(mut self, width: f32) -> Self { |
no outgoing calls
no test coverage detected