// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QT3DEXTRAS_QCYLINDERGEOMETRY_H #define QT3DEXTRAS_QCYLINDERGEOMETRY_H #include #include QT_BEGIN_NAMESPACE namespace Qt3DCore { class QAttribute; } // namespace Qt3DCore namespace Qt3DExtras { class QCylinderGeometryPrivate; class Q_3DEXTRASSHARED_EXPORT QCylinderGeometry : public Qt3DCore::QGeometry { Q_OBJECT Q_PROPERTY(int rings READ rings WRITE setRings NOTIFY ringsChanged) Q_PROPERTY(int slices READ slices WRITE setSlices NOTIFY slicesChanged) Q_PROPERTY(float radius READ radius WRITE setRadius NOTIFY radiusChanged) Q_PROPERTY(float length READ length WRITE setLength NOTIFY lengthChanged) Q_PROPERTY(Qt3DCore::QAttribute *positionAttribute READ positionAttribute CONSTANT) Q_PROPERTY(Qt3DCore::QAttribute *normalAttribute READ normalAttribute CONSTANT) Q_PROPERTY(Qt3DCore::QAttribute *texCoordAttribute READ texCoordAttribute CONSTANT) Q_PROPERTY(Qt3DCore::QAttribute *indexAttribute READ indexAttribute CONSTANT) public: explicit QCylinderGeometry(QNode *parent = nullptr); ~QCylinderGeometry(); void updateVertices(); void updateIndices(); int rings() const; int slices() const; float radius() const; float length() const; Qt3DCore::QAttribute *positionAttribute() const; Qt3DCore::QAttribute *normalAttribute() const; Qt3DCore::QAttribute *texCoordAttribute() const; Qt3DCore::QAttribute *indexAttribute() const; public Q_SLOTS: void setRings(int rings); void setSlices(int slices); void setRadius(float radius); void setLength(float length); Q_SIGNALS: void radiusChanged(float radius); void ringsChanged(int rings); void slicesChanged(int slices); void lengthChanged(float length); protected: QCylinderGeometry(QCylinderGeometryPrivate &dd, QNode *parent = nullptr); private: Q_DECLARE_PRIVATE(QCylinderGeometry) }; } // Qt3DExtras QT_END_NAMESPACE #endif // QT3DEXTRAS_QCYLINDERGEOMETRY_H