3D Cube in 3D coordinate axis
-
Dear Developers,
In my Qt application I want to show a 3D Cube inside 3D coordinate system as presented in attached picture.
I can make 3D cube in my Qt application both using QT C++ and QML. Addtionally I have also read about AxisHelper QML type and think it can solve my problem. But do not know how to add it in my 3D Scene.
So I would be grateful if you will inform me how can I put 3D cube in 3D coordinate axis (best would be using AxisHelper) in my Application as shown in given picture.
Please inform me if you need any information from me.
Many Thanks !!
-
I have the same problem. Grateful if someone could help out. Thank you very much.
-
Finally, I could add AxisHelper in View3D with the following code:
View3D { importScene: AxisHelper{ enableXYGrid: true enableXZGrid: true enableYZGrid: true gridOpacity: 0.5 } }
I am not sure if it is the same for Scene3D.