I am not quite aware of 3D file formats which I can export from Mathematica; I have the following problem.
I have a very large 3D list plot (with axes labs, plot legends etc..) from my experiment. Since the file is very large, Mathematica often gets stuck, so I am thinking of converting this 3D model to another format so that I can save as separate 3D file such as .X3D or .VRML (not quite sure about these format).
The exported 3D model should retain the following features after conversion:
- It should retain the axes label, ticks and all the details
- It must be easy to get the data points from those curves
- It should be 3D rotatable
So could anyone tell me in which format I should convert and how I may do that?
Import[Export["test." <> #, Plot3D[Sin[x], {x, -10, 10}, {y, -10, 10}]]] & /@ {"dxf", "obj", "3ds", "stl", "lwo", "ply"}to verify this. – Jason B. Feb 17 '16 at 09:36{{x1,y1,z1},{x2,y2,z2}....}(a list of tuples), then it can be very slow if that list is large. In your case you have 201 thousand tuples for one plot. But if you take that list and make an interpolation function from it, it will plot relatively quickly. Or if you rearrange it into an array of z values, it will also plot relatively quickly. Those are the two methods I show above. – Jason B. Mar 02 '16 at 11:41