I have been able to wite a code which can produce a 3D contour plot if a spherical gyroid. Now I need to add a thickness to the gyroid. I also want to know how to export the 3D drawing to other software like Netfabb or Inventer so that I can do a 3D printing of the object I obtained.
This was the code I was given by one of the experts here.
r = 10 Pi;
ContourPlot3D[
Sin[x] Cos[y] + Sin[y] Cos[z] + Sin[z] Cos[x] == 0,
{x, -r, r}, {y, -r, r}, {z, -r, r},
RegionFunction -> ({x, y, z} \[Function] x^2 + y^2 + z^2 <= r^2),
Mesh -> None]
I really need to do a 3D printing of this. I in urgent need of assistance. Please help me.

