MathGroup Archive 2013

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: fyi, making animation into PDF file from images genenerated by Mathematica

  • To: mathgroup at smc.vnet.net
  • Subject: [mg131060] Re: fyi, making animation into PDF file from images genenerated by Mathematica
  • From: RBaillie <bobbaillie at frii.com>
  • Date: Thu, 6 Jun 2013 23:18:48 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-outx@smc.vnet.net
  • Delivered-to: mathgroup-newsendx@smc.vnet.net
  • References: <20130605073041.F3FB66A71@smc.vnet.net> <koprk2$chl$1@smc.vnet.net>

Nice!

You can also create a pdf file with a 3D object that you can
interactively rotate with your mouse.

Here's how. First, create the Mathematica object:

superSphere = ContourPlot3D[x^4 + y^4 + z^4 == 1,
 {x, -1, 1}, {y, -1, 1}, {z, -1, 1}, Mesh->False];
Export["C:\\junk\\supersphere.x3d", superSphere]

Second, import the x3d file into the free software MeshLab, then
export it as a u3d file.

Third, use the media 9 LaTeX package to import the u3d file into pdf:

\usepackage[english]{babel}
\usepackage{media9}

\includemedia[
 width=0.9\linewidth, height=0.9\linewidth,
 activate=pageopen,
 3Dmenu,
 3Daac=60.0, 3Droll=0.0, 3Dc2c=10.0 -3.0 10.0,
 3Droo=3.0, 3Dcoo=0.0 0.0 0.0,
 3Dlights=CAD, % display object without artificial colors
 %3Dlights=Primary, % colorize monochrome objects with R, G, B lights
 3Drender=SolidWireframe
]{}
{supersphere.u3d}

Note: if the object looks inside out, you will have to go back into
MeshLab and reverse the object's normals, then re-export it.



  • Prev by Date: Re: Adding value to some elements of a list
  • Next by Date: Re: fyi, making animation into PDF file from images genenerated by Mathematica
  • Previous by thread: Re: fyi, making animation into PDF file from images genenerated by Mathematica
  • Next by thread: Re: fyi, making animation into PDF file from images genenerated by Mathematica