<div dir="ltr"><div><div>Ah, then you can skip the filter and directly make a vtkUnstructuredGrid containing only points and VTK_VERTEX cell that index them.<br><br></div>See section 3 of the users guide for details. Somewhere in your adaptor you will have something like the following:<br><br><br></div><div>output = vtk.vtkUnstructuredGrid()<br></div><div>pts = output.GetPoints()<br></div><div>cells = output.GetCells()<br></div><div>for i in particles.len():<br></div><div>  pids = [i]<br></div>  pts.InsertNextPoint(next_coordinate)<br><div>  cells.InsertNextCell(vtk.VTK_VERTEX, 1, pids)<br><br></div><div>When you get that working you will want to replace the inserts with direct memory references to the  possible.<br></div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature">David E DeMarle<br>Kitware, Inc.<br>R&D Engineer<br>21 Corporate Drive<br>Clifton Park, NY 12065-8662<br>Phone: 518-881-4909</div></div>
<br><div class="gmail_quote">On Fri, Jan 6, 2017 at 12:25 PM,  <span dir="ltr"><<a href="mailto:valenpe7@email.cz" target="_blank">valenpe7@email.cz</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>Hello,<div><br><div>thank you, but I mean how to pass these point data computed by a simulation code to ParaView in order to visualize them insitu. The Catalyst examples (<a href="https://gitlab.kitware.com/paraview/paraview/tree/master/Examples/Catalyst" target="_blank">https://gitlab.kitware.com/<wbr>paraview/paraview/tree/master/<wbr>Examples/Catalyst</a>) usually use some type of a grid and data are then attached onto it.</div><div><br></div><div>Cheers,</div><div><br></div><div>Petr Valenta</div><div><br></div><div><p>---------- Původní zpráva ----------<br>Od: David E DeMarle <<a href="mailto:dave.demarle@kitware.com" target="_blank">dave.demarle@kitware.com</a>><br>Komu: <a href="mailto:valenpe7@email.cz" target="_blank">valenpe7@email.cz</a><br>Datum: 6. 1. 2017 18:00:34<br>Předmět: Re: [Paraview] ParaView Catalyst: export point data</p><div><div class="h5"><br><blockquote><div dir="ltr">Glyph Filter, type=2D subtype=points will create 1D cells (VTK_POINTS type) for every point (those that are attached to cells and those that are not used by any cell). To get only those points that are not used by cells, you may need the programmable filter.<br><br></div><div><br clear="all"><div><div>David E DeMarle<br>Kitware, Inc.<br>R&D Engineer<br>21 Corporate Drive<br>Clifton Park, NY 12065-8662<br>Phone: <a href="tel:(518)%20881-4909" value="+15188814909" target="_blank">518-881-4909</a></div></div>
<br><div>On Fri, Jan 6, 2017 at 11:49 AM,  <span dir="ltr"><<a href="mailto:valenpe7@email.cz" target="_blank">valenpe7@email.cz</a>></span> wrote:<br><blockquote style="margin:0 0 0 0.8ex;border-left:1px #ccc solid;padding-left:1ex"><div>Hello,<div><br><div>is there any way how to export data using Catalyst which are not attached to any grid (like particles that are characterized only by the vector of their location)?  Thank you!</div><div><br></div><div>Petr Valenta</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/opensou<wbr>rce/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/ParaV<wbr>iew</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/mail<wbr>man/listinfo/paraview</a><br>
<br></blockquote></div><br></div>
</blockquote></div></div></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>