1 | // Copyright (C) 2022 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | #ifndef QDEBUGDRAWHELPER_H |
5 | #define QDEBUGDRAWHELPER_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 "qtconfigmacros.h" |
19 | |
20 | namespace physx { |
21 | class PxHeightField; |
22 | class PxTriangleMesh; |
23 | class PxConvexMesh; |
24 | } |
25 | |
26 | QT_BEGIN_NAMESPACE |
27 | class QVector3D; |
28 | class QQuick3DGeometry; |
29 | |
30 | namespace QDebugDrawHelper { |
31 | QQuick3DGeometry *generateBoxGeometry(const QVector3D &halfExtents); |
32 | QQuick3DGeometry *generateSphereGeometry(const float radius); |
33 | QQuick3DGeometry *generateCapsuleGeometry(const float radius, const float halfHeight); |
34 | QQuick3DGeometry *generatePlaneGeometry(); |
35 | QQuick3DGeometry *generateHeightFieldGeometry(physx::PxHeightField *heightField, float heightScale, |
36 | float rowScale, float columnScale); |
37 | QQuick3DGeometry *generateConvexMeshGeometry(physx::PxConvexMesh *convexMesh); |
38 | QQuick3DGeometry *generateTriangleMeshGeometry(physx::PxTriangleMesh *triangleMesh); |
39 | |
40 | }; |
41 | |
42 | QT_END_NAMESPACE |
43 | |
44 | #endif // QDEBUGDRAWHELPER_H |
45 |