Search found 8 matches

by eduardobrites
Mon Oct 14, 2013 8:33 am
Forum: Developer's Forum for Windows
Topic: OnMouseWheel event fired by a 3D Mouse input
Replies: 13
Views: 19301

Re: OnMouseWheel event fired by a 3D Mouse input

I just created a Profile for my application.

How can I deploy this profile to the end users for it to be loaded automatically whenever they run my application?
by eduardobrites
Fri Oct 11, 2013 4:34 am
Forum: Developer's Forum for Windows
Topic: Apply the 3DMouse rotation vector input to an orbit camera
Replies: 1
Views: 8257

Apply the 3DMouse rotation vector input to an orbit camera

I'm having trouble about applying the rotation vector to my orbit camera. It only works well if the current camera's ViewVector (Target - Position) is (0,-1,0), otherwise it performs a wrong rotation. On the examples I've seen so far the rotations are applied to the object, the camera stays still. I...
by eduardobrites
Fri Oct 11, 2013 1:40 am
Forum: Developer's Forum for Windows
Topic: OnMouseWheel event fired by a 3D Mouse input
Replies: 13
Views: 19301

Re: OnMouseWheel event fired by a 3D Mouse input

That did the trick.

Thank you!
by eduardobrites
Fri Oct 11, 2013 1:12 am
Forum: Developer's Forum for Windows
Topic: OnMouseWheel event fired by a 3D Mouse input
Replies: 13
Views: 19301

Re: OnMouseWheel event fired by a 3D Mouse input

The problem is that even if I disable the mouse wheel emulator function, the mousewheel event is still fired.

Image

I have 3DxWare installed.
by eduardobrites
Thu Oct 10, 2013 6:23 am
Forum: Developer's Forum for Windows
Topic: OnMouseWheel event fired by a 3D Mouse input
Replies: 13
Views: 19301

Re: OnMouseWheel event fired by a 3D Mouse input

I'm using the RawInput method because I didn't see any examples of using the 3DxWare in a .NET application. The C# example in ftp:/ *** *** uses this method. Also, I've heard that TDxInput is been deprecated. Is this incorrect? Moderator Edit: the sample code is no longer available from the FTP serv...
by eduardobrites
Thu Oct 10, 2013 3:49 am
Forum: Developer's Forum for Windows
Topic: OnMouseWheel event fired by a 3D Mouse input
Replies: 13
Views: 19301

Re: OnMouseWheel event fired by a 3D Mouse input

My application is using .NET Framework 4 (C#) and I'm listening to the 3D mouse input events by using the RegisterRawInputDevices windows API, how can I use the API to perform that driver's setting change?
by eduardobrites
Wed Oct 09, 2013 8:16 am
Forum: Developer's Forum for Windows
Topic: OnMouseWheel event fired by a 3D Mouse input
Replies: 13
Views: 19301

Re: OnMouseWheel event fired by a 3D Mouse input

Hi ngomes,

That is exactly my situation.

How can I change the driver configuration whenever my application starts?
by eduardobrites
Wed Oct 09, 2013 8:02 am
Forum: Developer's Forum for Windows
Topic: OnMouseWheel event fired by a 3D Mouse input
Replies: 13
Views: 19301

OnMouseWheel event fired by a 3D Mouse input

In my application I want to disable the 3DMouse input which acts like the 2DMouse scroll wheel. The problem is that inside my OnMouseWhell event handler I don't know how to distinguish whether it was a 3D Mouse input or a 2D Mouse input. private void OnMouseWheel(object sender, MouseWheelEventArgs e...