From 7f03bc7561904a0bfd2a8d85044d9477304d29ed Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Thu, 12 Mar 2020 20:38:29 +0800 Subject: [PATCH] dedup --- src/pixel/px_cylinder.scad | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pixel/px_cylinder.scad b/src/pixel/px_cylinder.scad index 9a0a7f76..80e5b3db 100644 --- a/src/pixel/px_cylinder.scad +++ b/src/pixel/px_cylinder.scad @@ -9,6 +9,7 @@ **/ use ; +use ; function px_cylinder(r, h, filled = false, thickness = 1) = - _px_cylinder_impl(r, h, filled, thickness); \ No newline at end of file + dedup(_px_cylinder_impl(r, h, filled, thickness)); \ No newline at end of file