1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-16 13:50:05 +01:00

update doc

This commit is contained in:
Justin Lin 2022-07-22 10:42:20 +08:00
parent 11f9a5b58a
commit 505e514075

View File

@ -13,6 +13,8 @@ Eliminating duplicate copies of repeating vectors.
## Examples
use <util/dedup.scad>
eq = function(e1, e2) e1[0] == e2[0] && e1[1] == e2[1] && e1[2] == e2[2];
points = [[1, 1, 2], [3, 4, 2], [7, 2, 2], [3, 4, 2], [1, 2, 3]];