Set the line width in world units.
(mut self, width: f64)
| 84 | |
| 85 | /// Set the line width in world units. |
| 86 | pub fn with_world_width(mut self, width: f64) -> Self { |
| 87 | self.width = Size::World(width); |
| 88 | self |
| 89 | } |
| 90 | |
| 91 | /// Set the line type while preserving the current width. |
| 92 | pub fn with_line_type(mut self, line_type: LineType) -> Self { |