Adds a dash of the specified length to the dash pattern (alternating between drawing and gap lengths)
(&mut self, length: f32)
| 76 | |
| 77 | /// Adds a dash of the specified length to the dash pattern (alternating between drawing and gap lengths) |
| 78 | fn dash_length(&mut self, length: f32) { self.draw(Draw::DashLength(length)); } |
| 79 | |
| 80 | /// Sets the offset for where the dash pattern starts at the next stroke |
| 81 | fn dash_offset(&mut self, offset: f32) { self.draw(Draw::DashOffset(offset)); } |
no test coverage detected