mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 22:28:16 +01:00
61 lines
1.8 KiB
OpenSCAD
61 lines
1.8 KiB
OpenSCAD
include <hull_polyline2d.scad>;
|
|
include <pixel/px_from.scad>;
|
|
include <pixel/px_ascii.scad>;
|
|
|
|
tx = "3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172";
|
|
|
|
pts = [for(p = px_spiral(1, floor(sqrt(len(tx))) + 1)) p * 8];
|
|
linear_extrude(2)
|
|
for(i = [0:len(tx) - 1]) {
|
|
translate(pts[i]) difference() {
|
|
square(7, center = true);
|
|
render() for(p = px_ascii(tx[i], center = true)) {
|
|
translate(p) square(.8);
|
|
}
|
|
}
|
|
}
|
|
|
|
linear_extrude(1) {
|
|
for(i = [0:len(tx) - 1]) {
|
|
translate(pts[i])
|
|
square(7, center = true);
|
|
}
|
|
hull_polyline2d([for(i = [0:len(tx) - 1]) pts[i]], width = 2);
|
|
}
|
|
|
|
function _px_spiral_forward(pt, leng, dir, clockwise) =
|
|
let(
|
|
DIRS = clockwise ? [
|
|
[1, 0],
|
|
[0, -1],
|
|
[-1, 0],
|
|
[0, 1]
|
|
]
|
|
: [
|
|
[1, 0],
|
|
[0, 1],
|
|
[-1, 0],
|
|
[0, -1]
|
|
]
|
|
)
|
|
pt + DIRS[dir] * leng;
|
|
|
|
function _px_spiral_go_turn(from, leng, max_leng, clockwise, dir) =
|
|
let(
|
|
range = [1:leng],
|
|
pts = [for(i = range) _px_spiral_forward(from, i, dir % 4, clockwise)],
|
|
ps = pts[len(pts) - 1],
|
|
pts2 = [for(i = range) _px_spiral_forward(ps, i, (dir + 1) % 4, clockwise)],
|
|
pd = pts2[len(pts2) - 1]
|
|
)
|
|
concat(pts, pts2, _px_spiral(pd, leng + 1, max_leng, clockwise, dir + 2));
|
|
|
|
function _px_spiral(from, leng, max_leng, clockwise, dir) =
|
|
leng > max_leng ? [] : _px_spiral_go_turn(from, leng, max_leng, clockwise, dir);
|
|
|
|
function px_spiral(init_leng, max_leng, clockwise = false) =
|
|
let(
|
|
org = [0, 0]
|
|
)
|
|
concat([org], _px_spiral(org, init_leng, max_leng, clockwise, 0));
|