Chains and Meshes
by kitwallace
22
Downloads
12
Likes
0
Makes
The simple undulating link created by the function
function f(t,h=height) =
[ cos(t), sin(t), h x sin(2*t)];
can be connected in a matrix to form a chain or mesh. The OpenSCAD code previews quite quickly but rendering is slow because each link added has to be checked for intersection with all the others, leading an O(N^2) performance.
Most chains I've seen use flat links but this curved link allows a flatter and uniform mesh because the link works bidirectionally. Some chain ma
function f(t,h=height) =
[ cos(t), sin(t), h x sin(2*t)];
can be connected in a matrix to form a chain or mesh. The OpenSCAD code previews quite quickly but rendering is slow because each link added has to be checked for intersection with all the others, leading an O(N^2) performance.
Most chains I've seen use flat links but this curved link allows a flatter and uniform mesh because the link works bidirectionally. Some chain ma
Sign in to leave a comment
Sign in