(&mut self, shape: &impl Shape)
| 97 | } |
| 98 | |
| 99 | pub fn stroked_fill(&mut self, shape: &impl Shape) { |
| 100 | self.fill(shape); |
| 101 | self.stroke(shape); |
| 102 | } |
| 103 | |
| 104 | pub fn blurred(&mut self, rounded_rect: RoundedRect, std_dev: f64) { |
| 105 | if let Brush::Solid(color) = self.fill_brush { |