-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspectrumentity.h
55 lines (44 loc) · 1.73 KB
/
spectrumentity.h
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
// gamma-viewer-3d - 3d visualization of sessions generated by gamma-analyzer
// Copyright (C) 2017 Dag Robole
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef SPECTRUMENTITY_H
#define SPECTRUMENTITY_H
#include "spectrum.h"
#include <QColor>
#include <Qt3DCore/QEntity>
#include <Qt3DExtras/QSphereMesh>
#include <Qt3DCore/QTransform>
#include <Qt3DExtras/QPhongMaterial>
#include <Qt3DRender/QObjectPicker>
class SpectrumEntity : public Qt3DCore::QEntity
{
Q_OBJECT
public:
SpectrumEntity(const QVector3D &position,
const QColor &color,
const Gamma::Spectrum &spec,
Qt3DCore::QEntity *parent);
~SpectrumEntity() override;
const Qt3DCore::QTransform *transform() const { return mTransform; }
const Qt3DRender::QObjectPicker *picker() const { return mPicker; }
const Gamma::Spectrum &spectrum() const { return mSpectrum; }
private:
Qt3DExtras::QSphereMesh *mMesh;
Qt3DExtras::QPhongMaterial *mMaterial;
Qt3DCore::QTransform *mTransform;
Qt3DRender::QObjectPicker *mPicker;
const Gamma::Spectrum &mSpectrum;
};
#endif // SPECTRUMENTITY_H