<div dir="ltr">Randy,<div><br></div><div>Try setting a name on the array with</div><div><br></div><div><span style="font-size:12.8px">scalars.SetName('array_name')</span><br></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">This should let you select this array as the color array in ParaView.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">- Cory</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Oct 11, 2017 at 9:48 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">I create the following in the Pgmable Source in PV, but cannot figure out how to color the resulting points or 3D glyphs using the scalar values. What am I missing?<br>
-Randy<br>
<br>
# Get a vtk.PolyData object for the output<br>
pdo = self.GetPolyDataOutput()<br>
<br>
# Create points<br>
num_pts = 3<br>
newPts = vtk.vtkPoints()<br>
scalars = vtk.vtkFloatArray()<br>
<br>
xval = -1.0<br>
for idx in range(0, num_pts):<br>
  # rf. PhysiCell User Guide for these array indices to a cell's position.<br>
  x = xval<br>
  y = 0.0<br>
  z = 0.0<br>
  newPts.InsertPoint(idx, x,y,z)<br>
  sval = xval*2<br>
  scalars.InsertNextValue(sval)<br>
  xval += 1.0<br>
<br>
# Add the points to the vtkPolyData object.<br>
pdo.SetPoints(newPts)<br>
pdo.GetPointData().SetScalars(<wbr>scalars)<br>
<br>
verts = vtk.vtkCellArray()<br>
for idx in range(0, num_pts):<br>
  verts.InsertNextCell(1)<br>
  verts.InsertCellPoint(idx)<br>
<br>
pdo.SetVerts(verts)<br>
<br>
<br>
<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><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">Cory Quammen<br>Staff R&D Engineer<br>Kitware, Inc.</div>
</div>