<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Nov 7, 2016 at 9:00 AM, Christian Gabriel <span dir="ltr"><<a href="mailto:cgabriel@matrix-solutions.com" target="_blank">cgabriel@matrix-solutions.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">





<div lang="EN-CA">
<div class="gmail-m_-8726871604631545636WordSection1">
<p class="MsoNormal">Good day.<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">I found this <a href="http://www.paraview.org/Wiki/VTK/Examples/Python/GeometricObjects/Display/Cell3DDemonstration" target="_blank">
example code</a>:<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    # Create the points<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    points = vtk.vtkPoints()<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    points.InsertNextPoint(0.0, 0.0, 0.0)<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    points.InsertNextPoint(1.0, 0.0, 0.0)<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    points.InsertNextPoint(1.0, 1.0, 0.0)<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    points.InsertNextPoint(0.0, 1.0, 0.0)<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    … … …</span><span style="font-size:10pt;font-family:"courier new""><u></u><u></u></span></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal"><span>which had me wonder if there is a way to assign data in a vectorized fashion instead of point by point?<u></u><u></u></span></p>
<p class="MsoNormal"><span><u></u> <u></u></span></p>
<p class="MsoNormal"><span>Let’s say I can read in 3 1D arrays (vectors) with X, Y, Z data or one 2D array (matrix, dataframe) with the same data in columns, is there a way to assign that data to the points all at once instead
 of iteratively?<u></u><u></u></span></p>
<p class="MsoNormal"><span><u></u> <u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    points = vtk.vtkPoints()<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN" style="font-size:10pt;font-family:"courier new"">    points.InsertNextPoint(X, Y, Z)    - just saying; this is obviously not correct!<u></u><u></u></span></p>
<p class="MsoNormal"><span lang="EN"><u></u> <u></u></span></p>
<p class="MsoNormal"><span>Obviously, any data could be combined and reshaped first to whatever format required ….<u></u><u></u></span></p>
<p class="MsoNormal"><span><u></u> <u></u></span></p>
<p class="MsoNormal"><span>Given that ParaView/VTK was designed to work with (very) large data sets I’d be surprised if there were no vectorized operations implemented.</span></p></div></div></blockquote><div><br></div><div>In C++, there are a number of ways to do this by modifying the data array directly (instead of going through the vtkPoints interface). You can extract the data array from the points by calling points.GetData(). You can also create a points array separately and assign it to the vtkPoints instance by calling points.SetData(myArray).</div><div><br></div><div>There are two types of arrays in VTK, AoS (Array-of-Structs, the default used for e.g. vtkFloatArray, etc), and SoA (Struct-of-Arrays, still somewhat experimental at this point):</div><div><br></div><div>These doxygen pages describe the specific APIs for them:</div><div><br></div><div><a href="http://www.vtk.org/doc/nightly/html/classvtkAOSDataArrayTemplate.html">http://www.vtk.org/doc/nightly/html/classvtkAOSDataArrayTemplate.html</a><br></div><div><a href="http://www.vtk.org/doc/nightly/html/classvtkSOADataArrayTemplate.html">http://www.vtk.org/doc/nightly/html/classvtkSOADataArrayTemplate.html</a><br></div><div><br></div><div>There are several ways to do low-level copying of data using methods like AoS::SetArray, SoA::SetComponentArray, AoS::GetPointer, SoA::GetComponentArrayPointer, etc, which will allow you to set the array's memory buffer explicitly, or just get low-level access to it for for modifications.</div><div><br></div><div>However, I'm not sure how much of this is exposed in the python/numpy layers, so it might take some experimentation. Hopefully someone more familiar with the python bindings will chime in.</div><div><br></div><div>HTH,</div><div>Dave</div></div></div></div>