the aliasing svg renderer
Diffstat (limited to 'src/render.rs')
-rw-r--r--src/render.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/render.rs b/src/render.rs
index db6c1c3..bca39b5 100644
--- a/src/render.rs
+++ b/src/render.rs
@@ -50,13 +50,6 @@ fn render(node: &Node, img: &mut Image<Box<[u8]>, 4>) {
..
// TODO: stroek
}) => img.points(&point(path), color.col(*opacity)),
- Node::Group {
- ..
- } => {
- // for child in &**children {
- // render(child, img);
- // }
- }
t => unimplemented!("{t:?}"),
}
}