Before we see Qt 3D in action, let's go through the important parts of its architecture.
Qt 3D overview
Entities and components
Qt 3D is not just a 3D rendering tool. When sufficiently evolved, it can become a full-featured game engine. This is supported by its original architecture. Qt 3D introduces a new set of abstractions that are particularly useful for its task.
You may have noticed that most of the Qt API heavily uses inheritance. For example, each widget type is derived from QWidget, which in turn is derived from QObject. Qt forms large family trees of classes to provide common and specialized behavior. In contrast, elements of a Qt 3D scene are constructed using composition instead of inheritance. A single...