[vtk-developers] Change to Widgets

Sean McBride sean at rogue-research.com
Tue Sep 25 09:33:30 EDT 2007


On 9/24/07 10:28 AM, Utkarsh Ayachit said:

>....(change internal state to note that interaction has ended)
>this->InvokeEvent(vtkCommand::EndInteraction);
>this->Render();
>
>
>I am changing this to:
>
>....(change internal state to note that interaction has ended)
>this->Render();
>this->InvokeEvent(vtkCommand::EndInteraction);

You could always keep it the old way, and add a new event for the latter case:

....(change internal state to note that interaction has ended)
this->InvokeEvent(vtkCommand::EndInteraction);
this->Render();
this->InvokeEvent(vtkCommand::EndRenderAfterEndInteraction);

-- 
____________________________________________________________
Sean McBride, B. Eng                 sean at rogue-research.com
Rogue Research                        www.rogue-research.com 
Mac Software Developer              Montréal, Québec, Canada





More information about the vtk-developers mailing list