1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02:00

add pnoise_counter_demo

This commit is contained in:
Justin Lin
2020-03-08 10:08:02 +08:00
parent 61d2706fd3
commit cd82a67fb3

View File

@@ -0,0 +1,15 @@
use <hull_polyline2d.scad>;
use <experimental/pnoise_contour.scad>;
for(y = [0:2:4]) {
for(x = [0:2:4]) {
hull_polyline2d(pnoise_contour(x, y, noise = 0.025, steps = 200), width = .1, $fn = 4);
}
}
translate([10, 0])
for(y = [0:2:4]) {
for(x = [0:2:4]) {
hull_polyline2d(pnoise_contour(x, y, steps = 100), width = .05, $fn = 4);
}
}