Glad to help!
For export try:
s3D = ContourPlot3D[
clebsch[x, y, z] == 0, {x, y, z} \[Element] Ball[{0, 0, 0}, 1],
PlotTheme -> "ThickSurface", Axes -> False, Boxed -> False,
PlotPoints -> 50, RegionBoundaryStyle -> None]
Printout3D[Graphics3D[s3D[[1, 1]]], RegionSize -> Quantity[10, "Centimeters"]]
This will throw some error messages, but it seems to work, though! I have no idea on how to adjust the wall thickness.
Using s3D[[1, 1]]
instead of simply s3D
(i.e. extracting GraphicsComplex
) was the only workaround I could find to make it work on MMA V12.1 - the new introduced RegionBoundaryStyle
seems to be the problem (at least for me ("12.1.0 for Linux x86 (64-bit) (March 14, 2020)")).
Addendum: Case reported [CASE:4546899]