<div dir="ltr">Randy,<div><br></div><div>That's indeed a bug, I've reported the issue and the cause here: <a href="https://gitlab.kitware.com/paraview/paraview/issues/17802">https://gitlab.kitware.com/paraview/paraview/issues/17802</a></div><div><br></div><div>Utkarsh</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 26, 2017 at 8:38 PM, Heiland, Randy <span dir="ltr"><<a href="mailto:heiland@iu.edu" target="_blank">heiland@iu.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">I have a simple 2-point Pgmable Source (below) and render it 1) as 2D Glyphs/Vertex (with the nice OSPRay, and scaled spheres), and 2) as various 3D/geometric glyphs. Then I Export the scenes as POV files. Only the geometric (non 2D/Vertex) glyphs generate partially-meaningful POV output. However, there’s no color associated with the geometry. Thoughts?<div><br></div><div>The last related thread I saw was at:</div><div><div><a href="http://markmail.org/search/?q=ParaView+povray#query:ParaView%20povray%20order:date-backward+page:1+mid:6xiimz4cus55dwhh+state:results" target="_blank">http://markmail.org/search/?q=<wbr>ParaView+povray#query:<wbr>ParaView%20povray%20order%<wbr>3Adate-backward+page:1+mid:<wbr>6xiimz4cus55dwhh+state:results</a></div><div><br></div><div>-Randy</div><div><br>pdo = self.GetPolyDataOutput()<br>num_pts = 2<br>print "num_pts =",num_pts<br>newPts = vtk.vtkPoints()<br>cell_color_ID = vtk.<wbr>vtkFloatArray()<br>cell_radius = vtk.<wbr>vtkFloatArray()<br><br>cell_color_ID.SetName('cell_<wbr>color_ID')<br>cell_radius.SetName('cell_<wbr>radius')<br><br>newPts.InsertPoint(0, -1,0,0)<br>cell_color_ID.InsertNextValue(<wbr>1)<br>cell_radius.InsertNextValue(0.<wbr>5)<br><br>newPts.InsertPoint(1, 1,0,0)<br>cell_color_ID.InsertNextValue(<wbr>2)<br>cell_radius.InsertNextValue(0.<wbr>7)<br><br>pdo.SetPoints(newPts)<br>pdo.GetPointData().AddArray(<wbr>cell_color_ID)<br>pdo.GetPointData().AddArray(<wbr>cell_radius)<br><br>verts = vtk.vtkCellArray()<br>for idx in range(0, num_pts):<br>  verts.InsertNextCell(1)<br>  verts.InsertCellPoint(idx)<br>pdo.SetVerts(verts)<br><br></div></div></div><br>______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" rel="noreferrer" target="_blank">http://paraview.org/Wiki/<wbr>ParaView</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=ParaView" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/paraview" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/paraview</a><br>
<br></blockquote></div><br></div>