summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine/q3dbox.h
blob: aa63ec398b8721aed40e2cf200ed94dc23e532d8 (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the QtDataVisualization module.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
**
****************************************************************************/

#ifndef Q3DBOX_H
#define Q3DBOX_H

#include <QtDataVisualization/qdatavisualizationenums.h>
#include <QtGui/QMatrix4x4>
#include <QtGui/QVector3D>

QT_DATAVISUALIZATION_BEGIN_NAMESPACE

class Q3DBox; // Needed to circumvent an issue with qdoc. If this line is removed, make docs will not work for this.

class QT_DATAVISUALIZATION_EXPORT Q3DBox
{
public:
    Q3DBox();
    Q3DBox(const QVector3D& corner1, const QVector3D& corner2);

    bool isNull() const;
    bool isFinite() const;
    bool isInfinite() const;

    QVector3D minimum() const;
    QVector3D maximum() const;
    void setExtents(const QVector3D& corner1, const QVector3D& corner2);

    void setToNull();
    void setToInfinite();

    QVector3D size() const;
    QVector3D center() const;

    bool contains(const QVector3D& point) const;
    bool contains(const Q3DBox& box) const;

    bool intersects(const Q3DBox& box) const;
    void intersect(const Q3DBox& box);
    Q3DBox intersected(const Q3DBox& box) const;

    void unite(const QVector3D& point);
    void unite(const Q3DBox& box);

    Q3DBox united(const QVector3D& point) const;
    Q3DBox united(const Q3DBox& box) const;

    void transform(const QMatrix4x4& matrix);
    Q3DBox transformed(const QMatrix4x4& matrix) const;

    bool operator==(const Q3DBox& box) const;
    bool operator!=(const Q3DBox& box) const;

    friend bool qFuzzyCompare(const Q3DBox& box1, const Q3DBox& box2);

private:
    enum Type
    {
        Null,
        Finite,
        Infinite
    };

    Q3DBox::Type boxtype;
    QVector3D mincorner, maxcorner;
};

inline Q3DBox::Q3DBox() : boxtype(Null), mincorner(0, 0, 0), maxcorner(0, 0, 0) {}

inline Q3DBox::Q3DBox(const QVector3D& corner1, const QVector3D& corner2)
    : boxtype(Finite),
      mincorner(qMin(corner1.x(), corner2.x()),
                qMin(corner1.y(), corner2.y()),
                qMin(corner1.z(), corner2.z())),
      maxcorner(qMax(corner1.x(), corner2.x()),
                qMax(corner1.y(), corner2.y()),
                qMax(corner1.z(), corner2.z())) {}

inline bool Q3DBox::isNull() const { return (boxtype == Null); }
inline bool Q3DBox::isFinite() const { return (boxtype == Finite); }
inline bool Q3DBox::isInfinite() const { return (boxtype == Infinite); }

inline QVector3D Q3DBox::minimum() const { return mincorner; }
inline QVector3D Q3DBox::maximum() const { return maxcorner; }

inline void Q3DBox::setExtents(const QVector3D& corner1, const QVector3D& corner2)
{
    boxtype = Finite;
    mincorner = QVector3D(qMin(corner1.x(), corner2.x()),
                          qMin(corner1.y(), corner2.y()),
                          qMin(corner1.z(), corner2.z()));
    maxcorner = QVector3D(qMax(corner1.x(), corner2.x()),
                          qMax(corner1.y(), corner2.y()),
                          qMax(corner1.z(), corner2.z()));
}

inline void Q3DBox::setToNull()
{
    boxtype = Null;
    mincorner = QVector3D(0, 0, 0);
    maxcorner = QVector3D(0, 0, 0);
}

inline void Q3DBox::setToInfinite()
{
    boxtype = Infinite;
    mincorner = QVector3D(0, 0, 0);
    maxcorner = QVector3D(0, 0, 0);
}

inline QVector3D Q3DBox::size() const { return maxcorner - mincorner; }
inline QVector3D Q3DBox::center() const { return (mincorner + maxcorner) * 0.5f; }

inline bool Q3DBox::contains(const QVector3D& point) const
{
    if (boxtype == Finite) {
        return (point.x() >= mincorner.x() && point.x() <= maxcorner.x() &&
                point.y() >= mincorner.y() && point.y() <= maxcorner.y() &&
                point.z() >= mincorner.z() && point.z() <= maxcorner.z());
    } else if (boxtype == Infinite) {
        return true;
    } else {
        return false;
    }
}

inline bool Q3DBox::contains(const Q3DBox& box) const
{
    if (box.boxtype == Finite)
        return contains(box.mincorner) && contains(box.maxcorner);
    else if (box.boxtype == Infinite)
        return (boxtype == Infinite);
    else
        return false;
}

inline bool Q3DBox::operator==(const Q3DBox& box) const
{
    return (boxtype == box.boxtype &&
            mincorner == box.mincorner &&
            maxcorner == box.maxcorner);
}

inline bool Q3DBox::operator!=(const Q3DBox& box) const
{
    return (boxtype != box.boxtype ||
            mincorner != box.mincorner ||
            maxcorner != box.maxcorner);
}

inline bool qFuzzyCompare(const Q3DBox& box1, const Q3DBox& box2)
{
    return box1.boxtype == box2.boxtype &&
            qFuzzyCompare(box1.mincorner, box2.mincorner) &&
            qFuzzyCompare(box1.maxcorner, box2.maxcorner);
}

#ifndef QT_NO_DEBUG_STREAM
QT_DATAVISUALIZATION_EXPORT QDebug operator<<(QDebug dbg, const Q3DBox &box);
#endif

#ifndef QT_NO_DATASTREAM
QT_DATAVISUALIZATION_EXPORT QDataStream &operator<<(QDataStream &stream, const Q3DBox &box);
QT_DATAVISUALIZATION_EXPORT QDataStream &operator>>(QDataStream &stream, Q3DBox &box);
#endif

QT_DATAVISUALIZATION_END_NAMESPACE

#endif