Re: Raster anzeigen

Oui, les fichiers étaient tous dans le même répertoire. J'avais aussi débranché la souris 3D. Il n'y a que le cube que je n'ai pas redémarré. Je réessaierai plus tard.

Ja, die Dateien waren alle im gleichen Verzeichnis. Die 3D-Maus hatte ich auch ausgesteckt. Nur den Würfel habe ich nicht neu gestartet. Ich probiere es später nochmal aus.

Re: Raster anzeigen

J'ai essayé FreeCad et Calligra (old Koffice) qui ont deux façons différentes de gérer la souris 3D. D'abord sur ma machine Debian puis sur mon Laptop sur la session Windows 10 (21H2).

Sous Linux avec FreeCad c'est la librairie Spacenav, sous Windows ils se servent des driver's de 3DxWare, le support est mieux aboutit sous Windows, gestion de l’écran (driver's Logitech), menus, etc, je trouve que la souris est plus facile à prendre en main que sous Linux.

Sous Calligra (sheets) programme 2D, sous Linux la souris 3D permet le zoom et le déplacement, meme si on est vite perdu, quand sous Windows je n'ai pas remarqué grand chose à part le scroll de la page.


Ich habe FreeCad und Calligra (old Koffice) ausprobiert, die zwei verschiedene Möglichkeiten haben, die 3D-Maus zu verwalten. Zuerst auf meinem Debian-Rechner und dann auf meinem Laptop in der Windows 10-Sitzung (21H2).

Unter Linux mit FreeCad ist es die Spacenav Bibliothek, unter Windows verwenden sie die 3DxWare Treiber, die Unterstützung ist unter Windows besser, Bildschirmverwaltung (Logitech Treiber), Menüs, etc, ich finde, dass die Maus einfacher zu erlernen ist als unter Linux.

Unter Calligra (sheets) ist das Programm 2D, unter Linux ermöglicht die 3D-Maus das Zoomen und Verschieben, auch wenn man sich schnell verirrt, während ich unter Windows nicht viel bemerkt habe, außer dem Scrollen der Seite.


https://github.com/FreeCAD/FreeCAD/tree … Dconnexion
https://github.com/KDE/calligra/tree/ma … enavigator

https://habr-com.translate.goog/ru/comp … _tr_pto=sc

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."

Re: Raster anzeigen

Bonjour Laurent !

quelles sont les fonctions que tu as mises sur ta souris 3D pour QET ? Peux-tu m'envoyer une capture d'écran, s'il te plaît ? Cela ne fonctionne pas encore vraiment pour moi dans le logiciel 3D Connexion (Win10/MacOSX)...

Hallo Laurent,

welche Funktionen hast du auf deine 3D-Maus für QET gelegt? Kannst du mir bitte einen Screenshot schicken? So richtig funktioniert das bei mir in der 3D Connexion-Software (Win10/MacOSX) noch nicht...

Beste Grüße,
Pierre

Meilleures salutations,
Pierre

Re: Raster anzeigen

Hallo Pierre,

c'est juste cette demo que j'ai envoyé le fameux cube :
https://qelectrotech.org/forum/viewtopi … 945#p15945

es ist nur diese Demo, dass ich den berühmten Würfel geschickt habe:

Beste Grüße,
Laurent

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."

Re: Raster anzeigen

https://github.com/koenieee/Crossplatfo … roller.cpp
Der Code des berühmten Würfels, die unterstützten Mäuse sind eingeschränkt.

#include "SpaceMouseController.h"


// from Virtual Reality Peripheral Network - vrpn_3DConnexion.C
// and https://www.3dconnexion.com/forum/viewt … p;start=15
static const int _3DCONNEXION_VENDOR_LOGITECH = 0x046d;            // 1133 // Logitech (3Dconnexion is made by Logitech)
static const int _3DCONNEXION_VENDOR_3DCONNECTION = 0x256F;        // 9583 // 3Dconnexion
static const int _3DCONNEXION_TRAVELER = 0xC623;                // 50723
static const int _3DCONNEXION_NAVIGATOR = 0xC626;                // 50726
static const int _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS = 0xc628;    // 50728
static const int _3DCONNEXION_SPACEEXPLORER = 0xc627;            // 50727
static const int _3DCONNEXION_SPACEMOUSE = 0xC603;                // 50691
static const int _3DCONNEXION_SPACEMOUSEPRO = 0xC62B;            // 50731
static const int _3DCONNEXION_SPACEBALL5000 = 0xc621;            // 50721
static const int _3DCONNEXION_SPACEPILOT = 0xc625;                // 50725
static const int _3DCONNEXION_SPACEPILOTPRO = 0xc629;            // 50729



if ((m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_LOGITECH ||
                m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_3DCONNECTION)
                && (m_cur_dev->product_id == _3DCONNEXION_TRAVELER ||
                    m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR ||
                    m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEEXPLORER ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSE ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSEPRO ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEBALL5000 ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEPILOT ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEPILOTPRO))
        {
            //setup the values with the founded vendor id.s
            current_vendor_id = m_cur_dev->vendor_id;
            current_product_id = m_cur_dev->product_id;

            break; //break when first comaptaible device is found.

https://github.com/FreeCAD/FreeCAD/blob … 32.cpp#L85

/*
    List of all devices
    https://www.3dconnexion.com/nc/service/ … ndows.html
    Supported:
    SpacePilot: USB\0x046d:0xc625
    SpaceExplorer: USB\0x046d:0xc627
    SpaceMouse Wireless (cabled): USB\0x256f:0xc62e
    SpaceMouse Wireless Receiver: USB\0x256f:0xc62f
    SpaceMouse Pro Wireless (cabled): USB\0x256d:0xc631
    SpaceMouse Pro Wireless Receiver: USB\0x256f:0xc632
    Supported (but works differently):
    SpaceMouse Plus USB: USB\0x046d:0xc603
    SpaceMouse Plus XT USB: USB\0x046d:0xc603
    Unknown status:
    SpaceNavigator: USB\0x046d:0xc626
    SpaceNavigator for Notebooks: USB\0x046d:0xc628
    SpacePilot Pro: USB\0x046d:0xc629
    SpaceMouse Enterprise: USB\0x256f:0xc633
    Not yet supported:
    SpaceMouse Compact: USB\0x256f:0xc635
    Not supported:
    CadMan: USB\0x046d:0xc605
    SpaceMouse Classic USB: USB\0x046d:0xc606
    SpaceBall 5000 USB: USB\0x046d:0xc621
    SpaceTraveler: USB\0x046d:0xc623
    SpaceMouse Pro: USB\0x046d:0xc62b
    CadMouse: USB\0x256f:0xc650
    CadMouse Pro Wireless: USB\0x256f:0xc654
    CadMouse Pro Wireless Left: USB\0x256f:0xc657
    CadMouse Wireless: USB\0x256f:0xc651
    Universal Receiver: USB\0x256f:0xc652
*/

enum e3dconnexion_pid {
   eSpaceMousePlusXT = 0xc603,
   eSpacePilot = 0xc625,
   eSpaceNavigator = 0xc626,
   eSpaceExplorer = 0xc627,
   eSpaceNavigatorForNotebooks = 0xc628,
   eSpacePilotPRO = 0xc629,
   eSpaceMouseWireless = 0xc62e,
   eSpaceMouseWirelessReceiver = 0xc62f,
   eSpaceMousePROWireless = 0xc631,
   eSpaceMousePROWirelessReceiver = 0xc632,
   eSpaceMouseEnterprise = 0xc633,
   eSpaceMouseCompact = 0xc635

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."

Re: Raster anzeigen

pierre.branitzki wrote:

Bonjour Laurent,

j'ai testé avec 2 appareils (SpaceMouse wireless et SpaceMouse Enterprise) sous MacOSX 12.3 et Windows10 Pro (20H2) - sans succès. Dans les deux cas, il était impossible de déplacer le cube. Même un clic dans la fenêtre du programme n'a pas donné de résultat...

Meilleures salutations,
Pierre


Hallo Laurent,

ich habe es mit 2 Geräten (SpaceMouse wireless und SpaceMouse Enterprise) unter MacOSX 12.3 und Windows10 Pro (20H2) getestet - ohne Erfolg. In beiden Fällen ließ sich der Würfel nicht bewegen. Auch ein Klick ins Programmfenster brachte keinen Erfolg...

Beste Grüße,
Pierre

Hallo Pierre,

j'ai ajouté les souris SpaceMouse wireless et SpaceMouse Enterprise dans le code du cube.
habe ich die SpaceMouse wireless und die SpaceMouse Enterprise in den Würfelcode eingefügt.


https://download.qelectrotech.org/qet/s … test_2.zip


// from Virtual Reality Peripheral Network - vrpn_3DConnexion.C
// and https://www.3dconnexion.com/forum/viewt … p;start=15
static const int _3DCONNEXION_VENDOR_LOGITECH = 0x046d;            // 1133 // Logitech (3Dconnexion is made by Logitech)
static const int _3DCONNEXION_VENDOR_3DCONNECTION = 0x256F;        // 9583 // 3Dconnexion
static const int _3DCONNEXION_TRAVELER = 0xC623;                // 50723
static const int _3DCONNEXION_NAVIGATOR = 0xC626;                // 50726
static const int _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS = 0xc628;    // 50728
static const int _3DCONNEXION_SPACEEXPLORER = 0xc627;            // 50727
static const int _3DCONNEXION_SPACEMOUSE = 0xC603;                // 50691
static const int _3DCONNEXION_SPACEMOUSEPRO = 0xC62B;            // 50731
static const int _3DCONNEXION_SPACEBALL5000 = 0xc621;            // 50721
static const int _3DCONNEXION_SPACEPILOT = 0xc625;                // 50725
static const int _3DCONNEXION_SPACEPILOTPRO = 0xc629;            // 50729
static const int _3DCONNEXION_SpaceMouseWireless_usb = 0xc62e;
static const int _3DCONNEXION_SpaceMouseWireless_Receiver = 0xc631;
static const int _3DCONNEXION_SpaceMouse_Enterprise = 0xc633;




bool SpaceMouseController::initialize()
{
    struct hid_device_info * devs;

    unsigned short current_vendor_id = 0x0;
    unsigned short current_product_id = 0x0;

    devs = hid_enumerate(0x0, 0x0);
    m_cur_dev = devs;

    while (m_cur_dev)
    {

        if ((m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_LOGITECH ||
                m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_3DCONNECTION)
                && (m_cur_dev->product_id == _3DCONNEXION_TRAVELER ||
                    m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR ||
                    m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEEXPLORER ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSE ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSEPRO ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEBALL5000 ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEPILOT ||
                    m_cur_dev->product_id == _3DCONNEXION_SPACEPILOTPRO ||
                    m_cur_dev->product_id == _3DCONNEXION_SpaceMouseWireless_usb ||
                    m_cur_dev->product_id == _3DCONNEXION_SpaceMouseWireless_Receiver ||
                    m_cur_dev->product_id == _3DCONNEXION_SpaceMouse_Enterprise))     
                   
                   
                   
        {
            //setup the values with the founded vendor id.s
            current_vendor_id = m_cur_dev->vendor_id;
            current_product_id = m_cur_dev->product_id;

            break; //break when first comaptaible device is found.
        }

        m_cur_dev = m_cur_dev->next;
    }


Beste Grüße,
Laurent

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."

Re: Raster anzeigen

https://download.qelectrotech.org/qet/s … test_3.zip

Fix typo to _SpaceMouseWireless_Receiver:

static const int _3DCONNEXION_SpaceMouseWireless_Receiver = 0xc62f;

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."

Re: Raster anzeigen

Ça a l'air génial. Je le testerai ce soir.

Je t'embrasse bien fort,
Pierre

Sieht großartig aus. Ich teste es heute Abend.

Liebe Grüße,
Pierre

Re: Raster anzeigen

Hallo Pierre
Ich baue eine neue macOS-Würfel-Demo-Anwendung:
https://download.qelectrotech.org/qet/s … er.app.zip

"Le jour où tu découvres le Libre, tu sais que tu ne pourras jamais plus revenir en arrière..."