summaryrefslogtreecommitdiffstats
path: root/src/render/frontend/qlevelofdetailboundingsphere.cpp
blob: 694b67458176e568bf9b8d89855f47948643682f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Copyright (C) 2017 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

#include "qlevelofdetailboundingsphere.h"
#include <QSharedData>

QT_BEGIN_NAMESPACE

namespace Qt3DRender {

class QLevelOfDetailBoundingSpherePrivate: public QSharedData
{
public:
    QLevelOfDetailBoundingSpherePrivate()
        : QSharedData()
        , m_radius(0.0f)
    {}

    QLevelOfDetailBoundingSpherePrivate(QVector3D center, float radius)
        : QSharedData()
        , m_center(center)
        , m_radius(radius)
    {}

    ~QLevelOfDetailBoundingSpherePrivate()
    {}

    QVector3D m_center;
    float m_radius;
};

/*!
    \class Qt3DRender::QLevelOfDetailBoundingSphere
    \inmodule Qt3DRender
    \since 5.9
    \brief The QLevelOfDetailBoundingSphere class provides a simple spherical volume, defined by its center and radius.
*/

/*!
    \qmltype LevelOfDetailBoundingSphere
    \instantiates Qt3DRender::QLevelOfDetailBoundingSphere
    \inherits Component3D
    \inqmlmodule Qt3D.Render
    \brief The LevelOfDetailBoundingSphere QML type provides a simple spherical volume, defined by its center and radius.
*/

/*!
 * \qmlproperty QVector3D LevelOfDetailBoundingSphere::center
 *
 * Specifies the center of the bounding sphere
 */

/*!
 * \property Qt3DRender::QLevelOfDetailBoundingSphere::center
 *
 * Specifies the center of the bounding sphere
 */

/*!
 * \qmlproperty qreal LevelOfDetailBoundingSphere::radius
 *
 * Specifies the radius of the bounding sphere
 */

/*!
 * \property Qt3DRender::QLevelOfDetailBoundingSphere::radius
 *
 * Specifies the radius of the bounding sphere
 */

/*!
  Constructs a new QLevelOfDetailBoundingSphere with the specified \a center and \a radius.
 */
QLevelOfDetailBoundingSphere::QLevelOfDetailBoundingSphere(QVector3D center, float radius)
    : d_ptr(new QLevelOfDetailBoundingSpherePrivate(center, radius))
{
}

QLevelOfDetailBoundingSphere::QLevelOfDetailBoundingSphere(const QLevelOfDetailBoundingSphere &other)
    : d_ptr(other.d_ptr)
{
}

QLevelOfDetailBoundingSphere::~QLevelOfDetailBoundingSphere()
{
}

QLevelOfDetailBoundingSphere &QLevelOfDetailBoundingSphere::operator =(const QLevelOfDetailBoundingSphere &other)
{
    d_ptr = other.d_ptr;
    return *this;
}

QVector3D QLevelOfDetailBoundingSphere::center() const
{
    return d_ptr->m_center;
}

float QLevelOfDetailBoundingSphere::radius() const
{
    return d_ptr->m_radius;
}

bool QLevelOfDetailBoundingSphere::isEmpty() const
{
    return d_ptr->m_radius <= 0.0f;
}

bool QLevelOfDetailBoundingSphere::operator ==(const QLevelOfDetailBoundingSphere &other) const
{
    return d_ptr->m_center == other.center() && other.d_ptr->m_radius == other.radius();
}

bool QLevelOfDetailBoundingSphere::operator !=(const QLevelOfDetailBoundingSphere &other) const
{
    return !(*this == other);
}

} // namespace Qt3DRender

QT_END_NAMESPACE

#include "moc_qlevelofdetailboundingsphere.cpp"