![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include "qquick3dxrspatialanchorlistmodel_p.h"#include "qquick3dxrspatialanchor_p.h"#include "openxr/qquick3dxranchormanager_openxr_p.h"Go to the source code of this file.
Functions | |
| static QT_BEGIN_NAMESPACE QString | getClassificationString (QQuick3DXrSpatialAnchorListModel::ClassificationFlag classification) |
| static QQuick3DXrSpatialAnchorListModel::ClassificationFlag | getClassificationFlagType (QQuick3DXrSpatialAnchor::Classification classification) |
|
static |
Definition at line 66 of file qquick3dxrspatialanchorlistmodel.cpp.
|
static |
\qmltype XrSpatialAnchorListModel
\inherits ListModel
\inqmlmodule QtQuick3D.Xr
\brief Provides a model containing spatial anchors.
This type provides a list of spatial anchors, which are points in
the physical world that can be tracked and associated with virtual content.
The list contains elements that have an \c anchor property with the type \l XrSpatialAnchor.
You can use it like this:
\qml
Repeater3D {
model: XrSpatialAnchorListModel {
}
delegate: Node {
required property XrSpatialAnchor anchor
position: anchor.position
rotation: anchor.rotation
Further use of anchor properties... } } \endqml
Definition at line 42 of file qquick3dxrspatialanchorlistmodel.cpp.