Fixed now:<div><br></div><div><div>commit 9c30d5b965c6c7273ceda6e5f3af2d2691b0b1cf</div><div>Author: Jeffrey Baumes <<a href="mailto:jeff.baumes@kitware.com">jeff.baumes@kitware.com</a>></div><div>Date:   Mon Jul 5 16:45:39 2010 -0400</div>
<div><br></div><div>    Copying graph point correctly.</div><div>    </div><div>    Thanks to Nasztanovics Ferenc for pointing out this bug.</div><div><br></div><div>diff --git a/Filtering/vtkGraph.cxx b/Filtering/vtkGraph.cxx</div>
<div>index cda39ba..f9e8999 100644</div><div>--- a/Filtering/vtkGraph.cxx</div><div>+++ b/Filtering/vtkGraph.cxx</div><div>@@ -1550,7 +1550,7 @@ void vtkGraph::RemoveVertexInternal(vtkIdType v, bool dire</div><div>   if (this->Points)</div>
<div>     {</div><div>     double x[3];</div><div>-    this->Points->GetPoint(lv);</div><div>+    this->Points->GetPoint(lv, x);</div><div>     this->Points->SetPoint(v, x);</div><div>     this->Points->SetNumberOfPoints(lv);</div>
<div>     }</div><div><br></div><div>Jeff</div><br><div class="gmail_quote">On Fri, Jul 2, 2010 at 4:09 AM, Nasztanovics Ferenc <span dir="ltr"><<a href="mailto:naszta@naszta.hu">naszta@naszta.hu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Now in code:<br>
<br>
  if (this->Points)<br>
    {<br>
    double x[3];<br>
    this->Points->GetPoint(lv);<br>
    this->Points->SetPoint(v, x);<br>
    this->Points->SetNumberOfPoints(lv);<br>
    }<br>
<br>
Should change to:<br>
<br>
  if (this->Points)<br>
    {<br>
    double x[3];<br>
    this->Points->GetPoint(lv,x);<br>
    this->Points->SetPoint(v, x);<br>
    this->Points->SetNumberOfPoints(lv);<br>
    }<br>
<br>
Best regards,<br>
<br>
Naszta<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>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtk-developers" target="_blank">http://www.vtk.org/mailman/listinfo/vtk-developers</a><br>
<br>
</blockquote></div><br><br>
</div>