Hi Ambar,<div><br></div><div>There is a VTK class called vtkCollection that can hold an array of vtkObjects, but it has a poor user interface so I can&#39;t really recommend it.</div><div><br></div><div>Most people use a vector of smart pointers, like this:</div>

<div><br></div><div>vtkstd::vector&lt;vtkSmartPointer&lt;vtkPoints&gt; &gt; pointVector;</div><div><br></div><div>You can add to the vector like this:</div><div><br></div><div>points = vtkPoints::New();</div><div>// add all points</div>

<div>pointVector.push_back(points);</div><div>points-&gt;Delete();</div><div><br></div><div>The &quot;Delete()&quot; is bookkeeping for the garbage collector.  After you push the points onto pointsVector, the pointsVector owns the reference so you have to delete the local reference.</div>

<div><br></div><div>  David<br><br><div class="gmail_quote">On Fri, Nov 26, 2010 at 1:27 PM, Ambar C <span dir="ltr">&lt;<a href="mailto:ambarc@gmail.com">ambarc@gmail.com</a>&gt;</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&#39;m currently coding a project that needs me to keep creating vtkPoint<br>
objects in a loop as I get data. I don&#39;t know how much data I&#39;m going<br>
to get so I need a way to keep track of all of my different point<br>
groups. Is there some kind of stack or array in vtk that will allow me<br>
to keep adding on my points (while creating vtkPoint inside the loop)<br>
and still having them in scope after the loop? Please feel free to ask<br>
questions.<br>
<br>
Cheers.<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/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" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br></div>