<div dir="ltr">Yes you can render the vertices using cell coloring but it is a bit odd. Let me jump back a bit.<div><br></div><div>The sphere source produces triangles as cells. So the cell data will be one color per triangle. The sphere source does not produce any cells that are verts. The triangles have vertices which we can render but in VTKs terminology they are not cells. The EdgeVisibility and VertexVisibility makes the edges and vertices of cells visible but they themselves are not cells, so no cell coloring.</div><div><br></div><div>Another way to see the issue is that a triangle consists of three vertices.  Those vertices in turn are shared by typically 6 triangles each with their own cell color. So there is no clear mapping of triangle cell color to shared vertices, we have to use a cell to point filter or something like that.</div><div><br></div><div>So how would you get cell data showing up on vertices? Well you need to create verts as cells. SphereSource produces cells that are triangles.  But you can use the GlyphFilter on any dataset with points to convert those points into verts as follows.</div><div><br></div><div>sphereSource ss</div><div><br></div><div>// optionally if you have cell data on the triangles you can do a CellToPoint filter</div><div>// to convert that to point data suitable for the next glyph filter.</div><div><br></div><div>glyph3dFilter glyph</div><div>glyphSource2d gs</div><div>gs->SetGlyphTypeToVertex()</div><div>glyph->SetInputConnection(ss->GetOutputPort())</div><div>glyph->SetSource(gs->GetOutputPort());</div><div><br></div><div>// add cell data in here for the verts, one entry per vert</div><div><br></div><div>mapper->SetInputConnection(glyph->GetOutputPort());</div><div>mapper->RenderPointsAsSpheres()</div><div>// Keep vertex visibility off</div><div><br></div><div>If you want the surface and the verts then add another mapper for the surface</div><div>ala</div><div><br></div><div>mapper2->SetInputConnection(ss->GetOutputPort());</div><div> </div><div>Hope that helps!</div><div>Thanks</div><div>Ken</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Nov 9, 2016 at 2:20 PM, lp <span dir="ltr"><<a href="mailto:lotterluke@gmail.com" target="_blank">lotterluke@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I am playing around with the new feature in vtk7.1 to render edges and<br>
vertices as tubes and spheres (as described in<br>
<a href="https://blog.kitware.com/rendering-tubes-and-spheres-in-vtk/" rel="noreferrer" target="_blank">https://blog.kitware.com/<wbr>rendering-tubes-and-spheres-<wbr>in-vtk/</a>).<br>
<br>
This is a very nice feature, but I have found one issue: When the mapper is<br>
set to color by cellData (mapper-><wbr>SetScalarModeToUseCellData()), only the<br>
edges are shown as tubes but the spheres at the vertices are not rendered.<br>
For SetScalarModeToUsePointData it works as expected (both, tubes and<br>
spheres are rendered).<br>
<br>
So my question: Is it possible to show the vertex spheres, when coloring by<br>
cellData?<br>
<br>
Example code (based on VTK Sphere example) attached.<br>
<br>
Regards,<br>
Lukas<br>
<br>
CMakeLists.txt<br>
<<a href="http://vtk.1045678.n5.nabble.com/file/n5741121/CMakeLists.txt" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.<wbr>com/file/n5741121/CMakeLists.<wbr>txt</a>><br>
Sphere.cxx <<a href="http://vtk.1045678.n5.nabble.com/file/n5741121/Sphere.cxx" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.<wbr>com/file/n5741121/Sphere.cxx</a>><br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/VTK7-1-render-points-as-spheres-does-not-work-when-coloring-by-cell-data-tp5741121.html" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.<wbr>com/VTK7-1-render-points-as-<wbr>spheres-does-not-work-when-<wbr>coloring-by-cell-data-<wbr>tp5741121.html</a><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<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 VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_<wbr>FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/vtkusers</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">Ken Martin PhD<div>Chairman & CFO<br>Kitware Inc.<br>28 Corporate Drive<br>Clifton Park NY 12065<br>518 371 3971<div><br></div><div><span style="font-size:10pt;font-family:Tahoma,sans-serif">This communication,
including all attachments, contains confidential and legally privileged
information, and it is intended only for the use of the addressee.  Access to this email by anyone else is
unauthorized. If you are not the intended recipient, any disclosure, copying,
distribution or any action taken in reliance on it is prohibited and may be
unlawful. If you received this communication in error please notify us
immediately and destroy the original message. 
Thank you.</span></div></div></div>
</div>