listen to this story

It’s exactly that: a paper taking the reader through the process of linking mathematics and 3D printing. Yes, this means generating intricate 3D models mathematically, instead of painstakingly developing them by hand.
The paper uses Wolfram’s Mathematica tool as the mathematics generator. To give you an idea of how it works, let’s look at their first generation, a dome:
1 surface =Plot3D[{Sqrt[1 – x^2 – y^2]}, {x, -1, 1}, {y, -1, 1},RegionFunction -> Function[{x, y, z}, x^2 + y^2 <= 1],BoxRatios -> Automatic]2 Export[“C:\Users\Owner\Desktop\hemisphere.stl”, surface]}
You’ll need a bit of algebraic knowledge to follow this, but basically a graph of points is created using a formula and then it is converted into an STL file for 3D printing.
Read More at Fabbaloo