Wed, 26 Feb 2020 22:26:05 +0200
PartRenderer::modelToScreenCoordinates FINALLY WORKS
24 | 1 | /* |
2 | * LDForge: LDraw parts authoring CAD | |
3 | * Copyright (C) 2013 - 2020 Teemu Piippo | |
4 | * | |
5 | * This program is free software: you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation, either version 3 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
0 | 19 | #pragma once |
2 | 20 | #include <QString> |
21 | #include <QVector> | |
22 | #include <QSet> | |
7
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
23 | #include <memory> |
3 | 24 | #include "basics.h" |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
25 | #include "utility.h" |
20 | 26 | #include "maths.h" |
55 | 27 | #include "geometry.h" |
2 | 28 | |
7
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
29 | namespace settingGroups |
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
30 | { |
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
31 | // List of setting groups |
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
32 | constexpr char mainwindow[] = "mainwindow"; |
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
33 | } |
21 | 34 | |
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
35 | namespace ldraw |
21 | 36 | { |
37 | // Uniquely identifies a model body object | |
38 | struct Id | |
39 | { | |
46 | 40 | std::int32_t value; |
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
41 | constexpr bool operator<(ldraw::Id other) const |
26 | 42 | { |
43 | return this->value < other.value; | |
44 | } | |
51 | 45 | friend constexpr unsigned int qHash(ldraw::Id id) |
46 | { | |
47 | return qHash(id.value); | |
48 | } | |
49 | friend bool operator==(ldraw::Id one, ldraw::Id other) | |
50 | { | |
51 | return one.value == other.value; | |
52 | } | |
21 | 53 | }; |
46 | 54 | using id_t = Id; |
55 | constexpr id_t NULL_ID = id_t{0}; | |
21 | 56 | } |
22
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
57 | |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
58 | constexpr std::size_t operator""_z(const unsigned long long int x) |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
59 | { |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
60 | return static_cast<std::size_t>(x); |
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
61 | } |
26 | 62 | |
63 | inline QString operator""_q(const char* string, const unsigned long int length) | |
64 | { | |
65 | Q_UNUSED(length) | |
66 | return QString{string}; | |
67 | } | |
68 | ||
69 | inline QPointF pointToPointF(const QPoint& point) | |
70 | { | |
71 | return {static_cast<qreal>(point.x()), static_cast<qreal>(point.y())}; | |
72 | } | |
73 | ||
74 | inline QPoint pointFToPoint(const QPointF& point) | |
75 | { | |
76 | return {static_cast<int>(std::round(point.x())), static_cast<int>(std::round(point.y()))}; | |
77 | } | |
78 | ||
79 | /** | |
80 | * \brief Hints to the specified vector that a certain amount of new elements are going to be added. | |
81 | * \param vector vector to consider | |
82 | * \param amount amount of new elements to expect | |
83 | */ | |
84 | template<typename T> | |
85 | void reserveMore(std::vector<T>& vector, std::size_t amount) | |
86 | { | |
87 | vector.reserve(vector.size() + amount); | |
88 | } |