(&mut self, shape: &impl Shape)
| 73 | } |
| 74 | |
| 75 | pub fn stroke(&mut self, shape: &impl Shape) { |
| 76 | self.scene.stroke( |
| 77 | &self.stroke_style, |
| 78 | self.current_transform(), |
| 79 | &self.stroke_brush, |
| 80 | None, |
| 81 | shape, |
| 82 | ); |
| 83 | } |
| 84 | |
| 85 | pub fn set_fill_brush(&mut self, fill_brush: Brush) { |
| 86 | self.fill_brush = fill_brush; |
no test coverage detected