File size: 46,852 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 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 | /****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
**
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file gpl-2.0.txt included in the
** packaging of this file.
**
** 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
**
** This copyright notice MUST APPEAR in all copies of the script!
**
**********************************************************************/
#include "rs_dimension.h"
#include <QRegularExpression>
#include "lc_align.h"
#include "lc_dimarrowregistry.h"
#include "lc_linemath.h"
#include "muParser.h"
#include "rs_arc.h"
#include "rs_filterdxfrw.h"
#include "rs_graphicview.h"
#include "rs_information.h"
#include "rs_line.h"
#include "rs_math.h"
#include "rs_painter.h"
#include "rs_pen.h"
#include "rs_settings.h"
#include "rs_units.h"
class LC_ArrowHeadOpen;
namespace
{
// Issue #1953: Use calculations in custom Dimension text #1953
// Evaluate a single expression
// If the expression is not valid, the input expression is returned
QString evaluateFunction(const QString& expression, double dimValue) {
// the minimum expression must contain "{<>}", minimum size = 4
if (expression.size() < 4)
return expression;
// Assuming front/end "{}"
QString expr = expression.mid(1, expression.size() - 2);
const QString variable("a");
expr.replace("<>", variable);
try {
mu::Parser p;
#ifdef _UNICODE
p.DefineVar(variable.toStdWString(), &dimValue);
p.SetExpr(expr.toStdWString());
#else
p.DefineVar(variable.toStdString(), &dimValue);
p.SetExpr(expr.toStdString());
#endif
double functionValue = p.Eval();
return QString::number(functionValue);
}
catch (...) {
return expression;
}
}
/**
* @brief functionalText evaluate expressions of dimension value
* @param dimText functional expressions of dimension value:
* must be specified within curly brackets {};
* must be valid expressions:
* {<>*<>} will be replaced by the value squared x^2
* {exp(<>) * <>} will be replaced by the function value of x*exp(x)
* {sin(<>) + 1} will be replaced by the value sin(x) + 1
* @param dimValue the dimension value used to evaluate the expression
* @return the text with functional expressions evaluated
*/
QString functionalText(const QString& dimText, double dimValue) {
// matching "{*<>*<>*}"
static const QRegularExpression re{R"({([^{}<>]*(<>)[^{}<>]*)*})"};
QRegularExpressionMatch match = re.match(dimText);
if (!match.hasMatch())
return dimText;
QString ret = dimText;
for (int i = 0; i <= match.lastCapturedIndex(); ++i) {
QString captured = match.captured(i);
QString functionValue = evaluateFunction(captured, dimValue);
ret.replace(captured, functionValue);
}
return ret;
}
}
RS_DimensionData::RS_DimensionData(const RS_DimensionData& other):
RS_Flags(other),
definitionPoint(other.definitionPoint),
middleOfText(other.middleOfText),
valign(other.valign),
halign(other.halign),
lineSpacingStyle(other.lineSpacingStyle),
lineSpacingFactor(other.lineSpacingFactor),
text(other.text),
style(other.style),
angle(other.angle),
horizontalAxisDirection(other.horizontalAxisDirection),
autoText{other.autoText},
flipArrow1{other.flipArrow1},
flipArrow2{other.flipArrow2}{
if (other.m_dimStyleOverride != nullptr) {
m_dimStyleOverride.reset(other.m_dimStyleOverride->getCopy());
}
else {
m_dimStyleOverride.reset();
}
}
RS_DimensionData::RS_DimensionData():
definitionPoint(false),
middleOfText(false),
valign(RS_MTextData::VABottom),
halign(RS_MTextData::HALeft),
lineSpacingStyle(RS_MTextData::Exact),
lineSpacingFactor(0.0),
text(""),
style(""),
angle(0.0),
horizontalAxisDirection(0.0),
autoText{true}{
m_dimStyleOverride.reset();
}
/**
* Constructor with initialisation.
*
* @param definitionPoint Definition point.
* @param middleOfText Middle point of dimension text.
* @param valign Vertical alignment.
* @param halign Horizontal alignment.
* @param lineSpacingStyle Line spacing style.
* @param lineSpacingFactor Line spacing factor.
* @param text Text string entered explicitly by user or null
* or "<>" for the actual measurement or " " (one blank space).
* for suppressing the text.
* @param style Dimension style name.
* @param angle Rotation angle of dimension text away from
* default orientation.
*/
RS_DimensionData::RS_DimensionData(const RS_Vector& _definitionPoint,
const RS_Vector& _middleOfText,
RS_MTextData::VAlign _valign,
RS_MTextData::HAlign _halign,
RS_MTextData::MTextLineSpacingStyle _lineSpacingStyle,
double _lineSpacingFactor,
QString _text,
QString _style,
double _angle,
double hdir,
bool autoTextLocation,
LC_DimStyle* dimStyleOverride,
bool flp1, bool flp2):
definitionPoint(_definitionPoint)
, middleOfText(_middleOfText)
, valign(_valign)
, halign(_halign)
, lineSpacingStyle(_lineSpacingStyle)
, lineSpacingFactor(_lineSpacingFactor)
, text(_text)
, style(_style)
, angle(_angle)
, horizontalAxisDirection(hdir)
, autoText{autoTextLocation}
,flipArrow1{flp1}
,flipArrow2{flp2}{
m_dimStyleOverride.reset(dimStyleOverride);
}
std::ostream& operator <<(std::ostream& os,
const RS_DimensionData& dd) {
os << "("
<< dd.definitionPoint << ','
<< dd.middleOfText << ','
<< dd.valign << ','
<< dd.halign << ','
<< dd.lineSpacingStyle << ','
<< dd.lineSpacingFactor << ','
<< dd.text.toLatin1().data() << ','
<< dd.style.toLatin1().data() << ','
<< dd.angle
<< ")";
return os;
}
/**
* Constructor.
*/
RS_Dimension::RS_Dimension(RS_EntityContainer* parent, const RS_DimensionData& d)
: RS_EntityContainer(parent)
, m_dimGenericData(std::move(d)) {
}
RS_Dimension::RS_Dimension(const RS_Dimension& entity)
: RS_EntityContainer(entity, false)
, m_dimGenericData(std::move(entity.getData())) {
}
RS_Vector RS_Dimension::getNearestRef(const RS_Vector& coord, double* dist /*= nullptr*/) const {
// override the RS_EntityContainer method
// use RS_Entity instead for refpoint dragging
return RS_Entity::getNearestRef(coord, dist);
}
RS_Vector RS_Dimension::getNearestSelectedRef(const RS_Vector& coord, double* dist /*= nullptr*/) const {
// override the RS_EntityContainer method
// use RS_Entity instead for refpoint dragging
return RS_Entity::getNearestSelectedRef(coord, dist);
}
/**
* @return Dimension text. Either a text the user defined or
* the measured text.
*
* @param resolve false: return plain value. true: return measured
* label if appropriate.
* @see getMeasuredLabel
*/
QString RS_Dimension::getLabel(bool resolve) {
if (!resolve) {
return m_dimGenericData.text;
}
QString ret = "";
// One space suppresses the text:
if (m_dimGenericData.text == " ") {
ret = "";
}
// No text prints actual measurement:
else if (m_dimGenericData.text == "") {
ret = getMeasuredLabel();
}
// Others print the text (<> is replaced by the measurement)
else {
QString measuredStr = getMeasuredLabel();
bool okay = false;
double measured = measuredStr.toDouble(&okay);
// Issue #1953: support expressions of measured
// {<>*<>} for the squared value
// {sqrt(<>)} for the square root
if (okay) {
ret = functionalText(m_dimGenericData.text, measured);
}
ret = ret.replace(QString("<>"), getMeasuredLabel());
}
return ret;
}
/**
* Sets a new text for the label.
*/
void RS_Dimension::setLabel(const QString& l) {
m_dimGenericData.text = l;
}
/**
* Find intersections between a line and an EntityContainer. Solutions are
* sorted along the line before returning.
*
* @param infiniteLine Treat the line as infinitely long in both directions.
*/
RS_VectorSolutions RS_Dimension::getIntersectionsLineContainer(
const RS_Line* l, const RS_EntityContainer* c, bool infiniteLine) {
RS_VectorSolutions solutions_initial;
RS_VectorSolutions solutions_filtered;
const double tol = 1.0e-4;
// Find all intersections, including those beyond limits of container
// entities.
for (RS_Entity* e : *c) {
solutions_initial.push_back(RS_Information::getIntersection(l, e, false));
}
// Filter solutions based on whether they are actually on any entities.
for (const RS_Vector& vp : solutions_initial) {
for (RS_Entity* e : *c) {
if (e->isConstruction(true) || e->isPointOnEntity(vp, tol)) {
// the intersection is at least on the container, now check the line:
if (infiniteLine) {
// The line is treated as infinitely long so we don't need to
// check if the intersection is on the line.
solutions_filtered.push_back(vp);
break;
}
else if (l->isConstruction(true) || l->isPointOnEntity(vp, tol)) {
solutions_filtered.push_back(vp);
break;
}
}
}
}
/**
* We cannot sort the solutions in place because getVector() returns a
* const vector, so first construct a copy:
*/
std::vector<RS_Vector> solutions_sorted(solutions_filtered.getVector());
std::sort(solutions_sorted.begin(), solutions_sorted.end(),
[l](const RS_Vector& lhs, const RS_Vector& rhs) {
return l->getProjectionValueAlongLine(lhs) < l->getProjectionValueAlongLine(rhs);
});
return RS_VectorSolutions(solutions_sorted);
}
RS_Pen RS_Dimension::getPenForText() {
RS_Pen result(getTextColor(), RS2::WidthByBlock, RS2::SolidLine);
return result;
}
RS_Pen RS_Dimension::getPenExtensionLine(bool first) {
RS2::LineType lineType = first? getExtensionLineTypeFirst() : getExtensionLineTypeSecond();
RS_Pen result(getExtensionLineColor(), getExtensionLineWidth(), /*RS2::LineByBlock*/ lineType);
return result;
}
RS_Pen RS_Dimension::getPenDimensionLine() {
RS_Pen result(getDimensionLineColor(), getDimensionLineWidth(), /*RS2::LineByBlock*/ getDimensionLineType());
return result;
}
RS_MText* RS_Dimension::createDimText(RS_Vector textPos, double textHeight, double textAngle) {
RS_MTextData data = createDimTextData(textPos, textHeight, textAngle);
return addDimText(data);
}
RS_MText* RS_Dimension::addDimText(RS_MTextData &textData) {
auto mtext = new RS_MText(this, textData);
addDimComponentEntity(mtext, getPenForText());
mtext->update();
return mtext;
}
RS_MTextData RS_Dimension::createDimTextData(RS_Vector textPos, double textHeight, double textAngle) {
RS_MTextData textData = RS_MTextData(textPos,
textHeight, 30.0,
RS_MTextData::VAMiddle,
RS_MTextData::HACenter,
RS_MTextData::LeftToRight,
RS_MTextData::Exact,
1.0,
getLabel(),
getTextStyle(),
textAngle);
return textData;
}
/**
* Creates a horizontal-text dimensioning line (line with one, two or no arrows
* and "inside horizontal" text).
*
* @param forceAutoText Automatically reposition the text label.
*/
void RS_Dimension::createHorizontalTextDimensionLine(const RS_Vector& p1,
const RS_Vector& p2, bool showArrow1, bool showArrow2,
bool showLine1, bool showLine2,
bool forceAutoText) {
double dimscale = getGeneralScale();
double dimtxt = getTextHeight() * dimscale;
double dimgap = getDimensionLineGap() * dimscale;
double dimOffset = getVerticalDistanceToDimLine() * dimscale;
bool drawFrameAroundText = std::signbit(dimgap);
if (drawFrameAroundText) {
dimgap = -dimgap;
}
// length of dimension line:
double distance = p1.distanceTo(p2);
// arrow size:
double arrowSize = getArrowSize() * dimscale;
RS_Pen dimensionLinePen = getPenDimensionLine();
// Create dimension line:
RS_Line* dimensionLine{new RS_Line{this, p1, p2}};
RS_Line* dimensionLineInside1{nullptr};
RS_Line* dimensionLineInside2{nullptr};
RS_Line* dimensionLineOutside1{nullptr};
RS_Line* dimensionLineOutside2{nullptr};
dimensionLine->setPen(dimensionLinePen);
dimensionLine->setLayer(nullptr);
// Text label:
RS_Vector textPos;
double textAngle = 0.0;
bool autoText = !m_dimGenericData.middleOfText.valid || forceAutoText;
if (autoText) {
textPos = dimensionLine->getMiddlePoint();
//// the next update should still be able to adjust this
//// auto text position. leave it invalid
m_dimGenericData.middleOfText = textPos;
}
else {
textPos = m_dimGenericData.middleOfText;
}
auto* text = createDimText(textPos, dimtxt, textAngle);
// evaluate intersection between dim line and text
double textIntersectionLength = 0.0;
double w = text->getUsedTextWidth() / 2 + dimgap;
double h = text->getUsedTextHeight() / 2 + dimgap;
// textCorner variables correspond to the corners of the text bounding box
// if the text were to be positioned in the center of the dimensionLine.
RS_Vector textCorner1 = dimensionLine->getMiddlePoint() - RS_Vector{w, h};
RS_Vector textCorner2 = dimensionLine->getMiddlePoint() + RS_Vector{w, h};
RS_EntityContainer c;
c.addRectangle(textCorner1, textCorner2);
// treat line as infinitely long in both directions
RS_VectorSolutions sol1 = getIntersectionsLineContainer(dimensionLine, &c,true);
textIntersectionLength = sol1.get(0).distanceTo(sol1.get(1));
// determine if we should use outside arrows
bool outsideArrows = (textIntersectionLength + 3 * arrowSize) > distance;
// add arrows
// arrow angles:
double arrowAngle1 = outsideArrows ? dimensionLine->getAngle1() : dimensionLine->getAngle2();
double arrowAngle2 = outsideArrows ? dimensionLine->getAngle2() : dimensionLine->getAngle1();
const bool showArrows = arrowSize > 1e-6 * p1.distanceTo(p2);
if (outsideArrows) {
// extend dimension line outside arrows
if (showArrows) {
auto dir = RS_Vector::polar(arrowSize * 2, dimensionLine->getAngle1());
dimensionLineOutside1 = new RS_Line{this, p1 - dir, p1};
dimensionLineOutside1->setPen(dimensionLinePen);
dimensionLineOutside2 = new RS_Line{this, p2 + dir, p2};
dimensionLineOutside2->setPen(dimensionLinePen);
}
// move text to the side if it won't fit either
if (textIntersectionLength > distance && autoText) {
double dist = (textIntersectionLength + distance) / 2.0 + arrowSize * 2;
RS_Vector distH = RS_Vector::polar(dist, arrowAngle1);
text->move(distH);
textPos = text->getInsertionPoint();
m_dimGenericData.middleOfText = textPos;
}
}
double dimtsz = getTickSize() * dimscale;
LC_DimArrowRegistry dimArrowRegistry;
auto arrowStyle = m_dimStyleTransient->arrowhead();
bool firstArrowIsObliqueOrArch = false;
bool secondArrowIsObliqueOrArch = false;
if (dimtsz < 0.01) {
//display arrow
if ( showArrows) {
if (showArrow1) {
auto firstArrowName = arrowStyle->obtainFirstArrowName();
auto arrow = dimArrowRegistry.createArrowBlock(this, firstArrowName, p1, arrowAngle1, arrowSize);
addArrow(arrow.first, dimensionLinePen);
firstArrowIsObliqueOrArch = dimArrowRegistry.isObliqueOrArchArrow(firstArrowName);
}
if (showArrow2) {
auto secondArrowName = arrowStyle->obtainSecondArrowName();
auto arrow = dimArrowRegistry.createArrowBlock(this, secondArrowName, p2, arrowAngle2, arrowSize);
addArrow(arrow.first, dimensionLinePen);
secondArrowIsObliqueOrArch = dimArrowRegistry.isObliqueOrArchArrow(secondArrowName);
}
}
}
else {
if (showArrow1) { // tick 1
auto arrow = dimArrowRegistry.createArrowBlock(this, LC_DimArrowRegistry::ArrowInfo::ARROW_TYPE_OBLIQUE, p1, arrowAngle1, arrowSize);
addArrow(arrow.first, dimensionLinePen);
firstArrowIsObliqueOrArch = true;
}
if (showArrow2) { // tick 2:
auto arrow = dimArrowRegistry.createArrowBlock(this, LC_DimArrowRegistry::ArrowInfo::ARROW_TYPE_OBLIQUE, p2, arrowAngle2, arrowSize);
addArrow(arrow.first, dimensionLinePen);
secondArrowIsObliqueOrArch = true;
}
}
/*
bool displayArrows = dimtsz < 0.01 && showArrows;
if (displayArrows) {
//display arrow
// Arrows:
RS_SolidData sd{};
if (arrow1) {
// arrow 1
auto arrow = new RS_Solid(this, sd);
arrow->shapeArrow(p1,arrowAngle1, arrowSize);
addDimComponentEntity(arrow, dimensionLinePen);
}
if (arrow2) {
// arrow 2:
auto arrow = new RS_Solid(this, sd);
arrow->shapeArrow(p2,arrowAngle2, arrowSize);
addDimComponentEntity(arrow, dimensionLinePen);
}
}
else {
//display ticks
RS_Vector tickVector = RS_Vector::polar(dimtsz, arrowAngle1 + M_PI * 0.25); //tick is 45 degree away
if (arrow1) {
// tick 1
addDimComponentLine(p1 - tickVector, p1 + tickVector, dimensionLinePen);
}
if (arrow2) {// tick 2:
addDimComponentLine(p2 - tickVector, p2 + tickVector, dimensionLinePen);
}
}
*/
if (drawFrameAroundText) {
addBoundsAroundText(dimgap, text);
}
// calculate split dimension lines
bool splitDimensionLine = false;
// if (!outsideArrows) {
w = text->getUsedTextWidth() / 2 + dimgap;
h = text->getUsedTextHeight() / 2 + dimgap;
RS_Vector s1 = text->getInsertionPoint() - RS_Vector{w, h};
RS_Vector s2 = text->getInsertionPoint() + RS_Vector{w, h};
c = RS_EntityContainer();
c.addRectangle(s1, s2);
sol1 = getIntersectionsLineContainer(dimensionLine, &c);
if (sol1.size() > 1) {
// the text bounding box intersects dimensionLine on two sides
splitDimensionLine = true;
s1 = sol1.get(0);
s2 = sol1.get(1);
}
else if (sol1.size() == 1) {
// the text bounding box intersects dimensionLine on one side
splitDimensionLine = true;
if (RS_Information::isPointInsideContour(p1, &c)) {
// the dimension line begins inside the text bounds
s1 = p1;
s2 = sol1.get(0);
}
else {
// the dimension line ends inside the text bounds
s1 = sol1.get(0);
s2 = p2;
}
}
else {
// the text bounding box does not intersect with dimensionLine, but we
// should still check if dimensionLine endpoints are completely inside
// the bounding box.
if (RS_Information::isPointInsideContour(p1, &c)) {
splitDimensionLine = true;
s1 = p1;
s2 = p2;
}
}
if (splitDimensionLine) {
if (showLine1) {
dimensionLineInside1 = new RS_Line{this, p1, s1};
}
if (showLine2) {
dimensionLineInside2 = new RS_Line{this, s2, p2};
}
}
// finally, add the dimension line(s) and text to the drawing
if (outsideArrows && dimensionLineOutside1 != nullptr) {
if (showLine1){
addDimComponentEntity(dimensionLineOutside1, dimensionLinePen);
}
else {
delete dimensionLineOutside1;
}
if (showLine2) {
addDimComponentEntity(dimensionLineOutside2, dimensionLinePen);
}
else {
delete dimensionLineOutside2;
}
}
if (splitDimensionLine) {
auto dimLine = m_dimStyleTransient->dimensionLine();
if (outsideArrows) {
if (dimLine->drawPolicyForOutsideText() == LC_DimStyle::DimensionLine::DRAW_EVEN_IF_ARROWHEADS_ARE_OUTSIDE) {
addDimComponentEntity(dimensionLineInside1, dimensionLinePen);
addDimComponentEntity(dimensionLineInside2, dimensionLinePen);
}
else {
delete dimensionLineInside1;
delete dimensionLineInside2;
}
}
else {
addDimComponentEntity(dimensionLineInside1, dimensionLinePen);
addDimComponentEntity(dimensionLineInside2, dimensionLinePen);
}
}
else {
addDimComponentEntity(dimensionLine, dimensionLinePen);
}
}
RS_VectorSolutions* RS_Dimension::determineTextAreaBounds(RS_MText* text, double dimGap){
auto* result = new RS_VectorSolutions();
double w = text->getUsedTextWidth()/2 + dimGap;
double h = text->getUsedTextHeight()/2 + dimGap;
result->push_back({-w, -h});
result->push_back({-w, h});
result->push_back({w, h});
result->push_back({w, -h});
double ofsx = 0.0;
double ofsy = 0.0;
switch (text->getHAlign()) {
case RS_MTextData::HALeft : ofsx = w; break;
case RS_MTextData::HARight : ofsx = -w; break;
default:;
}
switch (text->getVAlign()) {
case RS_MTextData::VABottom : ofsy = h; break;
case RS_MTextData::VATop : ofsy = -h; break;
default:;
}
result->move(RS_Vector(ofsx, ofsy, 0.0));
result->rotate(RS_Vector(0,0,0), text->getAngle());
result->move(text->getInsertionPoint());
return result;
}
void RS_Dimension::addBoundsAroundText(double dimgap, RS_MText* text) {
auto textBounds = determineTextAreaBounds(text, dimgap);
addDimDimensionLine(textBounds->at(0), textBounds->at(1));
addDimDimensionLine(textBounds->at(1), textBounds->at(2));
addDimDimensionLine(textBounds->at(2), textBounds->at(3));
addDimDimensionLine(textBounds->at(3), textBounds->at(0));
delete textBounds;
}
void RS_Dimension::addArrow(RS_Entity* arrow, RS_Pen &dimensionPen) {
addDimComponentEntity(arrow, dimensionPen);
if (arrow->rtti()==RS2::EntityInsert) {
arrow->update();
}
}
/**
* Creates an aligned-text dimensioning line (line with one, two or no arrows
* and aligned text).
*
* @param forceAutoText Automatically reposition the text label.
*/
void RS_Dimension::createAlignedTextDimensionLine(const RS_Vector& p1,
const RS_Vector& p2, bool showArrow1, bool showArrow2,
[[maybe_unused]]bool showLine1, [[maybe_unused]]bool showLine2,
bool forceAutoText) {
double dimscale = getGeneralScale();
double dimtxt = getTextHeight() * dimscale;
double dimgap = getDimensionLineGap() * dimscale;
double dimOffset = getVerticalDistanceToDimLine() * dimscale;
bool drawFrameAroundText = std::signbit(dimgap);
if (drawFrameAroundText) {
dimgap = -dimgap;
}
// length of dimension line:
double distance = p1.distanceTo(p2);
// arrow size:
double arrowSize = getArrowSize() * dimscale;
double dimtsz = getTickSize() * dimscale;
if (dimtsz > 0.01) {
arrowSize = dimtsz;
}
// do we have to put the arrows outside of the line?
bool outsideArrows = (distance < arrowSize * 2.5);
// arrow angles:
double arrowAngle1, arrowAngle2;
double dimAngle1 = p1.angleTo(p2);
RS_Vector firstArrowOffsetVector = RS_Vector::polar(arrowSize, dimAngle1);
RS_Vector dimP1 = p1 + firstArrowOffsetVector;
RS_Vector secondArrowOffsetVector = RS_Vector::polar(arrowSize, dimAngle1);
RS_Vector dimP2 = p2 - secondArrowOffsetVector;
RS_Pen dimensionPen = getPenDimensionLine();
// Create dimension line:
auto* dimensionLine = addDimComponentLine(dimP1, dimP2, dimensionPen);
auto midPoint = (dimP1 + dimP2)*0.5;
// Text label:
RS_Vector textPos;
bool corrected = false;
double textAngle = RS_Math::makeAngleReadable(dimAngle1, true, &corrected);
if (m_dimGenericData.middleOfText.valid && !forceAutoText) {
textPos = m_dimGenericData.middleOfText;
}
else {
textPos = midPoint;
// rotate text so it's readable from the bottom or right (ISO)
// quadrant 1 & 4
double const a = corrected ? -M_PI_2 : M_PI_2;
RS_Vector distV = RS_Vector::polar(dimOffset + dimtxt / 2.0, dimAngle1 + a);
// move text away from dimension line:
textPos += distV;
//// the next update should still be able to adjust this
//// auto text position. leave it invalid
m_dimGenericData.middleOfText = textPos;
}
auto text = createDimText(textPos, dimtxt, textAngle);
// move text to the side:
RS_Vector distH;
double usedTextWidth = text->getUsedTextWidth();
if (usedTextWidth > distance) {
distH.setPolar(usedTextWidth / 2.0 + distance / 2.0 + dimgap, textAngle);
text->move(distH);
}
if (drawFrameAroundText) {
addBoundsAroundText(dimgap, text);
}
// add arrows
// extend dimension line outside arrows
bool flipArrow1 = false;
bool flipArrow2 = false;
if (outsideArrows) {
arrowAngle1 = dimensionLine->getAngle1();
arrowAngle2 = dimensionLine->getAngle2();
RS_Vector dir = RS_Vector::polar(arrowSize * 2, arrowAngle2);
dimensionLine->setStartpoint(p1 + dir);
dimensionLine->setEndpoint(p2 - dir);
}
else {
flipArrow1 = isFlipArrow1();
flipArrow2 = isFlipArrow2();
if (flipArrow1) {
arrowAngle1 = dimensionLine->getAngle1();
RS_Vector dir = RS_Vector::polar(arrowSize * 2, arrowAngle1);
dimensionLine->setStartpoint(p1 - dir);
}
else {
arrowAngle1 = dimensionLine->getAngle2();
}
if (flipArrow2) {
arrowAngle2 = dimensionLine->getAngle2();
RS_Vector dir = RS_Vector::polar(arrowSize * 2, arrowAngle2);
dimensionLine->setEndpoint(p2 - dir);
}
else {
arrowAngle2 = dimensionLine->getAngle1();
}
}
LC_DimArrowRegistry dimArrowRegistry;
auto arrowStyle = m_dimStyleTransient->arrowhead();
bool firstArrowIsObliqueOrArch = false;
bool secondArrowIsObliqueOrArch = false;
double dimLineOffsetFirst{0.0};
double dimLineOffsetSecond{0.0};
if (dimtsz < 0.01) {
//display arrow
if (showArrow1) {
auto firstArrowName = arrowStyle->obtainFirstArrowName();
auto arrow = dimArrowRegistry.createArrowBlock(this, firstArrowName, p1, arrowAngle1, arrowSize);
addArrow(arrow.first, dimensionPen);
firstArrowIsObliqueOrArch = dimArrowRegistry.isObliqueOrArchArrow(firstArrowName);
RS_Vector firstArrowAdjustmentVector;
if (flipArrow1) {
dimLineOffsetFirst = arrow.second * arrowSize + 3*arrowSize;
firstArrowAdjustmentVector = RS_Vector::polar(dimLineOffsetFirst, dimAngle1);
}
else {
dimLineOffsetFirst = arrow.second * arrowSize;
firstArrowAdjustmentVector = RS_Vector::polar(dimLineOffsetFirst, dimAngle1);
}
dimensionLine->setStartpoint(dimP1-firstArrowAdjustmentVector);
}
if (showArrow2) {
auto secondArrowName = arrowStyle->obtainSecondArrowName();
auto arrow = dimArrowRegistry.createArrowBlock(this, secondArrowName, p2, arrowAngle2, arrowSize);
addArrow(arrow.first, dimensionPen);
secondArrowIsObliqueOrArch = dimArrowRegistry.isObliqueOrArchArrow(secondArrowName);
RS_Vector secondArrowAdjustmentVector;
if (flipArrow2) {
dimLineOffsetSecond = arrow.second * arrowSize + 3 * arrowSize;
secondArrowAdjustmentVector = RS_Vector::polar(dimLineOffsetSecond, dimAngle1);
}
else {
dimLineOffsetSecond = arrow.second * arrowSize;
secondArrowAdjustmentVector = RS_Vector::polar(dimLineOffsetSecond, dimAngle1);
}
dimensionLine->setEndpoint(dimP2+secondArrowAdjustmentVector);
}
}
else {
if (showArrow1) { // tick 1
auto arrow = dimArrowRegistry.createArrowBlock(this, LC_DimArrowRegistry::ArrowInfo::ARROW_TYPE_OBLIQUE, p1, arrowAngle1, arrowSize);
addArrow(arrow.first, dimensionPen);
firstArrowIsObliqueOrArch = true;
dimLineOffsetFirst = arrow.second * arrowSize;
RS_Vector firstArrowAdjustmentVector = RS_Vector::polar(dimLineOffsetFirst, dimAngle1);
dimensionLine->setEndpoint(dimP2-firstArrowAdjustmentVector);
}
if (showArrow2) { // tick 2:
auto arrow = dimArrowRegistry.createArrowBlock(this, LC_DimArrowRegistry::ArrowInfo::ARROW_TYPE_OBLIQUE, p2, arrowAngle2, arrowSize);
addArrow(arrow.first, dimensionPen);
secondArrowIsObliqueOrArch = true;
dimLineOffsetSecond = arrow.second * arrowSize;
RS_Vector secondArrowAdjustmentVector = RS_Vector::polar(dimLineOffsetSecond, dimAngle1);
dimensionLine->setEndpoint(dimP2+secondArrowAdjustmentVector);
}
}
// draw extent dim line for oblique arrow type, if any
RS_Vector extOffsetVector{false};
double obliqueExtent = m_dimStyleTransient->dimensionLine()->distanceBeyondExtLinesForObliqueStroke();
if (LC_LineMath::isMeaningful(obliqueExtent)) {
obliqueExtent = obliqueExtent * dimscale;
if (firstArrowIsObliqueOrArch) {
extOffsetVector = RS_Vector::polar(obliqueExtent, dimAngle1);
addDimComponentLine(p1, p1 - extOffsetVector, dimensionPen);
}
if (secondArrowIsObliqueOrArch) {
if (!extOffsetVector.valid) {
extOffsetVector = RS_Vector::polar(obliqueExtent, dimAngle1);
}
addDimComponentLine(p2, p2 + extOffsetVector, dimensionPen);
}
}
}
/**
* Creates a dimensioning line (line with one, two or no arrows and a text).
*
* @param forceAutoText Automatically reposition the text label.
*/
void RS_Dimension::createDimensionLine(const RS_Vector& dimLineStart, const RS_Vector& dimLineEnd,
bool showArrow1, bool showArrow2, bool showLine1, bool showLine2, bool forceAutoText) {
if (getInsideHorizontalText()) {
createHorizontalTextDimensionLine(dimLineStart, dimLineEnd, showArrow1, showArrow2, showLine1, showLine2, forceAutoText);
}
else {
createAlignedTextDimensionLine(dimLineStart, dimLineEnd, showArrow1, showArrow2, showLine1,showLine2, forceAutoText);
}
}
/**
* @return general factor for linear dimensions. $DIMLFAC
*/
double RS_Dimension::getGeneralFactor() {
return m_dimStyleTransient->scaling()->linearFactor();
// return getGraphicVariable("$DIMLFAC", 1.0, 40);
}
/**
* @return General scale for dimensions (DIMSCALE)
*/
double RS_Dimension::getGeneralScale() {
return m_dimStyleTransient->scaling()->scale();
// return getGraphicVariable("$DIMSCALE", 1.0, 40);
}
/**
* @return arrow size in drawing units - $DIMASZ
*/
double RS_Dimension::getArrowSize() {
return m_dimStyleTransient->arrowhead()->size();
// return getGraphicVariable("$DIMASZ", 2.5, 40);
}
/**
* @return tick size in drawing units - $DIMTSZ
*/
double RS_Dimension::getTickSize() {
return m_dimStyleTransient->arrowhead()->tickSize();
// return getGraphicVariable("$DIMTSZ", 0., 40);
}
/**
* @return extension line overlength in drawing units. definition line definition (DIMEXE)
*/
double RS_Dimension::getExtensionLineExtension() {
return m_dimStyleTransient->extensionLine()->distanceBeyondDimLine();
// return getGraphicVariable("$DIMEXE", 1.25, 40);
}
/**
* @return extension line offset from entities in drawing units. // distance from entities (DIMEXO)
*/
double RS_Dimension::getExtensionLineOffset() {
return m_dimStyleTransient->extensionLine()->distanceFromOriginPoint();
// return getGraphicVariable("$DIMEXO", 0.625, 40);
}
/**
* @return extension line gap to text in drawing units. // text distance to line (DIMGAP)
*/
double RS_Dimension::getDimensionLineGap() {
return m_dimStyleTransient->dimensionLine()->lineGap();
// return getGraphicVariable("$DIMGAP", 0.625, 40);
}
double RS_Dimension::getVerticalDistanceToDimLine() {
auto text = m_dimStyleTransient->text();
if (text->verticalPositioning() != LC_DimStyle::Text::CENTER_BETWEEN_EXT_LINES) {
return text->verticalDistanceToDimLine();
}
else {
return m_dimStyleTransient->dimensionLine()->lineGap();
}
// return getGraphicVariable("$DIMGAP", 0.625, 40);
}
/**
* @return Dimension labels text height. // text height (DIMTXT)
*/
double RS_Dimension::getTextHeight() {
return m_dimStyleTransient->text()->height();
// return getGraphicVariable("$DIMTXT", 2.5, 40);
}
/**
* @return Dimension labels alignment text true= horizontal, false= aligned. - $DIMTIH
*/
bool RS_Dimension::getInsideHorizontalText() {
auto orientationPolicy = m_dimStyleTransient->text()->orientationInside();
return orientationPolicy == LC_DimStyle::Text::TextOrientationPolicy::DRAW_HORIZONTALLY;
// int v = getGraphicVariableInt("$DIMTIH", 1);
// if (v > 0) {
// addGraphicVariable("$DIMTIH", 1, 70);
// getGraphicVariableInt("$DIMTIH", 1);
// return true;
// }
// return false;
}
/**
* @return Dimension fixed length for extension lines true= fixed, false= not fixed - $DIMFXLON
*/
bool RS_Dimension::getFixedLengthOn() {
return m_dimStyleTransient->extensionLine()->hasFixedLength();
// int v = getGraphicVariableInt("$DIMFXLON", 0);
// if (v == 1) {
// addGraphicVariable("$DIMFXLON", 1, 70);
// getGraphicVariableInt("$DIMFXLON", 0);
// return true;
// }
// return false;
}
/**
* @return Dimension fixed length for extension lines.
*/
double RS_Dimension::getFixedLength() {
return m_dimStyleTransient->extensionLine()->fixedLength();
// return getGraphicVariable("$DIMFXL", 1.0, 40);
}
/**
* @return extension line Width.
*/
RS2::LineWidth RS_Dimension::getExtensionLineWidth() {
return m_dimStyleTransient->extensionLine()->lineWidth();
// return RS2::intToLineWidth(getGraphicVariableInt("$DIMLWE", -2)); //default -2 (RS2::WidthByBlock)
}
/**
* @return dimension line Width.
*/
RS2::LineWidth RS_Dimension::getDimensionLineWidth() {
return m_dimStyleTransient->dimensionLine()->lineWidth();
// return RS2::intToLineWidth(getGraphicVariableInt("$DIMLWD", -2)); //default -2 (RS2::WidthByBlock)
}
RS2::LineType RS_Dimension::getExtensionLineTypeFirst() {
RS2::LineType result = m_dimStyleTransient->extensionLine()->lineTypeFirst();
return result;
}
RS2::LineType RS_Dimension::getExtensionLineTypeSecond() {
RS2::LineType result = m_dimStyleTransient->extensionLine()->lineTypeSecond();
return result;
}
RS2::LineType RS_Dimension::getDimensionLineType() {
RS2::LineType result = m_dimStyleTransient->dimensionLine()->lineType();
return result;
}
/**
* @return dimension line Color.
*/
RS_Color RS_Dimension::getDimensionLineColor() {
// fixme - sand - temporary debug code
return m_dimStyleTransient->dimensionLine()->color();
// return RS_FilterDXFRW::numberToColor(getGraphicVariableInt("$DIMCLRD", 0));
}
/**
* @return extension line Color.
*/
RS_Color RS_Dimension::getExtensionLineColor() {
// fixme - sand - temporary debug code
return m_dimStyleTransient->extensionLine()->color();
// return RS_FilterDXFRW::numberToColor(getGraphicVariableInt("$DIMCLRE", 0));
}
/**
* @return dimension text Color.
*/
RS_Color RS_Dimension::getTextColor() {
return m_dimStyleTransient->text()->color();
// return RS_FilterDXFRW::numberToColor(getGraphicVariableInt("$DIMCLRT", 0));
}
/**
* @return text style for dimensions.
*/
QString RS_Dimension::getTextStyle() {
return m_dimStyleTransient->text()->style();
// return getGraphicVariableString("$DIMTXSTY", "standard");
}
RS2::LinearFormat RS_Dimension::getDimLinearFormat() {
return m_dimStyleTransient->linearFormat()->format();
// return getGraphicVariableInt("$DIMLUNIT", 2);
}
int RS_Dimension::getDimDecimalPlaces() {
return m_dimStyleTransient->linearFormat()->decimalPlaces();
// return getGraphicVariableInt("$DIMDEC", 4);
}
int RS_Dimension::getDimTrailingZerosSuppressionMode() {
return m_dimStyleTransient->zerosSuppression()->linearRaw();
// return getGraphicVariableInt("$DIMZIN", 1);
}
int RS_Dimension::getDimDecimalFormatSeparatorChar() {
return m_dimStyleTransient->linearFormat()->decimalFormatSeparatorChar();
// return getGraphicVariableInt(QStringLiteral("$DIMDSEP"), 0);
}
/**
* @return the given graphic variable or the default value given in mm
* converted to the graphic unit.
* If the variable is not found it is added with the given default
* value converted to the local unit.
*/
double RS_Dimension::getGraphicVariable(const QString& key, double defMM, int code) {
double v = getGraphicVariableDouble(key, RS_MINDOUBLE);
if (v <= RS_MINDOUBLE) {
addGraphicVariable(key, RS_Units::convert(defMM, RS2::Millimeter, getGraphicUnit()), code);
v = getGraphicVariableDouble(key, 1.0);
}
return v;
}
/**
* Removes zeros from angle string.
*
* @param angle The string representing angle.
* @param zeros Zeros suppression (0 none, 1 suppress leading, 2 suppress trailing, 3 both)
* Decimal separator are '.'
*
* @ret String with the formatted angle.
*/
QString RS_Dimension::stripZerosAngle(QString angle, int zeros) {
if (zeros == 0) {
//do nothing
return angle;
}
if (zeros & 2 && (angle.contains(QString('.')) || angle.contains(QString(',')))) {
int end = angle.size() - 1;
QChar format = angle[end--]; //stores & skip format char
while (end > 0 && angle[end] == QChar('0')) {
// locate first 0 from end
end--;
}
if (angle[end] == QChar('.')) {
end--;
}
angle.truncate(end + 1);
angle.append(format);
}
if (zeros & 1) {
if (angle[0] == QChar('0') && angle[1] == QChar('.')) {
angle = angle.remove(0, 1);
}
}
return angle;
}
/**
* Removes zeros from linear string.
*
* @param linear The string representing linear measure.
* @param zeros Zeros suppression (see dimzin)
*
* @ret String with the formatted linear measure.
*/
QString RS_Dimension::stripZerosLinear(QString linear, int zeros) {
//do nothing
if (zeros == 1) {
return linear;
}
// return at least 1 character in string
if (linear.size() <= 1) {
return linear;
}
// if removing of trailing zeroes is needed
if (zeros & 8 && (linear.contains(QString('.')) || linear.contains(QString(',')))) {
// search index
int i = linear.size() - 1;
// locate first 0 in row from right
while (i > 0 && linear[i] == QChar('0')) {
i--;
}
// strip decimal point
if ((linear[i] == QChar('.') || linear[i] == QChar(',')) && i > 0) {
i--;
}
// strip zeros. Leave at least one character at the beginning
linear = linear.remove(i + 1, linear.size() - i);
}
// if removing of initial zeroes is needed
if (zeros & 4) {
int i = 0;
// locate last 0 in row from left
while (i < linear.size() - 1 && linear[i] == QChar('0')) {
i++;
}
linear = linear.remove(0, i);
}
return linear;
}
void RS_Dimension::move(const RS_Vector& offset) {
m_dimGenericData.definitionPoint.move(offset);
m_dimGenericData.middleOfText.move(offset);
}
void RS_Dimension::rotate(const RS_Vector& center, double angle) {
RS_Vector angleVector(angle);
m_dimGenericData.definitionPoint.rotate(center, angleVector);
m_dimGenericData.middleOfText.rotate(center, angleVector);
m_dimGenericData.angle = RS_Math::correctAngle(m_dimGenericData.angle + angle);
}
void RS_Dimension::rotate(const RS_Vector& center, const RS_Vector& angleVector) {
m_dimGenericData.definitionPoint.rotate(center, angleVector);
m_dimGenericData.middleOfText.rotate(center, angleVector);
m_dimGenericData.angle = RS_Math::correctAngle(m_dimGenericData.angle + angleVector.angle());
}
void RS_Dimension::scale(const RS_Vector& center, const RS_Vector& factor) {
m_dimGenericData.definitionPoint.scale(center, factor);
m_dimGenericData.middleOfText.scale(center, factor);
}
void RS_Dimension::mirror(const RS_Vector& axisPoint1, const RS_Vector& axisPoint2) {
m_dimGenericData.definitionPoint.mirror(axisPoint1, axisPoint2);
m_dimGenericData.middleOfText.mirror(axisPoint1, axisPoint2);
}
void RS_Dimension::update() {
clear();
if (isUndone()) {
return;
}
resolveEffectiveDimStyleAndUpdateDim();
calculateBorders();
}
LC_DimStyle* RS_Dimension::getGlobalDimStyle() {
auto dimStyleName = getStyle();
auto globalDimStyle = getGraphic()->getResolvedDimStyle(dimStyleName, rtti());
return globalDimStyle;
}
LC_DimStyle* RS_Dimension::getEffectiveDimStyle() {
auto dimStyleName = getStyle();
LC_DimStyle* result = getGraphic()->getEffectiveDimStyle(dimStyleName, rtti(), getDimStyleOverride());
return result;
}
void RS_Dimension::resolveEffectiveDimStyleAndUpdateDim() {
m_dimStyleTransient = getEffectiveDimStyle();
if (m_dimStyleTransient != nullptr) { // it migth be null during reading of file of example
doUpdateDim();
if (getDimStyleOverride() != nullptr) {
delete m_dimStyleTransient; // delete a copy of style that was created for override
}
}
m_dimStyleTransient = nullptr;
}
void RS_Dimension::updateDim(bool autoText) {
m_dimGenericData.autoText = autoText;
clear();
if (isUndone()) {
return;
}
resolveEffectiveDimStyleAndUpdateDim();
}
void RS_Dimension::addDimComponentEntity(RS_Entity* en, const RS_Pen &pen) {
if (en != nullptr) {
en->setPen(pen);
en->setLayer(nullptr);
addEntity(en);
}
}
RS_Line* RS_Dimension::addDimExtensionLine(RS_Vector start, RS_Vector end, bool first) {
return addDimComponentLine(start, end, getPenExtensionLine(first));
}
RS_Line* RS_Dimension::addDimDimensionLine(RS_Vector start, RS_Vector end) {
return addDimComponentLine(start, end, getPenDimensionLine());
}
RS_Arc* RS_Dimension::addDimArc(RS_ArcData& arcData) {
auto arc = new RS_Arc(this, arcData);
RS_Pen pen = getPenDimensionLine();
addDimComponentEntity(arc, pen);
return arc;
}
RS_Line* RS_Dimension::addDimComponentLine(RS_Vector start, RS_Vector end, const RS_Pen &pen) {
auto line = new RS_Line(this, {start, end});
line->setPen(pen);
line->setLayer(nullptr);
addEntity(line);
return line;
}
QString RS_Dimension::createLinearMeasuredLabel(double dist) {
RS_Graphic* graphic = getGraphic();
QString ret;
if (graphic) {
// int dimlunit = getDimLinearFormat();
int dimdec = getDimDecimalPlaces();
int dimzin = getDimTrailingZerosSuppressionMode();
// RS2::LinearFormat format = graphic->convertLinearFormatDXF2LC(dimlunit); // fixme - sand - move to generic utils!
RS2::LinearFormat format = getDimLinearFormat(); // fixme - sand - move to generic utils!
ret = RS_Units::formatLinear(dist, getGraphicUnit(), format, dimdec);
if (format == RS2::Decimal) {
ret = stripZerosLinear(ret, dimzin);
}
//verify if units are decimal and comma separator
if (format == RS2::Decimal || format == RS2::ArchitecturalMetric){
if (getDimDecimalFormatSeparatorChar() == 44) {
ret.replace(QChar('.'), QChar(','));
}
}
}
else {
ret = QString("%1").arg(dist);
}
return ret;
}
double RS_Dimension::prepareLabelLinearDistance(double distance) {
double dist = distance * getGeneralFactor();
if (!LC_GET_ONE_BOOL("Appearance", "UnitlessGrid", true)) {
dist = RS_Units::convert(dist);
}
return dist;
}
|