File size: 24,010 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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 | /*******************************************************************************
*
This file is part of the LibreCAD project, a 2D CAD program
Copyright (C) 2024 LibreCAD.org
Copyright (C) 2024 sand1024
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 "lc_orthogonalgrid.h"
#include "lc_lattice.h"
#include "rs_math.h"
LC_OrthogonalGrid::LC_OrthogonalGrid(LC_GridSystem::LC_GridOptions *options):LC_GridSystem(options) {}
LC_OrthogonalGrid::~LC_OrthogonalGrid() = default;
void LC_OrthogonalGrid::prepareGridOther(const RS_Vector &viewZero, const RS_Vector &viewSize) {
// find meta grid boundaries
projectMetaGridLinesAmount(m_metaGridCellSize);
ensureAllMetaGridLinesInView(viewZero, viewSize);
fillMetaGridCoordinates();
determineGridBoundaries(viewZero, viewSize);
}
void LC_OrthogonalGrid::createCellVector(const RS_Vector &gridWidth) { m_cellVector = {fabs(gridWidth.x), fabs(gridWidth.y)}; }
void LC_OrthogonalGrid::createGridPoints([[maybe_unused]]const RS_Vector &min, [[maybe_unused]]const RS_Vector &max, const RS_Vector &gridWidth, bool drawGridWithoutGaps, int numPointsTotal) {
m_gridLattice->update(0.0, 0.0, gridWidth, numPointsTotal);
if (drawGridWithoutGaps) {
m_gridLattice->fill(numPointsXTotal, numPointsYTotal, m_gridBasePoint, false, false);
} else {
fillPointsLatticeWithGapsForMetaGrid();
}
}
void LC_OrthogonalGrid::determineGridBoundaries(const RS_Vector &viewZero,const RS_Vector &viewSize) {
// find grid boundaries
double gridX = m_gridCellSize.x;
double gridY = m_gridCellSize.y;
double left = truncToStep(viewZero.x, gridX);
double right = truncToStep(viewSize.x, gridX);
double top = truncToStep(viewZero.y, gridY);
double bottom = truncToStep(viewSize.y, gridY);
left -= gridX;
right += gridX;
top += gridY;
bottom -= gridY;
gridMin.x = left;
gridMax.x = right;
gridMin.y = bottom;
gridMax.y = top;
// cellV.set(fabs(gridX), fabs(gridY));
m_gridBasePoint.set(left, bottom);
}
RS_Vector LC_OrthogonalGrid::snapGrid(const RS_Vector& coord) const {
double gridX = m_gridCellSize.x;
double gridY = m_gridCellSize.y;
if(gridX < RS_TOLERANCE || gridY < RS_TOLERANCE) {
return coord;
}
RS_Vector correctionVector;
if (m_hasAxisIndefinite){
if (m_indefiniteX){
RS_Vector vp(coord-RS_Vector(0, m_gridBasePoint.y));
correctionVector = RS_Vector(0, remainder(vp.y, gridY));
}
else{
RS_Vector vp(coord-RS_Vector(m_gridBasePoint.x,0));
correctionVector = RS_Vector(remainder(vp.x, gridX), 0);
}
}
else{
RS_Vector vp(coord-m_gridBasePoint);
correctionVector = RS_Vector(remainder(vp.x, gridX), remainder(vp.y, gridY));
}
return coord - correctionVector;
}
void LC_OrthogonalGrid::fillPointsLatticeWithGapsForMetaGrid() {
RS_Vector tileBasePoint;
// if metagrid is visible, we generate points with gaps, so there is no overlap between metagrid lines and points
// to achieve this, we'll generate points for each individual cell of metagrid
std::vector<double> metaX;
std::vector<double> metaY;
// create meta grid coordinates arrays:
if (m_numMetaX > 0) {
metaX.resize(m_numMetaX);
int i = 0;
for (int x = 0; x < m_numMetaX; ++x) {
metaX[i++] = m_metaGridMin.x + x * m_metaGridCellSize.x;
}
}
if (m_numMetaY > 0) {
int i = 0;
metaY.resize(m_numMetaY);
for (int y = 0; y < m_numMetaY; ++y) {
metaY[i++] = m_metaGridMin.y + y * m_metaGridCellSize.y;
}
}
// first fill by points fully visible metaGrid cells
if (m_numMetaX > 0 && m_numMetaY > 0) {
for (int mx = 0; mx < m_numMetaX - 1; ++mx) {
tileBasePoint.x = metaX[mx];
for (int my = 0; my < m_numMetaY - 1; ++my) {
tileBasePoint.y = metaY[my];
m_gridLattice->fill(m_numPointsInMetagridX, m_numPointsInMetagridY, tileBasePoint, false, false);
}
}
}
// fill top row
tileBasePoint.y = m_metaGridMax.y;
for (int mx = 0; mx < m_numMetaX - 1; ++mx) {
tileBasePoint.x = metaX[mx];
m_gridLattice->fill(m_numPointsInMetagridX, numPointsYTop, tileBasePoint, false, false);
}
/*if (numMetaX > 1 && numMetaY == 0) {
// very rare case - view height is so small, that no horizontal metaGrid lines in view - but there are vertical ones. Or, some irregular user grid
// is used (with spacing by X smaller than spacing by Y) on large zoom level
// to central tiles should be filled too
tileBasePoint.y = gridBasePointIfMetagridNotVisible.y;
for (int mx = 0; mx < numMetaX - 1; ++mx) {
tileBasePoint.x = metaX[mx];
gridLattice->fill(numPointsInMetagridX, numPointsYTop, tileBasePoint, false, false);
}
}*/
// fill right column
tileBasePoint.x = m_metaGridMax.x;
// if (numMetaX == 0) { // no vid
// tileBasePoint.x = gridBasePointIfMetagridNotVisible.x;
// }
for (int my = 0; my < m_numMetaY - 1; ++my) {
tileBasePoint.y = metaY[my];
m_gridLattice->fill(numPointsXRight, m_numPointsInMetagridY, tileBasePoint, false, false);
}
// fill right top corner
tileBasePoint.y = m_metaGridMax.y;
// if (numMetaY == 0) {
// tileBasePoint.y = gridBasePointIfMetagridNotVisible.y;
// }
m_gridLattice->fill(numPointsXRight, numPointsYTop, tileBasePoint, false, false);
// fill right bottom corner
tileBasePoint.y = m_metaGridMin.y;
// if (numMetaX == 0) { // no vid
// tileBasePoint.x = gridBasePointIfMetagridNotVisible.x;
// }
m_gridLattice->fill(numPointsXRight, numPointsYBottom, tileBasePoint, false, true);
// fill bottom row
tileBasePoint.y = m_metaGridMin.y;
for (int mx = 0; mx < m_numMetaX - 1; ++mx) {
tileBasePoint.x = metaX[mx];
m_gridLattice->fill(m_numPointsInMetagridX, numPointsYBottom, tileBasePoint, false, true);
}
// fill left column
tileBasePoint.x = m_metaGridMin.x;
for (int my = 0; my < m_numMetaY - 1; ++my) {
tileBasePoint.y = metaY[my];
m_gridLattice->fill(numPointsXLeft, m_numPointsInMetagridY, tileBasePoint, true, false);
}
// fill left bottom corner
tileBasePoint.y = m_metaGridMin.y;
m_gridLattice->fill(numPointsXLeft, numPointsYBottom, tileBasePoint, true, true);
// fill left top corner
tileBasePoint.y = m_metaGridMax.y;
/*if (numMetaY == 0) {
tileBasePoint.y = gridBasePointIfMetagridNotVisible.y;
}*/
m_gridLattice->fill(numPointsXLeft, numPointsYTop, tileBasePoint, true, false);
}
int LC_OrthogonalGrid::determineTotalPointsAmount(bool drawGridWithoutGaps) {
if (drawGridWithoutGaps) {
m_numPointsInMetagridX++;
m_numPointsInMetagridY++;
numPointsXTotal = (RS_Math::round((gridMax.x - gridMin.x) / m_gridCellSize.x) + 1);
numPointsYTotal = (RS_Math::round((gridMax.y - gridMin.y) / m_gridCellSize.y) + 1);
} else {
numPointsXTotal = numPointsXLeft + m_numPointsInMetagridX * m_numMetaX + numPointsXRight;
numPointsYTotal = numPointsYTop + m_numPointsInMetagridY * m_numMetaY + numPointsYBottom;
}
int result = numPointsYTotal * numPointsXTotal;
return result;
}
void LC_OrthogonalGrid::determineGridPointsAmount(const RS_Vector &viewZero) {
double gridX = m_gridCellSize.x;
if (m_numMetaX > 0){
m_numPointsInMetagridX = RS_Math::round(m_metaGridCellSize.x / gridX) - 1;
numPointsXLeft = RS_Math::round((m_metaGridMin.x - gridMin.x) / gridX) - 1;
numPointsXRight = RS_Math::round((gridMax.x - m_metaGridMax.x) / gridX) - 1;
}
else{ // no metaGrid lines visible on screen at all
numPointsXRight = RS_Math::round((gridMax.x+m_metaGridCellSize.x - gridMin.x) / gridX) - 1;
}
gridBasePointIfMetagridNotVisible.x = viewZero.x - remainder(m_metaGridViewOffset.x, gridX);
double gridY = m_gridCellSize.y;
if (m_numMetaY > 0) {
m_numPointsInMetagridY = RS_Math::round(m_metaGridCellSize.y / gridY) - 1;
numPointsYBottom = RS_Math::round((m_metaGridMin.y - gridMin.y) / gridY) - 1;
numPointsYTop = RS_Math::round((gridMax.y - m_metaGridMax.y) / gridY) - 1;
}
else{
numPointsYTop = RS_Math::round((gridMax.y + m_metaGridCellSize.y - gridMin.y) / gridY) - 1;
}
gridBasePointIfMetagridNotVisible.y = gridMin.y - remainder(m_metaGridViewOffset.y, gridY);
}
void LC_OrthogonalGrid::projectMetaGridLinesAmount(const RS_Vector &metaGridWidth) {
// make projection regarding the number of visible meta grid lines:
m_numMetaX = RS_Math::round((m_metaGridMax.x - m_metaGridMin.x) / metaGridWidth.x) + 1;
m_numMetaY = RS_Math::round((m_metaGridMax.y - m_metaGridMin.y) / metaGridWidth.y) + 1;
}
void LC_OrthogonalGrid::determineMetaGridBoundaries(
const RS_Vector &viewZero, const RS_Vector &viewSize) {// determine coordinate (in graph coordinate system) for leftmost vertical metaGrid line
m_metaGridMin.x = truncToStep(viewZero.x, m_metaGridCellSize.x);
// determine rightmost coordinate (in graph coordinate system) for vertical metaGrid line
m_metaGridMax.x = truncToStep(viewSize.x, m_metaGridCellSize.x);
// determine topmost horizontal metaGridLine
m_metaGridMax.y = truncToStep(viewZero.y, m_metaGridCellSize.y);
// determine bottom horizontal metaGridLine
m_metaGridMin.y = truncToStep(viewSize.y, m_metaGridCellSize.y);
// determine offset from left top corner of view to start position of grid. That position may be outside of view
// for very large zoom and small size of view. That offset is needed to handle the case where no metaGrid
// lines (either vert or hor) are visible within view.
m_metaGridViewOffset = RS_Vector(viewZero.x - m_metaGridMin.x, viewSize.y - m_metaGridMin.y);
}
/**
* Check pre-calculated coordinates and ensures that metaGrid lines are not outside of view (so all they are visible and within boundaries of the
* view or there there is not metagrid lines in
* view at all)
* @param viewZero
* @param viewWidth
* @param viewHeight
*/
void LC_OrthogonalGrid::ensureAllMetaGridLinesInView(const RS_Vector &viewZero, const RS_Vector &viewSize) {// check that leftmost line is visible in view
double metaWidthX = m_metaGridCellSize.x;
double metaWidthY = m_metaGridCellSize.y;
if (viewZero.x > m_metaGridMin.x) {
m_numMetaX--;
m_metaGridMin.x += metaWidthX;
}
// check that rightmost line is visible
double lastGridX = m_metaGridMin.x + metaWidthX * (m_numMetaX - 1);
if (lastGridX > viewSize.x) {
m_numMetaX--;
m_metaGridMax.x -= metaWidthX;
}
// ensure that horizontal metaGrid lines are within view and so visible
// check bottom line visible
if (viewSize.y > m_metaGridMin.y) {
m_numMetaY--;
m_metaGridMin.y += metaWidthY;
}
// check top metaGrid line visible
if (viewZero.y < m_metaGridMax.y) {
m_numMetaY--;
m_metaGridMax.y -= metaWidthY;
}
}
void LC_OrthogonalGrid::fillMetaGridCoordinates() {
m_metaGridMax.x = m_metaGridMin.x + (m_numMetaX - 1) * m_metaGridCellSize.x;
m_metaGridMax.y = m_metaGridMin.y + (m_numMetaY - 1) * m_metaGridCellSize.y;
}
void LC_OrthogonalGrid::createMetaGridLines(const RS_Vector& min, const RS_Vector &max){
m_metaGridLattice->update(0, 0, m_metaGridCellSize, m_numMetaX * m_numMetaY * 4);
// draw vertical lines
if (m_numMetaX > 0) {
doCreateVerticalLines(m_metaGridLattice.get(), min.y, max.y, m_metaGridMin.x, m_metaGridCellSize.x, m_numMetaX);
m_metaGridLattice->addLine(m_metaGridMin.x, min.y, m_metaGridMin.x, max.y);
}
// draw horizontal line for orthogonal grid
if (m_numMetaY > 0) {
doCreateHorizontalLines(m_metaGridLattice.get(), min.x, max.x, m_metaGridMin.y, m_metaGridCellSize.y, m_numMetaY);
m_metaGridLattice->addLine(min.x, m_metaGridMin.y, max.x, m_metaGridMin.y);
}
}
#define DEBUG_META_GRID_
void LC_OrthogonalGrid::drawMetaGridLines(RS_Painter *painter, LC_GraphicViewport *view) {
// draw meta grid:
doDrawLines(painter, view, m_metaGridLattice.get());
#ifdef DEBUG_META_GRID
RS2::LineType penLineType = m_gridOptions->metaGridLineType;
int metaGridLineWidthPx = m_gridOptions->metaGridLineWidthPx;
double uiFirstMX = view->toGuiX( m_metaGridMin.x);
double uiFirstMY = view->toGuiY(m_metaGridMin.y);
RS_Vector viewMetaGridCellSize = view->toGuiD(m_metaGridCellSize);
if (m_numMetaX > 0) {
const double mx0 = uiFirstMX;
const double mxLast = uiFirstMX + (m_numMetaX - 1) * viewMetaGridCellSize.x;
int height = view->height();
if (m_numMetaX > 1) {
painter->setPen({RS_Color(QColor("red")), RS2::Width01, penLineType}, metaGridLineWidthPx);
painter->drawLine(RS_Vector(mx0, 0), RS_Vector(mx0, height));
painter->setPen({RS_Color(QColor("blue")), RS2::Width01, penLineType}, metaGridLineWidthPx);
painter->drawLine(RS_Vector(mxLast, 0), RS_Vector(mxLast, height));
}
else {
painter->setPen({RS_Color(QColor("yellow")), RS2::Width01, penLineType}, metaGridLineWidthPx);
painter->drawLine(RS_Vector(mx0, 0), RS_Vector(mx0, height));
}
}
if (m_numMetaY > 0) {
const double my0 = uiFirstMY;
const double myLast = uiFirstMY - (m_numMetaY - 1) * viewMetaGridCellSize.y;
int width = view->width();
if (m_numMetaY > 1) {
painter->setPen({RS_Color(QColor("red")), RS2::Width01, penLineType}, metaGridLineWidthPx);
painter->drawLine(RS_Vector(0, my0), RS_Vector(width, my0));
painter->setPen({RS_Color(QColor("blue")), RS2::Width01, penLineType}, metaGridLineWidthPx);
painter->drawLine(RS_Vector(0, myLast), RS_Vector(width, myLast));
}
else{
painter->setPen({RS_Color(QColor("yellow")), RS2::Width01, penLineType}, metaGridLineWidthPx);
painter->drawLine(RS_Vector(0, my0), RS_Vector(width, my0));
}
}
painter->setPen({RS_Color(QColor("cyan")), RS2::Width01, penLineType}, metaGridLineWidthPx);
painter->drawRect(RS_Vector(uiFirstMX, uiFirstMY) - 5, RS_Vector(uiFirstMX, uiFirstMY) + 5);
#endif
}
void LC_OrthogonalGrid::createGridLinesWithoutGaps(const RS_Vector &min, const RS_Vector &max) {
// draw vertical line
double firstMX = 0;
double firstMY = 0;
firstMX = m_metaGridMin.x;
firstMY = m_metaGridMin.y;
auto metaGridWidthX = m_metaGridCellSize.x;
auto metaGridWidthY = m_metaGridCellSize.y;
bool noMetaGrid = !m_gridOptions->drawMetaGrid;
int pointsInMetaGridX = noMetaGrid ? m_numPointsInMetagridX : (m_numPointsInMetagridX - 1);
int pointsInMetaGridY = noMetaGrid ? m_numPointsInMetagridY : (m_numPointsInMetagridY - 1);
// simpler mode for grid drawing - here we ensure that grid line is not drawn over metaGrid lines if they are present
// however, grid line may intersect grid line
m_gridLattice->updateForLines(0, 0, m_gridCellSize, RS_Vector(0, 0), numPointsYTotal * numPointsXTotal * 4);
// draw vertical lines
double minY = min.y;
double maxY = max.y;
double gridX = m_gridCellSize.x;
createVerticalLines(minY, maxY, firstMX, -gridX, numPointsXLeft);
double metaX = firstMX;
for (int i = 0; i < m_numMetaX - 1; i++) {
createVerticalLines(minY, maxY, metaX, gridX, pointsInMetaGridX);
metaX += metaGridWidthX;
}
createVerticalLines(minY, maxY, metaX, gridX, numPointsXRight);
if (noMetaGrid){
m_gridLattice->addLine(firstMX, minY, firstMX, maxY);
}
// draw horizontal lines
double minX = min.x;
double maxX = max.x;
double gridY = m_gridCellSize.y;
createHorizontalLines(minX, maxX, firstMY, -gridY, numPointsYBottom);
double metaY = firstMY;
for (int i = 0; i < m_numMetaY - 1; i++) {
createHorizontalLines(minX, maxX, metaY, gridY, pointsInMetaGridY);
metaY += metaGridWidthY;
}
createHorizontalLines(minX, maxX, metaY, gridY, numPointsYTop);
if (noMetaGrid){
m_gridLattice->addLine(minX, firstMY, maxX, firstMY);
}
}
void LC_OrthogonalGrid::createGridLines(const RS_Vector& min, const RS_Vector &max, [[maybe_unused]]const RS_Vector& gridWidth, bool drawGridWithoutGaps, const RS_Vector& lineOffset) {
if (drawGridWithoutGaps) {
createGridLinesWithoutGaps(min, max);
} else {
createGridLinesWithGaps(min, max, lineOffset);
}
}
void LC_OrthogonalGrid::createGridLinesWithGaps(const RS_Vector &min, const RS_Vector &max, const RS_Vector &lineOffset) {
double height = max.y;
double width = max.x;
double minX = min.x;
double minY = min.y;
// draw vertical line
double firstMX = 0;
double firstMY = 0;
firstMX = m_metaGridMin.x;
firstMY = m_metaGridMin.y;
auto metaWidthX = m_metaGridCellSize.x;
auto metaWidthY = m_metaGridCellSize.y;
bool noMetaGrid = !m_gridOptions->drawMetaGrid;
int pointsInMetaGridX = noMetaGrid ? m_numPointsInMetagridX : (m_numPointsInMetagridX - 1);
int pointsInMetaGridY = noMetaGrid ? m_numPointsInMetagridY : (m_numPointsInMetagridY - 1);
// the most accurate yet complex drawing mode - here we ensure that
// grid lines are not drawn in metaGrid positions - PLUS - there is no intersections between grid lines and metaGrid lines
m_gridLattice->updateForLines(0, 0, m_gridCellSize, lineOffset, numPointsYTotal * numPointsXTotal * 4);
double metaX = firstMX;
double metaY = firstMY;
double sizeDeltaX = lineOffset.x;
double sizeDeltaY = lineOffset.y;
double lastMY = firstMY + (m_numMetaY - 1) * metaWidthY;
double lastMX = firstMX + (m_numMetaX - 1) * metaWidthX;
double vStart, vEnd, hStart, hEnd;
double startShiftY = sizeDeltaY;
double endShiftY = - sizeDeltaY * 2;
double endShiftYHalf = - sizeDeltaY;
double startShiftX = sizeDeltaX;
double endShiftX = - sizeDeltaX/* * 2*/;
double gridX = m_gridCellSize.x;
double gridY = m_gridCellSize.y;
for (int i = 0; i < m_numMetaX - 1; i++) {
vStart = firstMY + startShiftY; // shift between lines
vEnd = vStart + metaWidthY + endShiftY;
hStart = metaX + startShiftX; // shift on px
hEnd = metaX + metaWidthX + endShiftX; // shift on px
metaY = firstMY;
for (int j = 0; j < m_numMetaY - 1; j++) {
createVerticalLines(vStart, vEnd, metaX, gridX, pointsInMetaGridX + 1);
createHorizontalLines(hStart, hEnd, metaY, gridY, pointsInMetaGridY + 1);
vStart += metaWidthY;
vEnd += metaWidthY;
metaY += metaWidthY;
}
metaX += metaWidthX;
}
// bottom row
metaX = firstMX;
vStart = height/* + startShiftY*/;
vEnd = firstMY + endShiftYHalf;
for (int i = 0; i < m_numMetaX - 1; i++) {
hStart = metaX + startShiftX;
hEnd = metaX + metaWidthX + endShiftX;
createVerticalLines(vStart, vEnd, metaX, gridX, pointsInMetaGridX + 1);
createHorizontalLines(hStart, hEnd, firstMY, -gridY, numPointsYBottom);
metaX += metaWidthX;
}
// top row
metaX = firstMX;
vStart = lastMY + startShiftY;
vEnd = minY/* + endShiftYHalf*/;
for (int i = 0; i < m_numMetaX - 1; i++) {
hStart = metaX + startShiftX;
hEnd = metaX + metaWidthX + endShiftX;
createVerticalLines(vStart, vEnd, metaX, gridX, pointsInMetaGridX + 1);
createHorizontalLines(hStart, hEnd, lastMY, gridY, numPointsYTop);
metaX += metaWidthX;
}
// left column
metaY = firstMY;
hStart = minX/* + startShiftX*/;
hEnd = firstMX + endShiftX;
for (int i = 0; i < m_numMetaY - 1; i++) {
vStart = metaY + startShiftY;
vEnd = metaY + metaWidthY + endShiftYHalf;
createVerticalLines(vStart, vEnd, firstMX, -gridX, numPointsXLeft);
createHorizontalLines(hStart, hEnd, metaY, gridY, pointsInMetaGridY + 1);
metaY += metaWidthY;
}
// right column
metaY = firstMY;
hStart = lastMX + startShiftX;
hEnd = width/* + endShiftX*/;
for (int i = 0; i < m_numMetaY - 1; i++) {
vStart = metaY + startShiftY;
vEnd = metaY + metaWidthY + endShiftYHalf;
createVerticalLines(vStart, vEnd, lastMX, gridX, numPointsXRight);
createHorizontalLines(hStart, hEnd, metaY, gridY, pointsInMetaGridY + 1);
metaY += metaWidthY;
}
// left top corners horizontal
hStart = minX/* + startShiftX*/;
hEnd = firstMX + endShiftX;
createHorizontalLines(hStart, hEnd, lastMY, gridY, numPointsYTop);
// left bottom corners horizontal
createHorizontalLines(hStart, hEnd, firstMY, -gridY, numPointsYBottom);
// left top vertical
vStart = lastMY + startShiftY;
vEnd = minY/* + endShiftYHalf*/;
createVerticalLines(vStart, vEnd, firstMX, -gridX, numPointsXLeft);
// left bottom vertical
vStart = height/* + startShiftY*/;
vEnd = firstMY + endShiftYHalf;
createVerticalLines(vStart, vEnd, firstMX, -gridX, numPointsXLeft);
// right bottom vertical
vStart = height/* + startShiftY*/;
vEnd = firstMY + endShiftYHalf;
hStart = lastMX + startShiftX;
hEnd = width/* + endShiftX*/;
createVerticalLines(vStart, vEnd, lastMX, gridX, numPointsXRight);
createHorizontalLines(hStart, hEnd, firstMY, -gridY, numPointsYBottom);
// right top vertical
vStart = lastMY + startShiftY;
vEnd = minY/* + endShiftYHalf*/;
createVerticalLines(vStart, vEnd, lastMX, gridX, numPointsXRight);
createHorizontalLines(hStart, hEnd, lastMY, gridY, numPointsYTop);
}
void LC_OrthogonalGrid::doCreateVerticalLines(LC_Lattice* lattice, const double &start, const double &end, const double &baseX, const double &delta, const int &pointsToDraw) const {
double currentX = baseX + delta;
for (int j= 0; j < pointsToDraw; j++) {
lattice->addLine(currentX, start, currentX, end);
currentX += delta;
}
}
void LC_OrthogonalGrid::createVerticalLines(const double &start, const double &end, const double &baseX, const double &delta, const int &pointsToDraw) const {
doCreateVerticalLines(m_gridLattice.get(), start, end, baseX, delta, pointsToDraw);
}
void LC_OrthogonalGrid::doCreateHorizontalLines(LC_Lattice* lattice, const double &start, const double &end, const double &baseY, const double &delta, const int &pointsToDraw) const {
double currentY = baseY + delta;
for (int j= 0; j < pointsToDraw; j++) {
lattice->addLine(start, currentY, end, currentY);
currentY += delta;
}
}
void LC_OrthogonalGrid::createHorizontalLines(const double &start, const double &end, const double &baseY, const double &delta, const int &pointsToDraw) const {
doCreateHorizontalLines(m_gridLattice.get(), start, end, baseY, delta, pointsToDraw);
}
|