<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>Dear mailing list members,</div>

<div> </div>

<div>I have some trouble exporting a scene to a X3D file via pvpython.</div>

<div>I tried to execute to code found in http://public.kitware.com/pipermail/paraview/2012-May/024924.html</div>

<div>(see below). It is executed without any errors, but no output file is created.</div>

<div>My Paraview version is 4.0.1 64-bit (on a Ubuntu 14.04 machine).</div>

<div>What I want to achieve is to convert .ply files to .x3d via pvpython.</div>

<div>Could someone give me a hint?</div>

<div> </div>

<div>Thanks in advance,</div>

<div>Michael</div>

<div> </div>

<div>from paraview.simple import *<br/>
exporters=servermanager.createModule("exporters")<br/>
source=Cone()<br/>
view = GetActiveView()<br/>
Show(view)<br/>
render=Render()<br/>
x3dExporter=exporters.X3DExporter(FileName="foo.x3d")<br/>
x3dExporter.SetView(view)<br/>
x3dExporter.Write()</div>

<div> </div>

<div> </div></div></body></html>