From 038394f2eb0711efc4cda9be84e063760681fc4e Mon Sep 17 00:00:00 2001 From: Andy Killorin <37423245+Speedy6451@users.noreply.github.com> Date: Mon, 6 Nov 2023 13:26:35 -0600 Subject: [PATCH] removed dead code --- src/main.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/main.rs b/src/main.rs index b71e361..f95aa34 100644 --- a/src/main.rs +++ b/src/main.rs @@ -227,14 +227,6 @@ impl Construct { } } - /// A construct with no parts - fn cosmetic(visualization: ScadObject) -> Self { - Construct { - visualization, - parts: Vec::new(), - } - } - /// Convert to tuple /// (visualization, parts) fn tup(self) -> (ScadObject, Vec) { @@ -335,6 +327,7 @@ fn wing( enum SparType { /// No spar, just struts + #[allow(unused)] None, /// Spar along the top of the wing Top,