<div dir="ltr">On Tue, Apr 9, 2013 at 5:57 AM, Marc Huber <span dir="ltr"><<a href="mailto:marchuber.hft@gmx.de" target="_blank">marchuber.hft@gmx.de</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi,<br>
<br>
can someone tell me how i extract changed polydata from an actor after doing a rotation?<br>
<br>
I'm doing this until now:<br>
...<br>
stlActor->RotateX(rot);<br>
ui.qvtkWidget->repaint();<br>
vtkSmartPointer<vtkPolyData> editedSTL = vtkSmartPointer<vtkPolyData>::<u></u>New();<br>
editedSTL->ShallowCopy(<u></u>stlActor->GetMapper()-><u></u>GetInput());<br>
<br>
My Problem is, that editedSTL gets the point coordinates of my original Polydata not the coordinates after rotation.<br>
Can i somehow store the new point coordinates after rotating?<br>
<br>
Thanks for any advice<br>
<br>
Marc<br></blockquote><div><br>By design the coordinates are not changed when the actor is moved (see <a href="https://docs.google.com/present/edit?id=0AcyIfGqnlfSoZGdqaGhnMnJfMjY1aGJqZGZ4ZnQ&hl=en">https://docs.google.com/present/edit?id=0AcyIfGqnlfSoZGdqaGhnMnJfMjY1aGJqZGZ4ZnQ&hl=en</a>)<br>
<br>I think you want to is pass actor->GetMatrix() to a vtkTransformPolyDataFilter:<br><a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Filters/TransformPolyData">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Filters/TransformPolyData</a><br>
<br></div><div>Good luck,<br><br>David<br></div></div></div></div>