i'm working with ActiViz .NET (VTK) and have a small problem.
When i register a event (for ex. the LeftButtonReleaseEvt) i can't find out where on the RenderWindowControl i clicked. the event is called.
...
rwcVtk.RenderWindow.GetInteractor().LeftButtonPressEvt += new vtkObject.vtkObjectEventHandler(RenderWindow_LeftButtonReleaseEvt);
}
void RenderWindow_LeftButtonReleaseEvt(vtkObject sender, vtkObjectEventArgs e)
{
//TODO: Where did i click?
}
can somebody help me? there isn't much documentation on that out there i think