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. Will display-lists ever be supported, or do they cause trouble?<br>
<br>2) In this set of code from vtkPointSpriteMapper.cpp line 1522 <br> int Np = points->GetNumberOfPoints();<br> int Nc = input->GetVerts()->GetNumberOfCells();<br> if (this->IgnoreVertexCells || Nc==0 || Nc==Np) {<br>
RenderFlags |= VTK_PSM_USE_POINTS;<br> }<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? 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>