<div dir="ltr">On Tue, Dec 30, 2014 at 1:29 PM, Student Life <span dir="ltr"><<a href="mailto:lifestudent37@gmail.com" target="_blank">lifestudent37@gmail.com</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"><div class=""><div class="h5"><div dir="ltr"><div>Hi,<br><br></div><div>Basically, I have multiple actors in my render window, and so far if I rotate one actor all the actors move with it as well.<br><br></div><div>I want to interact with multiple objects independently. For example, 
if I have 5 objects in a render window, I want to only move, rotate and 
interact with the one selected object; whilst the rest of the 4 objects 
stay where it is. 

<p>At the moment, the camera is doing the magic and as I rotate the 
independent object, other objects move at the same time and I don't want
 that to happen. </p>

<p>I also want to store all the objects in memory.</p>

<p>I intend to use C++.</p>

<p>This is my sort of class structure...</p></div><pre><code><span>class</span><span> </span><span>ScreenObjects</span><span>
</span><span>{</span><span>
   vtkActor </span><span>(</span><span>LinkedList</span><span>);</span><span> </span><span>// I intend on using a linkedlist to store all the actors</span><span>

   </span><span>public</span><span>:</span><span>
   </span><span>ScreenObjects</span><span>();</span><span> </span><span>// Constructor. Initializes vtkActor to null.</span><span>
   </span><span>void</span><span> readSTLFile</span><span>();</span><span> </span><span>// Reads the STL File</span><span>
   </span><span>bool</span><span> setObject</span><span>();</span><span> </span><span>// Sets current object, so you can only interact with the selected object</span><span>
</span><span>}<br><br></span></code></pre><p>I am missing quite a lot of functions and detail in my class, as I 
don't know what else to include that would be of use. I was also 
thinking of joining two objects together, but again, I don't know how to
 incorporate that in my class; any information on that would be 
appreciated.</p>

Would really appreciate it if I could be given ideas.</div></div></div></blockquote><div><br>You need to specify an "interactor style" - the one you are looking for 
here is vtkInteractorStyleTrackballActor. Here is an example: 
<a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Interaction/TrackballActor">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Interaction/TrackballActor</a><br><div><div class="gmail_signature"><br>David</div></div></div></div></div></div>