4
4
#include < fstream>
5
5
6
6
7
+ #include < boost/geometry/algorithms/area.hpp>
8
+ #include < boost/geometry/strategies/cartesian/area_surveyor.hpp>
7
9
#include < boost/geometry/algorithms/correct.hpp>
8
10
#include < boost/geometry/algorithms/intersects.hpp>
9
11
#include < boost/math/constants/constants.hpp>
@@ -33,7 +35,8 @@ void QuadTree::copy(const QuadTree& q) {
33
35
_totalX = q._totalX ;
34
36
_totalY = q._totalY ;
35
37
_maxDepth = q._maxDepth ;
36
- precision = q.precision ;
38
+ precision = q.precision ;
39
+ _area = q._area ;
37
40
}
38
41
39
42
/* *
@@ -70,7 +73,8 @@ QuadTree& QuadTree::operator=(QuadTree&& q) {
70
73
_totalX = q._totalX ;
71
74
_totalY = q._totalY ;
72
75
_maxDepth = q._maxDepth ;
73
- precision = q.precision ;
76
+ precision = q.precision ;
77
+ _area = q._area ;
74
78
}
75
79
76
80
return *this ;
@@ -113,7 +117,8 @@ QuadTree::QuadTree(Shape& s, float precision) :
113
117
than precision can be detected by the quadtree
114
118
*/
115
119
QuadTree::QuadTree (MultiPolygon& mult, float precision, unsigned id)
116
- : Shape(mult, id), trees(nullptr ), precision(precision) {
120
+ : Shape(mult, id), trees(nullptr ), precision(precision) {
121
+ _area = bg::area (mult);
117
122
float rotationAngle = 360 .f / quadsNumber;
118
123
float currentAngle = 0 .f ;
119
124
trees = new InnerQuadTree*[quadsNumber];
@@ -175,55 +180,52 @@ QuadTree::QuadTree(MultiPolygon& mult, float precision, unsigned id)
175
180
* @param q
176
181
* @return
177
182
*/
178
- bool QuadTree::intersectsWith (const QuadTree& q ) const {
179
- cerr << " QuadTree instersect called " << endl ;
183
+ bool QuadTree::intersectsWith (const Shape& s ) const {
184
+ const QuadTree& q = static_cast < const QuadTree &>(s) ;
180
185
return trees[currentTree]->intersectsRec (*q.trees [q.currentTree ], _totalX, _totalY,
181
186
q._totalX , q._totalY );
182
187
}
183
188
184
189
/* *
185
- * @brief QuadTree::translater translates the QuadTree position
186
- * @param x
187
- * @param y
188
- */
189
- void QuadTree::translater (float x, float y) {
190
- _totalX += x;
191
- _totalY += y;
192
- }
193
-
194
- /* *
195
- * @brief QuadTree::rotater rotate a QuadTree
190
+ * @brief QuadTree::rotate overload of Shape::rotate for quadtrees
191
+ * rotate a QuadTree
196
192
* The rotation is around the (0,0) point by default
197
193
* Better rotation is possible with the possibility to choose the rotation point
198
194
* @param angle rotation angle in degree, stored in radians
199
195
*/
200
- void QuadTree::rotater (float angle) {
201
- unsigned newQuad = (int ) round (angle * quadsNumber / 360 ) % quadsNumber;
202
- float newAngle = pi * angle / 180 .f ;
203
- // Compute the tree position
204
- float newX = cos (newAngle) * _totalX - sin (newAngle) * _totalY;
205
- float newY = sin (newAngle) * _totalX + cos (newAngle) * _totalY;
206
- newX += treesOffset[newQuad].x ();
207
- newY += treesOffset[newQuad].y ();
208
- currentTree = newQuad;
209
- }
210
-
211
- /* *
212
- * @brief QuadTree::rotate overload of Shape::rotate for quadtrees
213
- * @param x
214
- * @param y
215
- */
216
- void QuadTree::rotate (double angle) {
217
- rotater (angle);
196
+ void QuadTree::rotate (double degrees) {
197
+ float anglePrecision = 360.0 / quadsNumber;
198
+ float angle = static_cast <float >(degrees) + anglePrecision*currentTree;
199
+ _totalX -= treesOffset[currentTree].x ();
200
+ _totalY -= treesOffset[currentTree].y ();
201
+
202
+ unsigned newQuad = (int ) round (angle / anglePrecision) % quadsNumber;
203
+ float newAngle = pi * angle / 180 .f ;
204
+ // Compute the tree position
205
+ float newX = cos (newAngle) * _totalX - sin (newAngle) * _totalY;
206
+ float newY = sin (newAngle) * _totalX + cos (newAngle) * _totalY;
207
+ _totalX = newX + treesOffset[newQuad].x ();
208
+ _totalY = newY + treesOffset[newQuad].y ();
209
+ currentTree = newQuad;
218
210
}
219
211
220
212
/* *
221
213
* @brief QuadTree::translate overload of Shape::translate for quadtrees
214
+ * translates the QuadTree position
222
215
* @param x
223
216
* @param y
224
217
*/
225
218
void QuadTree::translate (double Tx, double Ty) {
226
- translater (Tx, Ty);
219
+ _totalX += static_cast <float >(Tx);
220
+ _totalY += static_cast <float >(Ty);
221
+ }
222
+
223
+ void QuadTree::envelope (Box& b) const {
224
+ b = {{_totalX,_totalY},{_totalX+trees[currentTree]->x2 ,_totalY+trees[currentTree]->y2 }};
225
+ }
226
+
227
+ int QuadTree::area () const {
228
+ return _area;
227
229
}
228
230
229
231
/* *
@@ -234,6 +236,7 @@ void QuadTree::translate(double Tx, double Ty) {
234
236
std::ostream& operator <<(std::ostream& s, const QuadTree& q) {
235
237
s << " QuadTree n° : " << q.getIdentifier () << endl;
236
238
s << " Absolute Position : (" << q._totalX << " ," << q._totalY << " ) " << endl;
239
+ s << " Current tree (angle) : " << q.currentTree << " (" << 30 *q.currentTree << " )" << endl;
237
240
238
241
s << " Trees : " << std::endl;
239
242
for (unsigned i = 0 ; i < q.quadsNumber ; i++)
0 commit comments