| 1 | // Copyright (C) 2021 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | #ifndef QPLANESHAPE_H |
| 5 | #define QPLANESHAPE_H |
| 6 | |
| 7 | // |
| 8 | // W A R N I N G |
| 9 | // ------------- |
| 10 | // |
| 11 | // This file is not part of the Qt API. It exists purely as an |
| 12 | // implementation detail. This header file may change from version to |
| 13 | // version without notice, or even be removed. |
| 14 | // |
| 15 | // We mean it. |
| 16 | // |
| 17 | |
| 18 | #include <QtQuick3DPhysics/qtquick3dphysicsglobal.h> |
| 19 | #include <QtQuick3DPhysics/private/qabstractcollisionshape_p.h> |
| 20 | #include <QtCore/QObject> |
| 21 | #include <QtGui/QVector3D> |
| 22 | #include <QtQml/QQmlEngine> |
| 23 | |
| 24 | namespace physx { |
| 25 | class PxPlaneGeometry; |
| 26 | } |
| 27 | |
| 28 | QT_BEGIN_NAMESPACE |
| 29 | |
| 30 | class Q_QUICK3DPHYSICS_EXPORT QPlaneShape : public QAbstractCollisionShape |
| 31 | { |
| 32 | Q_OBJECT |
| 33 | |
| 34 | QML_NAMED_ELEMENT(PlaneShape) |
| 35 | public: |
| 36 | QPlaneShape(); |
| 37 | ~QPlaneShape(); |
| 38 | |
| 39 | physx::PxGeometry *getPhysXGeometry() override; |
| 40 | bool isStaticShape() const override { return true; } |
| 41 | |
| 42 | private: |
| 43 | void updatePhysXGeometry(); |
| 44 | |
| 45 | physx::PxPlaneGeometry *m_planeGeometry = nullptr; |
| 46 | }; |
| 47 | |
| 48 | QT_END_NAMESPACE |
| 49 | |
| 50 | #endif // QPLANESHAPE_H |
| 51 | |