Sets the offset for where the dash pattern starts at the next stroke
(&mut self, offset: f32)
| 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)); } |
| 82 | |
| 83 | /// Sets the colour of the next fill() operation |
| 84 | fn fill_color(&mut self, col: Color) { self.draw(Draw::FillColor(col)); } |
no test coverage detected