1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 01:34:12 +02:00

add px_union

This commit is contained in:
Justin Lin
2020-03-14 17:33:12 +08:00
parent 608d888a47
commit 033e2024a5

View File

@@ -0,0 +1,8 @@
use <util/sort.scad>;
use <util/dedup.scad>;
function px_union(points1, points2) =
dedup(
sort(concat(points1, points2), by = "vt"),
sorted = true
);