File size: 8,304 Bytes
a5ffdcd | 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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | /****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2015 R. van Twisk (librecad@rvt.dds.nl)
** Copyright (C) 2015 Dongxu Li (dongxuli2011@gmail.com)
** Copyright (C) 2015 librecad.org (www.librecad.org)
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 2
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**********************************************************************/
#include<iostream>
#include "lc_rect.h"
#include <QDebug>
#include <qlogging.h>
#define INTERT_TEST(s) qDebug()<<"\ntesting " #s; \
assert(s); \
qDebug()<<"Passed";
using namespace lc::geo;
Coordinate LC_Rect::Vector(Coordinate const& p, Coordinate const& q) {
return {q.x - p.x, q.y - p.y};
}
/**
* Create a new Area. The coordinates coordA and coordB will be ordered so that minP will always be < maxP
* The coordinates are not allowed to describe a volume
*
* @param CoordA First coordinate of an area
* @param CoordB Second coordinate of an area
*/
LC_Rect::Area(const Coordinate& coordA, const Coordinate& coordB) :
_minP{std::min(coordA.x, coordB.x), std::min(coordA.y, coordB.y)},
_maxP{std::max(coordA.x, coordB.x), std::max(coordA.y, coordB.y)}
{
}
LC_Rect::Area() :
_minP{std::numeric_limits<double>::max(), std::numeric_limits<double>::max()},
_maxP{std::numeric_limits<double>::min(), std::numeric_limits<double>::min()}
{}
/**
* @brief Area
* given at a coordinate with a given width and height
* @param coordA
* @param width
* @param height
*/
LC_Rect::Area(const Coordinate& coord, double width, double height):
Area(coord, {coord.x + width, coord.y + height})
{}
/**
* Return the smallest corner (smallest xy-coordinates)
*/
const Coordinate& LC_Rect::minP() const {
return _minP;
}
/**
* Return the highest corner
*/
const Coordinate& LC_Rect::maxP() const {
return _maxP;
}
/**
* @brief topLeftCorner return the upperLeftCorner coordinates
* _minP is considered lowerLeft, _maxP is the upperRight
* @return {_minP.x, _maxP.y}
*/
Coordinate LC_Rect::upperLeftCorner() const {
return {_minP.x, _maxP.y};
}
Coordinate LC_Rect::upperRightCorner() const {
return _maxP;
}
/**
* @brief lowerRightCorner return the lowerRight coordinates
* _minP is considered lowerLeft, _maxP is the upperRight
* @return {_maxP.x, _minP.y}
*/
Coordinate LC_Rect::lowerRightCorner() const {
return {_maxP.x, _minP.y};
}
Coordinate LC_Rect::lowerLeftCorner() const {
return _minP;
}
/**
* @brief width
* Returns the wid th of this area
* @return
*/
double LC_Rect::width() const {
return _maxP.x - _minP.x;
}
/**
* @brief height
* Returns the height f this area
* @return
*/
double LC_Rect::height() const {
return _maxP.y - _minP.y;
}
bool LC_Rect::isEmpty(double tolerance) const {
return std::min(width(), height()) < tolerance;
}
/**
* @brief Test of a specific point lies within an area
* @param point Point to test against
* @return boolean true of the point is within the area
*/
bool LC_Rect::inArea(const Coordinate& point, double tolerance) const {
return (point.x >= _minP.x - tolerance && point.x <= _maxP.x + tolerance && point.y >= _minP.y - tolerance && point.y <= _maxP.y + tolerance);
}
/**
* @brief inArea
* test if this object's fit's fully in area
* @param area
* @return
*/
bool LC_Rect::inArea(const Area& area) const {
return _minP.x >= area._minP.x && _minP.y >= area._minP.y && _maxP.x <= area._maxP.x && _maxP.y <= area._maxP.y;
}
/**
* @brief overlaps
* returns true if any overlap is happening between the two area's, even if otherArea fit's within this area
* @param other
* @return
*/
bool LC_Rect::overlaps(const Area& otherArea) const {
return intersects(otherArea);
}
/**
* @brief numCornersInside
* count the number of corners this object has in otherArea
* @param other
* @return
*/
short LC_Rect::numCornersInside(const Area& otherArea) const {
short pointsInside = 0;
if (otherArea.inArea(_minP)) {
pointsInside++;
}
if (otherArea.inArea(_maxP)) {
pointsInside++;
}
if (otherArea.inArea(upperLeftCorner())) {
pointsInside++;
}
if (otherArea.inArea(lowerRightCorner())) {
pointsInside++;
}
return pointsInside;
}
/**
* @brief merge
* two area's and expand if required to largest containing area
* @param other
* @return
*/
Area LC_Rect::merge(const Area& other) const {
return {
{std::min(other.minP().x, this->minP().x), std::min(other.minP().y, this->minP().y)},
{std::max(other.maxP().x, this->maxP().x), std::max(other.maxP().y, this->maxP().y)}
};
}
/**
* @brief merge
* two area's and expand if required to largest containing area
* @param other
* @return
*/
Area LC_Rect::merge(const Coordinate& other) const {
return {
{std::min(other.x, this->minP().x), std::min(other.y, this->minP().y)},
{std::max(other.x, this->maxP().x), std::max(other.y, this->maxP().y)}
};
}
/**
* @brief merge
* two area's and expand if required to largest containing area
* @param other
* @param tolerance, tolerance to detect zero size intersection
* @return
*/
Area LC_Rect::intersection(const Area& other, double tolerance) const {
Area const ret{
{std::max(other.minP().x, this->minP().x), std::max(other.minP().y, this->minP().y)},
{std::min(other.maxP().x, this->maxP().x), std::min(other.maxP().y, this->maxP().y)}
};
if (ret.width() < tolerance || ret.height() < tolerance) {
return {};
}
return ret;
}
bool LC_Rect::intersects(Area const& rhs, double tolerance) const {
return maxP().x + tolerance >= rhs.minP().x &&
maxP().y + tolerance >= rhs.minP().y &&
rhs.maxP().x + tolerance >= minP().x &&
rhs.maxP().y + tolerance >= minP().y;
}
/**
* @brief top
* vector of this area
* @return
*/
Coordinate LC_Rect::top() const {
return Vector(upperLeftCorner(), _maxP);
}
/**
* @brief bottom
* vector of this area
* @return
*/
Coordinate LC_Rect::bottom() const {
return Vector(_minP, lowerRightCorner());
}
/**
* @brief left
* vector for this area
* @return
*/
Coordinate LC_Rect::left() const {
return Vector(_minP, upperLeftCorner());
}
/**
* @brief right
* vector of this area
* @return
*/
Coordinate LC_Rect::right() const {
return Vector(lowerRightCorner(), _maxP);
}
/**
* Increase the area on each side by increaseBy
*/
Area LC_Rect::increaseBy(double increaseBy) const {
return {_minP - increaseBy, _maxP + increaseBy};
}
std::array<Coordinate, 4> LC_Rect::vertices() const
{
return {{lowerLeftCorner(), lowerRightCorner(),
upperRightCorner(), upperLeftCorner()}};
}
std::ostream& operator<<(std::ostream& os, const Area& area) {
os << "Area(" << area.minP() << " " << area.maxP() << ")";
return os;
}
void LC_Rect::unitTest() {
LC_Rect const rect0{{0., 0.}, {1., 1.}};
LC_Rect const rect1{{0.5, 0.5}, {1.5, 1.5}};
LC_Rect const rect2{{1.5, 1.5}, {2.5, 2.5}};
LC_Rect const rect3{{0.0, 1.}, {1.5, 1.5}};
//intersects() tests
INTERT_TEST(rect0.intersects(rect1))
INTERT_TEST(rect1.intersects(rect0))
INTERT_TEST(rect1.intersects(rect2))
INTERT_TEST(rect2.intersects(rect1))
INTERT_TEST(!rect0.intersects(rect2))
INTERT_TEST(!rect2.intersects(rect0))
INTERT_TEST(rect2.intersects(rect3))
INTERT_TEST(rect3.intersects(rect2))
// inArea() tests
INTERT_TEST(rect0.inArea({0.1, 0.1}))
INTERT_TEST(rect0.inArea({0.5, 0.5}))
INTERT_TEST(!rect0.inArea({1.1, 1.1}))
INTERT_TEST(!rect0.inArea({-1.1, -1.1}))
}
|