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

add px_polygon

This commit is contained in:
Justin Lin
2020-03-12 08:18:10 +08:00
parent a4db2b2072
commit 67ec1b91aa

View File

@@ -0,0 +1,31 @@
use <in_shape.scad>;
use <util/sort.scad>;
use <pixel/px_polyline.scad>;
use <experimental/dedup.scad>;
function px_polygon(points) =
let(
contour = dedup(px_polyline(concat(points, [points[0]]))),
sortedXY = sort(sort(contour, by = "x"), by = "y"),
ys = [for(p = sortedXY) p[1]],
rows = [
for(y = [min(ys):max(ys)])
let(
idxes = search(y, sortedXY, num_returns_per_match = 0, index_col_num = 1)
)
[for(i = idxes) sortedXY[i]]
]
)
dedup(
concat(
sortedXY,
[
for(row = rows)
let(to = len(row) - 1, y = row[0][1])
if(to > 0 && (row[0][0] + 1 != row[to][0]))
for(i = [row[0][0] + 1:row[to][0] - 1])
let(p = [i, y])
if(in_shape(points, p)) p
]
)
);