// 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_QCONEGEOMETRY_P_H #define QT3DEXTRAS_QCONEGEOMETRY_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include QT_BEGIN_NAMESPACE namespace Qt3DCore { class QAttribute; class QBuffer; } // namespace Qt3DCore namespace Qt3DExtras { class QConeGeometryPrivate : public Qt3DCore::QGeometryPrivate { public: QConeGeometryPrivate(); void init(); Q_DECLARE_PUBLIC(QConeGeometry) bool m_hasTopEndcap; bool m_hasBottomEndcap; int m_rings; int m_slices; float m_topRadius; float m_bottomRadius; float m_length; Qt3DCore::QAttribute *m_positionAttribute; Qt3DCore::QAttribute *m_normalAttribute; Qt3DCore::QAttribute *m_texCoordAttribute; Qt3DCore::QAttribute *m_indexAttribute; Qt3DCore::QBuffer *m_positionBuffer; Qt3DCore::QBuffer *m_vertexBuffer; Qt3DCore::QBuffer *m_indexBuffer; QByteArray generateVertexData() const; QByteArray generateIndexData() const; }; } // Qt3DExtras QT_END_NAMESPACE #endif // QT3DEXTRAS_QCONEGEOMETRY_P_H