1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-24 15:22:53 +02:00

update demo

This commit is contained in:
Justin Lin
2020-03-22 17:23:28 +08:00
parent 90d09441df
commit 8610c18bf0

View File

@@ -113,9 +113,7 @@ points = [
for(z = [0:40:255]) {
for(row = marching_squares(points, z)) {
for(line = row) {
p0 = [line[0][0], line[0][1]];
p1 = [line[1][0], line[1][1]];
hull_polyline2d([p0, p1], width = .25);
hull_polyline2d(line, width = .25);
}
}
}