I have some code which takes a number of points generated by an iterated function and plots a cuboid. Is there a way to have these cuboids exported in an .stl file fit to 3D print? Here is the line which creates the cuboids.
Graphics3D[
Map[ {Hue[.5], EdgeForm[Thickness[0]], Opacity[.75],
Cuboid[(#), (# + {ht, ht, ht})]} &, test ], Axes -> True]
Many thanks!