Hi all, and especially John Biddiscombe,<br><br>I am starting to work with vtkPointSpriteMapper, and would like to ask a few questions:<br><br>1) More curiousity than anything else: It looks like you have disabled display-lists, and it only works in ImmediateMode rendering.&nbsp; Will display-lists ever be supported, or do they cause trouble?<br>

<br>2) In this set of code from vtkPointSpriteMapper.cpp line 1522&nbsp; <br>&nbsp; int Np = points-&gt;GetNumberOfPoints();<br>&nbsp; int Nc = input-&gt;GetVerts()-&gt;GetNumberOfCells();<br>&nbsp; if (this-&gt;IgnoreVertexCells || Nc==0 || Nc==Np) {<br>
&nbsp;&nbsp;&nbsp; RenderFlags |= VTK_PSM_USE_POINTS;<br>&nbsp; }<br><br>Why does the if() include the test for Nc == 0<br>What if I have a static set of points+colours, and I want to plot none of them?&nbsp; I would like to just set the verticies to an empty cell array, but at the moment it looks like I have to disable or remove the actor from the renderer.<br>
<br>thanks,<br>Paul<br><br>