(self)
| 79 | }) |
| 80 | |
| 81 | def apply_laser_etch_style(self): |
| 82 | # Set fill and stroke for laser etching |
| 83 | for path in self.svg_node.getElementsByTagName('path'): |
| 84 | SvgProcessor._apply_attributes(path, { |
| 85 | 'fill': '#000000', |
| 86 | 'stroke': 'none', |
| 87 | }) |
| 88 | |
| 89 | def apply_raster_render_style(self): |
| 90 | # Set fill and stroke for rasterized rendering |
no test coverage detected