Hello,<br><br>I have an interactor derived from vtkInteractorTrackballCamera.&nbsp; I am interested in changing the dolly behavior so that instead of moving the camera some fraction of the distance to the focal point, the camera is moved a constant distance with every call to Dolly().&nbsp; As a test, I copied the Dolly(double) function from vtkInteractorTrackballCamera to my derived class as the Dolly(void) and replaced &quot;factor&quot; with 10.0.&nbsp; This did not change the behavior.&nbsp; I also tried changing the call to the camera&#39;s Dolly() function to camera-&gt;Dolly(10.0) and camera(camera-&gt;GetDistance() * 10.0) with no avail.&nbsp; Am I going to have to create my own subclass of vtkCamera?&nbsp; It seems that there has to be an easier way.&nbsp; Any ideas?<br>
<br>Thanks,<br><br>Kerry<br>