1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-05 22:37:35 +02:00

It doesn't require dedup

This commit is contained in:
Justin Lin
2020-06-05 09:51:22 +08:00
parent 4d721db8f8
commit 4e99b24dd9

View File

@@ -9,9 +9,6 @@
**/ **/
use <_impl/_vx_cylinder_impl.scad>; use <_impl/_vx_cylinder_impl.scad>;
use <../util/sort.scad>;
use <../util/dedup.scad>;
function vx_cylinder(r, h, filled = false, thickness = 1) = function vx_cylinder(r, h, filled = false, thickness = 1) =
let(all = _vx_cylinder_impl(r, h, filled, thickness)) _vx_cylinder_impl(r, h, filled, thickness);
dedup(sort(all, by = "vt"), sorted = true);