Wasnt there a vtkPolyDataSingleShortestPath available which did a similar thing? Is this the next implementation<br><br><div class="gmail_quote">On Wed, May 19, 2010 at 1:31 PM, Dajiang Zhu <span dir="ltr">&lt;<a href="mailto:djzhu@uga.edu">djzhu@uga.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Thanks, your suggestion and info are very helpful. Have a nice afternoon!<div><div></div><div class="h5">
<br><br><div class="gmail_quote">On Wed, May 19, 2010 at 1:24 PM, David Doria <span dir="ltr">&lt;<a href="mailto:daviddoria%2Bvtk@gmail.com" target="_blank">daviddoria+vtk@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Karthik seems to have answered your question, but I have some comments<br>
on your existing code:<br>
<br>
Karthik - when you commit this, can you update the example to match/demonstrate?<br>
<br>
Dajiang - See inline below:<br>
<div><br>
On Wed, May 19, 2010 at 1:14 PM, Dajiang Zhu &lt;<a href="mailto:djzhu@uga.edu" target="_blank">djzhu@uga.edu</a>&gt; wrote:<br>
&gt; oh, Thanks, I got nothing because I went to a wrong place:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK/Examples/Graph/DijkstraGraphGeodesicPath" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Graph/DijkstraGraphGeodesicPath</a><br>
<br>
</div>Where did you find that link? Was it just a mistake? Or does a link<br>
need to be fixed somewhere?<br>
<br>
&gt;<br>
&gt; vtkPolyDataReader* TReader=vtkPolyDataReader::New();<br>
<br>
I highly recommend you use smart pointers:<br>
<a href="http://www.vtk.org/Wiki/VTK/Tutorials/SmartPointers" target="_blank">http://www.vtk.org/Wiki/VTK/Tutorials/SmartPointers</a><br>
<br>
vtkSmartPointer&lt;vtkPolyDataReader&gt; TReader =<br>
  vtkSmartPointer&lt;vtkPolyDataReader&gt;::New();<br>
<div><br>
&gt;     vtkPolyData* TsurfaceData=vtkPolyData::New();<br>
&gt;     TsurfaceData=TReader-&gt;GetOutput();<br>
<br>
</div>You should NOT create an object before assigning the output of the reader.<br>
<br>
Instead, simply do:<br>
vtkPolyData* TsurfaceData = TReader-&gt;GetOutput();<br>
<br>
Good luck,<br>
<font color="#888888"><br>
David<br>
</font></blockquote></div><br>
</div></div><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>
<br></blockquote></div><br>