summaryrefslogtreecommitdiffstats
path: root/src/render/geometry/qboundingvolumespecifier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/geometry/qboundingvolumespecifier.cpp')
-rw-r--r--src/render/geometry/qboundingvolumespecifier.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/render/geometry/qboundingvolumespecifier.cpp b/src/render/geometry/qboundingvolumespecifier.cpp
index d09c38dfd..04689a644 100644
--- a/src/render/geometry/qboundingvolumespecifier.cpp
+++ b/src/render/geometry/qboundingvolumespecifier.cpp
@@ -53,11 +53,39 @@ public:
QAbstractAttribute *m_positionAttribute;
};
+/*!
+ * \qmltype BoundingVolumeSpecifier
+ * \instantiates Qt3DRender::QBoundingVolumeSpecifier
+ * \inqmlmodule Qt3D.Render
+ * \brief Uncreatable
+ */
+
+/*!
+ * \qmlproperty AbstractAttribute BoundingVolumeSpecifier::positionAttribute
+ *
+ * Holds the position attribute.
+ */
+
+/*!
+ * \class Qt3DRender::QBoundingVolumeSpecifier
+ * \inmodule Qt3DRender
+ *
+ * \inherits QObject
+ */
+
+/*!
+ * Constructs a new QBoundingVolumeSpecifier with \a parent.
+ */
QBoundingVolumeSpecifier::QBoundingVolumeSpecifier(QObject *parent)
: QObject(*new QBoundingVolumeSpecifierPrivate(), parent)
{
}
+/*!
+ * \property QBoundingVolumeSpecifier::positionAttribute
+ *
+ * Holds the position attribute.
+ */
QAbstractAttribute *QBoundingVolumeSpecifier::positionAttribute() const
{
Q_D(const QBoundingVolumeSpecifier);