Export graphics to Mathematica with texture

Hi guys, I have a problem with Mathematica 8.0.

When I export my Graphics3D to 3DS or any other format, the textures are always missing. For example, in the attached screenshot, Screen shot , you will see that I created a plane, textured it and exported it to 3DS, and then when I imported it, there was no texture.

Is there a way to export while maintaining the texture? Thanks.

+7
source share
1 answer

If you add Elements, you will see what Mathematica imports:

In[1]:= Import[test.3ds", "Elements"] Out[1]:= {Graphics3D, GraphicsComplex, PolygonColors, PolygonData, PolygonObjects, VertexData} 

This means that many things are discarded in imports. Things like frames, textures, reliefs, camera, etc.

Texture file names are in 3DS format and are not included in Mathematica notebooks.

+1
source

All Articles