I was the originator of the feature request on the TinkerCad forums (Schema), would gladly cover the $5 plus some extra for beer PM me your info if you like!
Hey folks, The examples from UtaSH are great but they reply on WPF. If you're using plain C# and Windows Forms (like me), here's a little trick to make it easy to hook up to your Windows Forms code as a message handler and so on. It's a helper class as follows. (You could also in theory extend their...
Oh, indeed it does. That was easy, thanks. Thanks for the super quick reply. Any thoughts on the random 0x17s? if (pRawInput->data.hid.bRawData[0] == 0x01) { // Translation vector short* pnData = reinterpret_cast<short*>(&pRawInput->data.hid.bRawData[1]); m_x = pnData[0]; m_y = pnData[1]; m_z = pnDa...
Hi all, First post with hopefully a simple question. I'm resurrecting an internal application with 3DConnexion support that my company wrote ~2010, and adapting it to work with a SpaceMouse Wireless (previously it was a SpaceNavigator, I think). It's working fine except that I never receive any rota...