Set the line width in world units.
(mut self, width: f64)
| 68 | |
| 69 | /// Set the line width in world units. |
| 70 | pub fn with_width_world(mut self, width: f64) -> Self { |
| 71 | self.line_style.width = Size::World(width.max(f64::EPSILON)); |
| 72 | self |
| 73 | } |
| 74 | |
| 75 | /// Set the line style. |
| 76 | pub fn with_style(mut self, style: LineStyle) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected