Questions tagged [qtquick3d]

QtQuick3D is a Qt module providing high level 3D scene rendering using OpenGL for Qt/QML applications.

QtQuick3D adds 3D content to QtQuick's cross-platform ability and coding power. Developers of fluid user interfaces can now enhance their applications with 3D content in the same way icons and pixmaps would be used in a 2D application.

QtQuick3D is a product resulting from the project.

QtQuick3D is made up of the QML bindings for Qt3D (called QML3D) plus Qt Creator integration, and other supporting tools. Qt3D may be used to extend QtQuick3D by creating new user-defined QML3D items using C++.

OpenGL hardware was designed for 3D acceleration and QtQuick3D allows applications to utilise that 3D hardware fully.

QtQuick3D is the Qt Quick product for scripting 3D applications in QML. Apps can be 2D QML applications with a small amount of simple 3D content; through to complex 3D scenes, containing 3D assets - such as complex 3D models, and shader effects.

You can find more information on QtQuick3D Reference Documentation

22 questions
0
votes
1 answer

Wireframe of mesh in QtQuick3D (Outlines / Borders of triangles)

Does anyone know how to make a mesh wireframe in a QtQuick3D (Qt 6.4)? Setting the lines width and their color would be very much appreciated. Something that would be looking like this (it's done in a Qt3D, not the QtQuick3D,…
dany
  • 173
  • 1
  • 8
0
votes
0 answers

Black texture blinking using QQuickImageProvider

I'm using QQuickImageProvider to pass 3d scanner images from C++ to QML and then use these images as customer texture for model (using qt quick 3d here). I faced a problem that texture blinks getting to black for a second. It repeats quite often. I…
Valeriia
  • 586
  • 2
  • 4
  • 21
0
votes
1 answer

Custom QQuick3DGeometry does not display

Trying to implement a custom geometry for QtQuick3D: mycustomgeometry.h: #ifndef MYCUSTOMGEOMETRY_H #define MYCUSTOMGEOMETRY_H #include class MyCustomGeometry : public QQuick3DGeometry { Q_OBJECT public: …
fferri
  • 18,285
  • 5
  • 46
  • 95
0
votes
0 answers

is it possible to display an in-memory mesh in Qt Quick 3D in QML?

It seems we have to use Model's geometry property, but the only subclass of Geometry seems to be GridGeometry. Maybe it is not a (performance-)wise idea to handle this data in QML/JS?
fferri
  • 18,285
  • 5
  • 46
  • 95
0
votes
1 answer

QtQuick3D / Qt Design Studio GLTF import Material looks wrong

i found this nice Car Seat for Blender, then exported the whole scene as GTLF2.0 and imported through Qt Design Studio as QML Asset. I had some Timeline issue and I fixed this by hand, but one Material looks wrong as shown in the image. I checked…
Shazter
  • 151
  • 12
0
votes
0 answers

QT Quick3D: View3D shows Model in the editor but if i run the application i cant see my model

I try to work with QT Quick 3D and want to display a simple 3D Model by using View3D. I imported my Model and set it as the source of my View3D. After that i could see my Model in the editor. But if i run the application i cant see my 3d Model. This…
Leon_
  • 1
  • 1
-1
votes
1 answer

I have a list of 3D coordinates over time, that is, a video of points. How can I visualize this in Python?

So the data might look like: at time 0 : [(8,8,9), (2,4,5), ...] at time 1 : [(3,5,1), (7,4,3), ...] ... at time N : ... I need to visualize these points in a video using Python.
Sam Lerman
  • 301
  • 2
  • 8
1
2