I'm trying to plot a (2D) mesh in wireframe mode and then on top of that 
plot a single element in yellow with a script in python with ParaView 
3.4.  My thought was to use the threshold plot, but it seems not to plot 
anything but blank.  This is what I've gotten so far.  Any ideas?  Also, 
is there any good reference material out there for ParaView's python API?
<br>
<br>   # load mesh and create a view
<br>   if not ActiveConnection:
<br>       connection = Connect()
<br>   exo = sources.ExodusIIReader(FileName=&#39;mesh.e&#39;)
<br>   exo.UpdatePipelineInformation()
<br>   view = CreateRenderView()   

<br>   # now make a threshold with GlobalElementId and plot element 10
<br>   elementID = 10
<br>   tf = filters.Threshold(Input=exo, 
ThresholdBetween=[elementID,elementID],SelectInputScalars=[&quot;GlobalElementId&quot;])
<br>   tf.UpdatePipeline()
<br>   rep = CreateRepresentation(exo, view)
<br>   rep.Representation = 1 # 1=wireframe
<br>   view.ResetCamera()
<br>   view.StillRender()<div><br></div><div><br></div><div>Thanks,<br>Jay</div>