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

link|improve this question

The vtkObjectEventArgs doesn't contain any information on your click? I would expect it to work like MouseEventArgs with more information considering they rolled their own. – TyCobb Mar 24 '11 at 15:18
thought so too. e.CallData is a IntPtr. What can i do with that? – domueni Mar 24 '11 at 15:44
feedback

1 Answer

up vote 2 down vote accepted

I didn't try out this, but maybe your are looking for this property:

this.Interactor.GetLastEventPosition();

To see this working go to your Activiz Examples folder "Examples\VolumeRendering\CS" and see that example.

Cheers & Beers!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.