File size: 62,027 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 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 | // lc_hyperbola.cpp
/*******************************************************************************
*
This file is part of the LibreCAD project, a 2D CAD program
Copyright (C) 2025 LibreCAD.org
Copyright (C) 2025 Dongxu Li (github.com/dxli)
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 <algorithm>
#include <cmath>
#include <limits>
#include <vector>
#include <boost/math/quadrature/gauss_kronrod.hpp>
#include "lc_hyperbola.h"
#include "lc_quadratic.h"
#include "rs_debug.h"
#include "rs_line.h"
#include "rs_math.h"
#include "rs_painter.h"
//=====================================================================
// Construction
//=====================================================================
LC_HyperbolaData::LC_HyperbolaData(const RS_Vector &c, const RS_Vector &m,
double r, double a1, double a2, bool rev)
: center(c), majorP(m), ratio(r), angle1(a1), angle2(a2), reversed(rev) {}
// In lc_hyperbola.cpp – updated LC_HyperbolaData constructor (foci + point)
LC_HyperbolaData::LC_HyperbolaData(const RS_Vector &f0, const RS_Vector &f1,
const RS_Vector &p)
: center((f0 + f1) * 0.5) {
if (!p.valid || !f0.valid || !f1.valid) {
majorP = RS_Vector(0, 0);
return;
}
double d0 = f0.distanceTo(p); // distance to focus1 (f0)
double d1 = f1.distanceTo(p); // distance to focus2 (f1)
double dc = f0.distanceTo(f1);
double diff = std::abs(d0 - d1); // |d_far - d_near|
if (dc < RS_TOLERANCE || diff < RS_TOLERANCE) {
majorP = RS_Vector(0, 0);
return;
}
// Always use right branch (reversed = false)
// Choose majorP direction toward the closer focus
// This ensures the selected branch is always the "right" branch
// mathematically
RS_Vector closerFocus = (d0 < d1) ? f0 : f1;
// Vector from center to closer focus (standard form has vertex toward closer
// focus) But we want vertex toward farther focus for right branch Standard
// hyperbola: (x/a)^2 - (y/b)^2 = 1 opens right/left We orient majorP toward
// the branch containing the point (closer focus side)
majorP = closerFocus - center;
// Compute ratio = b/a
// |d1 - d2| = 2a
double a = diff * 0.5;
double c = dc * 0.5; // distance from center to each focus
double b = std::sqrt(c * c - a * a);
if (b < RS_TOLERANCE) {
majorP = {};
return;
}
ratio = b / a;
majorP = majorP.normalized() * a;
}
bool LC_HyperbolaData::isValid() const {
LC_Hyperbola tempHb{nullptr, *this};
return tempHb.isValid();
}
RS_Vector LC_HyperbolaData::getFocus1() const {
RS_Vector df = majorP * std::sqrt(1. + ratio * ratio);
return center + df;
}
RS_Vector LC_HyperbolaData::getFocus2() const {
RS_Vector df = majorP * std::sqrt(1. + ratio * ratio);
return center - df;
}
/**
* Stream output operator for LC_HyperbolaData.
*
* Provides human-readable formatted output for debugging and logging.
* Example output:
* HyperbolaData{center=(0,0), majorP=(5,0), ratio=1.5, angle1=0, angle2=0,
* reversed=false}
*/
std::ostream &operator<<(std::ostream &os, const LC_HyperbolaData &d) {
os << "HyperbolaData{"
<< "center=" << d.center << ", majorP=" << d.majorP
<< ", ratio=" << d.ratio << ", angle1=" << d.angle1
<< ", angle2=" << d.angle2
<< ", reversed=" << (d.reversed ? "true" : "false") << "}";
return os;
}
LC_Hyperbola::LC_Hyperbola(RS_EntityContainer *parent,
const LC_HyperbolaData &d)
: LC_CachedLengthEntity(parent), data(d),
m_bValid(d.majorP.squared() >= RS_TOLERANCE2) {
LC_Hyperbola::calculateBorders();
}
LC_Hyperbola::LC_Hyperbola(const RS_Vector &f0, const RS_Vector &f1,
const RS_Vector &p)
: LC_Hyperbola(nullptr, LC_HyperbolaData(f0, f1, p)) {}
LC_Hyperbola::LC_Hyperbola(RS_EntityContainer *parent,
const std::vector<double> &coeffs)
: LC_CachedLengthEntity(parent), m_bValid(false) {
createFromQuadratic(coeffs);
}
LC_Hyperbola::LC_Hyperbola(RS_EntityContainer *parent, const LC_Quadratic &q)
: LC_CachedLengthEntity(parent), m_bValid(false) {
createFromQuadratic(q);
}
//=====================================================================
// Factory methods from quadratic
//=====================================================================
bool LC_Hyperbola::createFromQuadratic(const LC_Quadratic &q) {
std::vector<double> ce = q.getCoefficients();
if (ce.size() < 6)
return false;
double A = ce[0], B = ce[1], C = ce[2];
double D = ce[3], E = ce[4], F = ce[5];
// === Step 1: Classify conic type using discriminant ===
double disc = B * B - 4.0 * A * C;
if (disc <= 0.0)
return false; // Not a hyperbola (ellipse or parabola)
// === Step 2: Degeneracy check using 3x3 determinant ===
double det = A * (C * F - E * E / 4.0) -
B / 2.0 * (B / 2.0 * F - D * E / 2.0) +
D / 2.0 * (B / 2.0 * E - D * C / 2.0);
if (std::abs(det) < RS_TOLERANCE)
return false; // Degenerate (e.g., two lines)
// === Step 3: Find rotation angle to eliminate xy term ===
double theta = 0.0;
if (std::abs(B) > RS_TOLERANCE) {
theta = 0.5 * std::atan2(B, A - C);
}
double ct = std::cos(theta);
double st = std::sin(theta);
// Rotate quadratic terms
double Ap = A * ct * ct + B * ct * st + C * st * st;
double Cp = A * st * st - B * ct * st + C * ct * ct;
// double Bp = 2.0 * (A - C) * ct * st + B * (ct * ct - st * st); // Should be
// ~0
// Rotate linear terms
double Dp = D * ct + E * st;
double Ep = -D * st + E * ct;
// === Step 4: Find center by solving partial derivatives ===
// 2 Ap x + Dp = 0
// 2 Cp y + Ep = 0
RS_Vector center{0., 0.};
if (std::abs(Ap) > RS_TOLERANCE) {
center.x = -Dp / (2.0 * Ap);
} else if (std::abs(Dp) > RS_TOLERANCE) {
return false; // Unbounded in x → invalid for hyperbola
}
if (std::abs(Cp) > RS_TOLERANCE) {
center.y = -Ep / (2.0 * Cp);
} else if (std::abs(Ep) > RS_TOLERANCE) {
return false; // Unbounded in y → invalid
}
// === Step 5: Translate to center and evaluate constant term ===
double Fp = LC_Quadratic{{A, B, C, D, E, F}}.evaluateAt(center);
// === Step 6: Normalize to standard form ===
// Ap (x')² + Cp (y')² + Fp = 0
double denom = -Fp;
if (std::abs(denom) < RS_TOLERANCE)
return false;
double coeff_x = Ap / denom;
double coeff_y = Cp / denom;
double a2 = 0., b2 = 0.;
bool transverse_x = (coeff_x > 0.0);
if (transverse_x) {
if (coeff_y >= 0.0)
return false; // Both positive → ellipse-like
a2 = 1.0 / coeff_x;
b2 = -1.0 / coeff_y; // Make positive
} else {
if (coeff_x >= 0.0)
return false;
a2 = 1.0 / coeff_y;
b2 = -1.0 / coeff_x;
}
if (a2 <= RS_TOLERANCE || b2 <= RS_TOLERANCE)
return false;
double a = std::sqrt(a2);
double ratio = std::sqrt(b2 / a2);
// === Step 7: Determine major axis direction and branch ===
// Along rotated x' or y'
RS_Vector major_dir = transverse_x ? RS_Vector(ct, st) : RS_Vector(-st, ct);
// Determine branch: evaluate sign at vertex
RS_Vector vertex = center + major_dir * a;
double sign_at_vertex = q.evaluateAt(vertex);
bool reversed = (sign_at_vertex < 0.0);
// For left branch, flip direction
if (reversed) {
major_dir = -major_dir;
}
// === Step 8: Set data ===
data.center = center;
data.majorP = major_dir * a;
data.ratio = ratio;
data.reversed = reversed;
data.angle1 = 0.0;
data.angle2 = 0.0; // Unbounded by default
m_bValid = true;
LC_Hyperbola::calculateBorders();
LC_Hyperbola::updateLength();
return true;
}
//=====================================================================
bool LC_Hyperbola::createFromQuadratic(const std::vector<double> &coeffs) {
if (coeffs.size() < 6)
return false;
LC_Quadratic q(coeffs);
return createFromQuadratic(q);
}
//=====================================================================
// Entity interface
//=====================================================================
RS_Entity *LC_Hyperbola::clone() const {
return new LC_Hyperbola(*this);
}
RS_VectorSolutions LC_Hyperbola::getFoci() const {
double e = std::sqrt(1.0 + data.ratio * data.ratio);
RS_Vector vp = data.majorP * e;
RS_VectorSolutions sol;
sol.push_back(data.center + vp);
sol.push_back(data.center - vp);
return sol;
}
RS_VectorSolutions LC_Hyperbola::getRefPoints() const {
RS_VectorSolutions sol;
if (!m_bValid) {
return sol;
}
// Center (always included)
sol.push_back(data.center);
// Primary vertex (closest vertex on the selected branch)
RS_Vector primaryVertex = getPrimaryVertex();
if (primaryVertex.valid) {
sol.push_back(primaryVertex);
}
// Foci
RS_Vector f1 = data.getFocus1();
RS_Vector f2 = data.getFocus2();
if (f1.valid)
sol.push_back(f1);
if (f2.valid)
sol.push_back(f2);
// Start and end points (only for bounded arcs)
if (std::abs(data.angle1) >= RS_TOLERANCE ||
std::abs(data.angle2) >= RS_TOLERANCE) {
RS_Vector start = getStartpoint();
RS_Vector end = getEndpoint();
if (start.valid)
sol.push_back(start);
if (end.valid)
sol.push_back(end);
}
return sol;
}
//=====================================================================
RS_Vector LC_Hyperbola::getStartpoint() const {
if (data.angle1 == 0.0 && data.angle2 == 0.0)
return RS_Vector(false);
return getPoint(data.angle1, data.reversed);
}
//=====================================================================
RS_Vector LC_Hyperbola::getEndpoint() const {
if (data.angle1 == 0.0 && data.angle2 == 0.0)
return RS_Vector(false);
return getPoint(data.angle2, data.reversed);
}
/**
* @brief getMiddlePoint
* Returns the true midpoint of the bounded hyperbola arc measured by arc length.
*
* This method computes the point exactly halfway along the curve (arc length L/2),
* not the Euclidean midpoint of the chord between endpoints.
*
* Use cases:
* - Placing dimension text/arrows at the center of the arc
* - Providing a symmetric grip point for stretching or modifying the hyperbola
* - Visual indicators (e.g., selection highlight) at the curve's middle
*
* Behavior:
* - For bounded arcs: returns the point at arc distance total_length / 2 from either endpoint
* (uses getNearestDist() internally for high-precision location)
* - For unbounded hyperbolas (angle1 ≈ angle2 ≈ 0): returns RS_Vector(false)
* because an infinite branch has no defined midpoint
* - Dummy coordinate (center) is passed to getNearestDist() because side selection
* is irrelevant for the true midpoint
*
* @return Point at the arc-length midpoint, or RS_Vector(false) if unbounded or invalid
*/
RS_Vector LC_Hyperbola::getMiddlePoint() const
{
if (!m_bValid) {
return RS_Vector(false);
}
// Unbounded hyperbola has infinite length → no meaningful midpoint
if (std::abs(data.angle1) < RS_TOLERANCE && std::abs(data.angle2) < RS_TOLERANCE) {
return RS_Vector(false);
}
double totalLength = getLength();
if (std::isinf(totalLength) || totalLength <= 0.0) {
return RS_Vector(false);
}
// Midpoint is at half the total arc length.
// Use the center as a dummy coordinate — side detection is not needed for the true midpoint.
return getNearestDist(totalLength * 0.5, data.center);
}
//=====================================================================
// Tangent methods
//=====================================================================
double LC_Hyperbola::getDirection1() const {
RS_Vector p = getStartpoint();
if (!p.valid)
return 0.0;
return getTangentDirection(p).angle();
}
double LC_Hyperbola::getDirection2() const {
RS_Vector p = getEndpoint();
if (!p.valid)
return 0.0;
return getTangentDirection(p).angle();
}
//=====================================================================
RS_Vector LC_Hyperbola::getTangentDirectionParam(double parameter) const {
double a = getMajorRadius();
double b = getMinorRadius();
double dx = a * std::sinh(parameter);
double dy = b * std::cosh(parameter);
if (data.reversed)
dx = -dx;
RS_Vector tangent{dx, dy};
tangent.rotate(data.majorP.angle());
return tangent.normalized();
}
RS_Vector LC_Hyperbola::getTangentDirection(const RS_Vector &point) const {
double phi = getParamFromPoint(point, data.reversed);
return getTangentDirectionParam(phi);
}
//=====================================================================
RS_VectorSolutions LC_Hyperbola::getTangentPoint(const RS_Vector &point) const {
if (!m_bValid || !point.valid)
return RS_VectorSolutions();
LC_Quadratic hyper = getQuadratic();
if (!hyper.isValid())
return RS_VectorSolutions();
std::vector<double> coef = hyper.getCoefficients();
double A = coef[0], B = coef[1], C = coef[2];
double D = coef[3], E = coef[4], F = coef[5];
double px = point.x, py = point.y;
double polarA = A * px + (B / 2.0) * py + D / 2.0;
double polarB = (B / 2.0) * px + C * py + E / 2.0;
double polarK = D / 2.0 * px + E / 2.0 * py + F;
if (std::abs(polarA) < RS_TOLERANCE && std::abs(polarB) < RS_TOLERANCE) {
return RS_VectorSolutions();
}
RS_Vector p1, p2;
if (std::abs(polarA) >= std::abs(polarB)) {
p1 = RS_Vector(0.0, -polarK / polarB);
p2 = RS_Vector(1.0, (-polarK - polarA) / polarB);
} else {
p1 = RS_Vector(-polarK / polarA, 0.0);
p2 = RS_Vector((-polarK - polarB) / polarA, 1.0);
}
RS_Line polar(nullptr, RS_LineData(p1, p2));
RS_VectorSolutions sol =
LC_Quadratic::getIntersection(hyper, polar.getQuadratic());
RS_VectorSolutions tangents;
for (size_t i = 0; i < sol.getNumber(); ++i) {
RS_Vector tp = sol.get(i);
if (!tp.valid)
continue;
RS_Vector radius = tp - point;
RS_Vector tangentDir = getTangentDirection(tp);
if (tangentDir.valid &&
std::abs(RS_Vector::dotP(radius, tangentDir)) < RS_TOLERANCE * 10.0) {
tangents.push_back(tp);
}
}
return tangents;
}
//=====================================================================
// Point evaluation
//=====================================================================
//=====================================================================
RS_Vector LC_Hyperbola::getPoint(double phi, bool useReversed) const {
const double a = getMajorRadius();
const double b = getMinorRadius();
if (a < RS_TOLERANCE || b < RS_TOLERANCE)
return RS_Vector(false);
double ch = std::cosh(phi);
double sh = std::sinh(phi);
RS_Vector local(useReversed ? -a * ch : a * ch, b * sh);
return localToWorld(local);
}
//=====================================================================
RS_Vector LC_Hyperbola::worldToLocal(const RS_Vector& world) const
{
RS_Vector local = (world - getCenter()).rotated(- getAngle());
return local;
}
//=====================================================================
RS_Vector LC_Hyperbola::localToWorld(const RS_Vector& local) const
{
return local.rotated(getAngle()) + getCenter();
}
/**
* @brief getParamFromPoint
* Returns the hyperbolic parameter φ corresponding to a point lying on the hyperbola.
*
* This method recovers the parametric angle φ from a point p that lies on the hyperbola.
* It handles both branches correctly using the sign of the x-coordinate in local space.
*
* The hyperbola is defined as:
* x = a * cosh(φ)
* y = b * sinh(φ) (right branch, reversed = false)
* x = -a * cosh(φ)
* y = b * sinh(φ) (left branch, reversed = true)
*
* The implementation uses the stable and exact formula:
* φ = asinh(y_local / b)
*
* Then verifies consistency with x_local using cosh(φ), with proper handling of the branch.
*
* This approach avoids quartics, tanh substitution, and logarithmic forms that can
* suffer from cancellation or overflow. It is numerically robust for all eccentricities,
* including rectangular (b/a ≈ 1) and highly eccentric cases.
*
* @param p Point on the hyperbola
* @param branchReversed Ignored — branch is automatically detected from geometry
* @return Hyperbolic parameter φ, or NaN if point is not on the hyperbola
*/
double LC_Hyperbola::getParamFromPoint(const RS_Vector& p,
bool /*branchReversed*/) const
{
if (!m_bValid || !p.valid) {
return std::numeric_limits<double>::quiet_NaN();
}
const double a = getMajorRadius();
const double b = getMinorRadius();
if (a < RS_TOLERANCE || b < RS_TOLERANCE) {
return std::numeric_limits<double>::quiet_NaN();
}
// Transform point to local coordinate system:
// - Translate so center is at origin
// - Rotate so majorP aligns with positive x-axis
RS_Vector local = p - data.center;
local.rotate(-data.majorP.angle()); // inverse rotation
//double x_local = local.x;
double y_local = local.y;
// Primary recovery: φ from y-coordinate (sinh is odd and strictly increasing)
double sinh_phi = y_local / b;
double phi = std::asinh(sinh_phi);
// // Reconstruct expected x from φ
// double cosh_phi = std::cosh(phi);
// double x_expected = a * cosh_phi;
// // Determine which branch the point belongs to by sign of x_local
// // data.reversed == true means left branch (x negative in local coords)
// //bool pointOnLeftBranch = (x_local < 0.0);
// // Expected x sign based on data.reversed
// double expectedSign = data.reversed ? -1.0 : 1.0;
// // Check consistency: reconstructed |x| should match, and sign should align with branch
// double x_expected_signed = expectedSign * x_expected;
// if (std::abs(x_local - x_expected_signed) > RS_TOLERANCE * a) {
// // Point does not lie on this hyperbola branch
// return std::numeric_limits<double>::quiet_NaN();
// }
// // For left branch (reversed=true), φ is defined such that cosh(φ) is still positive,
// // so the same φ works for both branches — no sign flip needed
return phi;
}
//=====================================================================
bool LC_Hyperbola::isInClipRect(const RS_Vector &p, const LC_Rect& rect) const {
return p.valid && rect.inArea(p);
}
//=====================================================================
// Rendering
//=====================================================================
void LC_Hyperbola::draw(RS_Painter *painter) {
if (!painter || !isValid())
return;
const LC_Rect &clip = painter->getWcsBoundingRect();
if (clip.isEmpty(RS_TOLERANCE))
return;
double xmin = clip.minP().x, xmax = clip.maxP().x;
double ymin = clip.minP().y, ymax = clip.maxP().y;
double a = getMajorRadius(), b = getMinorRadius();
if (a < RS_TOLERANCE || b < RS_TOLERANCE)
return;
painter->save();
std::shared_ptr<double> painterRestore{&a, [painter](void*) {
painter->restore(); }};
double guiPixel = std::min(painter->toGuiDX(1.0), painter->toGuiDY(1.0));
double maxWorldError = 1.0 / guiPixel;
std::vector<RS_Vector> pts;
pts.reserve(300);
bool isFull = (data.angle1 == 0.0 && data.angle2 == 0.0);
auto processBranch = [&, painter](bool rev) {
std::vector<double> params;
RS_Line borders[4] = {
RS_Line(nullptr,
RS_LineData(RS_Vector(xmin, ymin), RS_Vector(xmax, ymin))),
RS_Line(nullptr,
RS_LineData(RS_Vector(xmax, ymin), RS_Vector(xmax, ymax))),
RS_Line(nullptr,
RS_LineData(RS_Vector(xmax, ymax), RS_Vector(xmin, ymax))),
RS_Line(nullptr,
RS_LineData(RS_Vector(xmin, ymax), RS_Vector(xmin, ymin)))};
for (const auto &line : borders) {
RS_VectorSolutions sol =
LC_Quadratic::getIntersection(getQuadratic(), line.getQuadratic());
for (const RS_Vector &intersection : sol) {
double phiCur = getParamFromPoint(intersection);
if (std::isnan(phiCur) || phiCur < data.angle1 || phiCur > data.angle2)
continue;
if (isInClipRect(intersection, clip)) {
params.push_back(phiCur);
}
}
}
if (params.empty()) {
RS_Vector test = getPoint((data.angle1 + data.angle2) * 0.5, rev);
if (test.valid && isInClipRect(test, clip)) {
params = {data.angle1, data.angle2};
} else {
return;
}
} else {
params.push_back(data.angle1);
params.push_back(data.angle2);
std::sort(params.begin(), params.end());
auto last =
std::unique(params.begin(), params.end(), [](double a, double b) {
return std::abs(a - b) < RS_TOLERANCE_ANGLE;
});
params.erase(last, params.end());
}
for (size_t i = 0; i + 1 < params.size(); ++i) {
double start = params[i];
double end = params[i + 1];
RS_Vector middle = getPoint((start + end) * 0.5, rev);
pts.clear();
if (isInClipRect(middle, clip)) {
adaptiveSample(pts, start, end, rev, maxWorldError);
painter->drawSplinePointsWCS(pts, false);
}
}
};
if (isFull) {
processBranch(false);
processBranch(true);
} else {
processBranch(data.reversed);
}
}
//=====================================================================
void LC_Hyperbola::adaptiveSample(std::vector<RS_Vector> &out, double phiStart,
double phiEnd, bool rev,
double maxError) const {
if (phiStart > phiEnd)
std::swap(phiStart, phiEnd);
std::vector<std::pair<double, RS_Vector>> points;
points.reserve(256);
std::function<void(double, double)> subdiv = [&](double pa, double pb) {
RS_Vector A = getPoint(pa, rev);
RS_Vector B = getPoint(pb, rev);
if (!A.valid || !B.valid)
return;
double pm = (pa + pb) * 0.5;
RS_Vector M = getPoint(pm, rev);
if (!M.valid)
return;
double sagitta = (M - (A + B) * 0.5).magnitude();
double estimatedMaxError = sagitta * 1.15;
if (estimatedMaxError < maxError || (pb - pa) < 0.05) {
points.emplace_back(pa, A);
points.emplace_back(pb, B);
return;
}
subdiv(pa, pm);
subdiv(pm, pb);
};
RS_Vector first = getPoint(phiStart, rev);
if (first.valid)
points.emplace_back(phiStart, first);
subdiv(phiStart, phiEnd);
std::sort(points.begin(), points.end(),
[](const auto &a, const auto &b) { return a.first < b.first; });
out.reserve(out.size() + points.size());
for (const auto &kv : points) {
if (out.empty() || out.back().distanceTo(kv.second) > RS_TOLERANCE) {
out.push_back(kv.second);
}
}
}
//=====================================================================
// Nearest methods
//=====================================================================
/**
* @brief getNearestMiddle
* Returns the point on the hyperbola arc that is closest to the given coordinate
* when considering only the middle portion of the arc (by arc length).
*
* This method is used by the CAD engine to provide a "middle grip" or snap point
* that is biased toward the central part of the curve, rather than the endpoints.
* It prevents accidental snapping to endpoints when the user intends to select
* or modify the middle of a long hyperbola arc.
*
* Behavior:
* - Computes the total arc length L.
* - Defines the "middle zone" as the central 50% of the arc length
* (i.e., from L*0.25 to L*0.75 measured from the startpoint).
* - Finds the point on the hyperbola closest to `coord`.
* - If that nearest point lies within the middle zone → returns it directly.
* - Otherwise, clamps to the nearest boundary of the middle zone
* (L*0.25 or L*0.75 from start).
*
* This ensures the returned point is always in the true middle half of the arc,
* providing stable and predictable behavior for selection, stretching, and snapping.
*
* @param coord Coordinate (usually mouse position) to measure closeness from
* @param dist Optional: receives the Euclidean distance to the returned point
* @param middlePoints Number of middle points requested (currently only 1 is supported)
* @return Point in the middle 50% of the arc closest to `coord`,
* or RS_Vector(false) if hyperbola is invalid/unbounded
*/
RS_Vector LC_Hyperbola::getNearestMiddle(const RS_Vector& coord,
double* dist,
int middlePoints) const
{
Q_UNUSED(middlePoints); // Only one middle point is provided
if (!m_bValid) {
if (dist) *dist = RS_MAXDOUBLE;
return RS_Vector(false);
}
// Unbounded hyperbola has no defined middle
if (std::abs(data.angle1) < RS_TOLERANCE && std::abs(data.angle2) < RS_TOLERANCE) {
if (dist) *dist = RS_MAXDOUBLE;
return RS_Vector(false);
}
double totalLength = getLength();
if (std::isinf(totalLength) || totalLength <= 0.0) {
if (dist) *dist = RS_MAXDOUBLE;
return RS_Vector(false);
}
// Define middle zone: central 50% of arc length
double middleStart = totalLength * 0.25;
double middleEnd = totalLength * 0.75;
// Find geometrically closest point on the entire arc
RS_Vector nearest = getNearestPointOnEntity(coord, true);
if (!nearest.valid) {
if (dist) *dist = RS_MAXDOUBLE;
return RS_Vector(false);
}
// Compute arc distance from startpoint to the nearest point
double phi_nearest = getParamFromPoint(nearest, data.reversed);
if (std::isnan(phi_nearest)) {
if (dist) *dist = RS_MAXDOUBLE;
return RS_Vector(false);
}
double arcToNearest = std::abs(getArcLength(data.angle1, phi_nearest));
double targetArcFromStart;
if (arcToNearest >= middleStart && arcToNearest <= middleEnd) {
// Nearest point is already in middle zone → use it
targetArcFromStart = arcToNearest;
} else if (arcToNearest < middleStart) {
// Too close to start → clamp to beginning of middle zone
targetArcFromStart = middleStart;
} else {
// Too close to end → clamp to end of middle zone
targetArcFromStart = middleEnd;
}
// Use existing high-precision method to get point at target arc distance
// Dummy coordinate (center) — side selection irrelevant since we specify exact distance
RS_Vector middlePoint = getNearestDist(targetArcFromStart, data.center);
if (dist) {
*dist = coord.distanceTo(middlePoint);
}
return middlePoint;
}
/**
* @brief getNearestOrthTan
* Returns the point on the hyperbola where the tangent is orthogonal to the given normal line.
*
* This implements orthogonal tangent snapping using conic pole-polar duality:
* - The normal line through coord is interpreted as a point in dual space.
* - The polar line of this point with respect to the hyperbola is computed using the dual conic.
* - The polar line is tangent to the hyperbola.
* - The point of tangency is returned.
*
* The dual conic is obtained via LC_Quadratic::getDualCurve() (normalized to constant +1).
*
* @param coord Coordinate (usually mouse position) defining the normal direction
* @param normal Normal line direction (interpreted as line through origin in dual space)
* @param onEntity Restrict to bounded arc if true
* @return Point of tangency on hyperbola, or invalid if no real tangent
*/
/**
* @brief getNearestOrthTan
* Returns the point on the hyperbola where the tangent is orthogonal to the given normal line.
*
* Uses conic pole-polar duality:
* - The normal line is interpreted as a point in dual space.
* - The polar line of this point w.r.t. the hyperbola is computed using the dual conic.
* - The polar line is tangent to the hyperbola.
* - The point of tangency is found using the existing dualLineTangentPoint() method.
*
* The dual conic is normalized to constant term +1 to match the line form u x + v y + 1 = 0
* used in dualLineTangentPoint().
*
* @param coord Coordinate (usually mouse position) — not used directly
* @param normal Normal line (direction defines the required tangent orientation)
* @param onEntity Restrict to bounded arc if true (handled by dualLineTangentPoint)
* @return Point of tangency on hyperbola, or invalid if no real tangent
*/
/**
* @brief getNearestOrthTan
* Returns the point on the hyperbola where the tangent is orthogonal to the given normal line.
* Uses analytical parametric solution:
* - The tangent direction at φ is (dx/dφ, dy/dφ)
* - Solve for φ where tangent direction ⊥ normal direction, i.e., dx/dφ * nx + dy/dφ * ny = 0
* - Leads to tanh φ = - M / K, with M, K derived from rotation and a/b
* - Exact and efficient (no iteration)
* Restricts to bounded arc if onEntity=true.
*
* @param coord Unused (compatibility)
* @param normal Line whose direction is the desired normal at the point
* @param onEntity Restrict to bounded arc
* @return Tangent point, or invalid if no real solution or outside bounds
*/
RS_Vector LC_Hyperbola::getNearestOrthTan(const RS_Vector& /*coord*/,
const RS_Line& normal,
bool onEntity) const
{
if (!m_bValid)
return RS_Vector(false);
RS_Vector n{normal.getDirection1()};
n = n.normalized();
double cos_th = std::cos(data.majorP.angle());
double sin_th = std::sin(data.majorP.angle());
double a = getMajorRadius();
double b = getMinorRadius();
int sign_x = data.reversed ? -1 : 1;
double K = sign_x * a * (cos_th * n.x + sin_th * n.y);
double M = b * (-sin_th * n.x + cos_th * n.y);
if (std::abs(K) < RS_TOLERANCE) return RS_Vector(false); // no solution
double tanh_phi = - M / K;
if (std::abs(tanh_phi) >= 1.0 - RS_TOLERANCE) return RS_Vector(false);
double phi = std::atanh(tanh_phi);
if (onEntity && !isInfinite()) {
double phi_min = std::min(data.angle1, data.angle2);
double phi_max = std::max(data.angle1, data.angle2);
if (phi < phi_min - RS_TOLERANCE || phi > phi_max + RS_TOLERANCE) return RS_Vector(false);
}
return getPoint(phi, data.reversed);
}
bool LC_Hyperbola::isInfinite() const
{
return RS_Math::equal(data.angle1, 0.) &&
RS_Math::equal(data.angle2, 0.);
}
// Directed arc length from phi1 to phi2 (signed based on order)
double LC_Hyperbola::getArcLength(double phi1, double phi2) const {
if (!m_bValid)
return 0.0;
if (isInfinite())
return RS_MAXDOUBLE;
bool forward = phi2 > phi1;
double p_min = std::min(phi1, phi2);
double p_max = std::max(phi1, phi2);
double a = getMajorRadius();
double ecc = getEccentricity();
double ecc2 = ecc * ecc;
auto integrand = [a, ecc2](double phi) -> double {
double ch = std::cosh(phi);
double inner = std::max(0., ecc2 * ch * ch - 1.0);
return a * std::sqrt(inner);
};
double result = 0.0;
double abs_error = 0.0;
// Split at zero if interval contains the vertex (singularity point)
if (p_min < 0.0 && p_max > 0.0) {
double part1 =
boost::math::quadrature::gauss_kronrod<double, 61>::integrate(
integrand, p_min, 0.0, 0, 1e-12, &abs_error);
double part2 =
boost::math::quadrature::gauss_kronrod<double, 61>::integrate(
integrand, 0.0, p_max, 0, 1e-12, &abs_error);
result = part1 + part2;
} else {
result = boost::math::quadrature::gauss_kronrod<double, 61>::integrate(
integrand, p_min, p_max, 0, 1e-12, &abs_error);
}
return forward ? result : -result;
}
/**
* @brief getNearestDist
* Returns the point on the bounded hyperbola arc at the specified arc-length
* distance from the endpoint closest to the provided coordinate.
*
* Uses Newton-Raphson with initial guess from nearest point and direction-aware extrapolation.
* Falls back to bisection if Newton does not converge.
* @param distance Desired arc-length distance from reference endpoint
* @param coord Coordinate to select reference side
* @param dist Optional: computed arc distance from start to returned point
* @return Point at requested distance, or invalid on failure
*/
RS_Vector LC_Hyperbola::getNearestDist(double distance,
const RS_Vector& coord,
double* dist) const
{
if (!m_bValid || isInfinite()) return RS_Vector(false);
double totalLength = getLength();
if (totalLength <= std::abs(distance))
return RS_Vector(false);
double phi0 = getParamFromPoint(coord, data.reversed);
const bool fromStart = std::abs(phi0 - data.angle1) <= std::abs(phi0 - data.angle2);
double targetArcFromStart = fromStart ? distance : totalLength - distance;
if (distance < 0.0 || targetArcFromStart < 0.0 || targetArcFromStart > totalLength + RS_TOLERANCE)
return RS_Vector(false);
if (dist)
*dist = targetArcFromStart;
double a = getMajorRadius();
double ecc2 = getEccentricity() * getEccentricity();
// Initial guess from nearest point on curve
using std::asinh, std::cosh, std::sinh;
double phi = asinh(sinh(data.angle1) + targetArcFromStart / totalLength * (sinh(data.angle2) - sinh(data.angle1)));
if (std::isnan(phi))
phi = data.angle1;
constexpr int maxIter = 30;
constexpr double tol = 1e-12;
bool converged = false;
for (int i = 0; i < maxIter; ++i) {
double s = getArcLength(data.angle1, phi);
double ds_dphi_current = a * std::sqrt(ecc2 * cosh(phi) * cosh(phi) - 1.0);
if (ds_dphi_current < RS_TOLERANCE) break;
double residual = targetArcFromStart - s;
double delta = residual / ds_dphi_current;
phi += delta;
LC_LOG<<__func__<<"(): "<<i<<": phi="<<phi<<", "<<s<<"("<<targetArcFromStart<<"): "<<residual;
if (std::abs(delta) < tol) {
converged = true;
break;
}
}
// Bisection fallback if Newton fails
if (!converged) {
double phiLow = std::min(data.angle1, data.angle2) - 30.0;
double phiHigh = std::max(data.angle1, data.angle2) + 30.0;
double sLow = getArcLength(data.angle1, phiLow);
double sHigh = getArcLength(data.angle1, phiHigh);
while (sLow > targetArcFromStart) { phiLow -= 30.0; sLow = getArcLength(data.angle1, phiLow); }
while (sHigh < targetArcFromStart) { phiHigh += 30.0; sHigh = getArcLength(data.angle1, phiHigh); }
for (int i = 0; i < 80; ++i) {
phi = 0.5 * (phiLow + phiHigh);
double s = getArcLength(data.angle1, phi);
if (std::abs(s - targetArcFromStart) < 1e-9) break;
if (s < targetArcFromStart) phiLow = phi;
else phiHigh = phi;
}
}
return getPoint(phi, data.reversed);
}
//=====================================================================
// Transformations
//=====================================================================
void LC_Hyperbola::move(const RS_Vector &offset) {
data.center += offset;
}
void LC_Hyperbola::rotate(const RS_Vector ¢er, double angle) {
rotate(center, RS_Vector{angle});
}
void LC_Hyperbola::rotate(const RS_Vector ¢er,
const RS_Vector &angleVector) {
data.center.rotate(center, angleVector);
data.majorP.rotate(angleVector);
}
void LC_Hyperbola::scale(const RS_Vector ¢er, const RS_Vector &factor) {
data.center.scale(center, factor);
RS_VectorSolutions foci = getFoci();
RS_Vector vpStart = getStartpoint();
RS_Vector vpEnd = getEndpoint();
foci.scale(center, factor);
vpStart.scale(center, factor);
vpEnd.scale(center, factor);
*this = LC_Hyperbola{foci[0], foci[1], vpStart};
data.angle1 = getParamFromPoint(vpStart);
data.angle2 = getParamFromPoint(vpEnd);
if (data.angle1 > data.angle2)
std::swap(data.angle1, data.angle2);
}
void LC_Hyperbola::mirror(const RS_Vector &axisPoint1,
const RS_Vector &axisPoint2) {
if (axisPoint1 == axisPoint2)
return;
RS_Vector vpStart = getStartpoint();
RS_Vector vpEnd = getEndpoint();
auto mirrorFunc = [&axisPoint1, &axisPoint2](RS_Vector& vp) {
return vp.mirror(axisPoint1, axisPoint2);
};
mirrorFunc(data.center);
data.majorP.mirror(RS_Vector(0, 0), axisPoint2 - axisPoint1);
// data.reversed = !data.reversed;
data.angle2 = getParamFromPoint(mirrorFunc(vpStart));
data.angle1 = getParamFromPoint(mirrorFunc(vpEnd));
if (data.angle1 > data.angle2)
std::swap(data.angle1, data.angle2);
LC_Hyperbola::calculateBorders();
}
//=====================================================================
// Minimal overrides
//=====================================================================
RS_Vector LC_Hyperbola::getNearestEndpoint(const RS_Vector &coord,
double *dist) const {
if (dist)
*dist = RS_MAXDOUBLE;
if (!m_bValid || !coord.valid) {
return RS_Vector(false);
}
// For unbounded hyperbolas (full branch), there are no defined endpoints
if (!std::isnormal(data.angle1) && !std::isnormal(data.angle2)) {
return RS_Vector(false);
}
double distance = RS_MAXDOUBLE;
RS_Vector ret{false};
for (const RS_Vector &vp : {getStartpoint(), getEndpoint()}) {
if (vp.valid) {
double dvp = vp.distanceTo(coord);
if (dvp <= distance - RS_TOLERANCE) {
distance = dvp;
ret = vp;
}
}
}
if (dist != nullptr)
*dist = distance;
return ret;
}
//=====================================================================
RS_Vector LC_Hyperbola::getNearestPointOnEntity(const RS_Vector &coord,
bool onEntity, double *dist,
RS_Entity **entity) const {
if (!m_bValid || !coord.valid) {
if (dist)
*dist = RS_MAXDOUBLE;
return RS_Vector(false);
}
if (entity)
*entity = const_cast<LC_Hyperbola *>(this);
// Special case: unbounded hyperbola (full branch)
if (std::abs(data.angle1) < RS_TOLERANCE &&
std::abs(data.angle2) < RS_TOLERANCE) {
// For unbounded case, use asymptotic behavior for far points
// But for most practical cases, the vertex is often the nearest
RS_Vector vertex = data.center + data.majorP;
double dVertex = coord.distanceTo(vertex);
// Simple heuristic: if point is far along the major axis direction, project
// to asymptote
RS_Vector dir = (coord - data.center).normalized();
double dot = dir.angleTo(data.majorP.normalized());
if (std::abs(dot) < RS_TOLERANCE_ANGLE ||
std::abs(dot - M_PI) < RS_TOLERANCE_ANGLE) {
// Along major axis – nearest is vertex
if (dist)
*dist = dVertex;
return vertex;
} else {
// Otherwise, vertex is reasonable approximation for unbounded
if (dist)
*dist = dVertex;
return vertex;
}
}
// Bounded or semi-bounded case – use parametric search + quartic for accuracy
// First, get initial guess by sampling the arc
double phiGuess = getParamFromPoint(coord, data.reversed);
if (std::isnan(phiGuess)) {
phiGuess = (data.angle1 + data.angle2) * 0.5; // fallback to middle
}
// Clamp initial guess to arc range for bounded case
double phiMin = std::min(data.angle1, data.angle2);
double phiMax = std::max(data.angle1, data.angle2);
phiGuess = std::max(phiMin, std::min(phiMax, phiGuess));
// Evaluate distance squared at endpoints and initial guess
RS_Vector pStart = getPoint(data.angle1, data.reversed);
RS_Vector pEnd = getPoint(data.angle2, data.reversed);
RS_Vector pGuess = getPoint(phiGuess, data.reversed);
double d2Start = coord.squaredTo(pStart);
double d2End = coord.squaredTo(pEnd);
double d2Guess = coord.squaredTo(pGuess);
double minD2 = std::min({d2Start, d2End, d2Guess});
RS_Vector nearest =
(minD2 == d2Start) ? pStart : (minD2 == d2End ? pEnd : pGuess);
// Now solve the exact quartic equation for critical points
// Distance squared: d²(phi) = (x(phi) - px)² + (y(phi) - py)²
// d(d²)/dphi = 0 ⇒ (x - px) x' + (y - py) y' = 0
double px = coord.x, py = coord.y;
double cx = data.center.x, cy = data.center.y;
double aa = data.majorP.magnitude(); // semi-major a
double bb = aa * data.ratio; // semi-minor b
double ct = std::cos(data.majorP.angle());
double st = std::sin(data.majorP.angle());
double A = aa * ct;
double B = -bb * st;
double C = aa * st;
double D = bb * ct;
// Coefficients of the quartic: tanh⁴ + p tanh³ + q tanh² + r tanh + s = 0
double dx = cx + A - px;
double dy = cy + C - py;
double p = 4.0 * (A * dx + C * dy) / (B * dx + D * dy);
double q = (dx * dx + dy * dy - aa * aa + bb * bb) / (B * dx + D * dy) * 2.0 -
p * p / 2.0 - 3.0;
double r = -p * (q + 5.0);
double s = -(dx * dx + dy * dy - aa * aa - bb * bb) / (B * dx + D * dy) - q;
std::vector<double> ce = {s, r, q, p,
1.0}; // t^4 + p t^3 + q t^2 + r t + s = 0
std::vector<double> roots = RS_Math::quarticSolverFull(ce);
// Evaluate all valid real roots
for (double t : roots) {
if (std::abs(B * dx + D * dy) < RS_TOLERANCE)
continue; // degenerate case skipped
double phi = std::atanh(t);
if (std::isnan(phi) || std::isinf(phi))
continue;
// Check if phi is within the arc range
bool inRange = (phi >= phiMin - RS_TOLERANCE_ANGLE &&
phi <= phiMax + RS_TOLERANCE_ANGLE);
if (onEntity && !inRange)
continue;
RS_Vector cand = getPoint(phi, data.reversed);
if (!cand.valid)
continue;
double d2Cand = coord.squaredTo(cand);
if (onEntity) {
// For onEntity=true, clamp to arc endpoints if outside
if (!inRange) {
double d2StartNew = coord.squaredTo(pStart);
double d2EndNew = coord.squaredTo(pEnd);
if (d2StartNew < minD2) {
minD2 = d2StartNew;
nearest = pStart;
}
if (d2EndNew < minD2) {
minD2 = d2EndNew;
nearest = pEnd;
}
continue;
}
}
if (d2Cand < minD2 - RS_TOLERANCE) {
minD2 = d2Cand;
nearest = cand;
}
}
// Final fallback to endpoints if onEntity
if (onEntity) {
if (coord.squaredTo(pStart) < minD2) {
minD2 = coord.squaredTo(pStart);
nearest = pStart;
}
if (coord.squaredTo(pEnd) < minD2) {
minD2 = coord.squaredTo(pEnd);
nearest = pEnd;
}
}
if (dist)
*dist = std::sqrt(minD2);
return nearest;
}
//=====================================================================
double LC_Hyperbola::getDistanceToPoint(const RS_Vector &coord,
RS_Entity **entity,
RS2::ResolveLevel /*level*/,
double /*solidDist*/) const {
if (entity)
*entity = nullptr;
if (!m_bValid || !coord.valid) {
return RS_MAXDOUBLE;
}
double dist = RS_MAXDOUBLE;
getNearestPointOnEntity(coord, true, &dist, entity);
if (entity && *entity == nullptr && dist < RS_MAXDOUBLE) {
*entity = const_cast<LC_Hyperbola *>(this);
}
return dist;
}
//=====================================================================
bool LC_Hyperbola::isPointOnEntity(const RS_Vector &coord,
double tolerance) const {
if (!m_bValid || !coord.valid)
return false;
double dist = RS_MAXDOUBLE;
getNearestPointOnEntity(coord, true, &dist);
return dist <= tolerance;
}
//=====================================================================
LC_Quadratic LC_Hyperbola::getQuadratic() const {
std::vector<double> ce(6, 0.);
ce[0] = data.majorP.squared();
ce[2] = -data.ratio * data.ratio * ce[0];
if (ce[0] < RS_TOLERANCE2 && std::abs(ce[2]) < RS_TOLERANCE2) {
return LC_Quadratic();
}
ce[0] = 1. / ce[0];
ce[2] = 1. / ce[2];
ce[5] = -1.;
LC_Quadratic ret(ce);
ret.rotate(getAngle());
ret.move(data.center);
return ret;
}
//=====================================================================
void LC_Hyperbola::calculateBorders() {
minV = RS_Vector(RS_MAXDOUBLE, RS_MAXDOUBLE);
maxV = RS_Vector(RS_MINDOUBLE, RS_MINDOUBLE);
if (!m_bValid)
return;
// Full unbounded hyperbola → infinite bounds
if (data.angle1 == 0.0 && data.angle2 == 0.0) {
minV = RS_Vector(-RS_MAXDOUBLE, -RS_MAXDOUBLE);
maxV = RS_Vector(RS_MAXDOUBLE, RS_MAXDOUBLE);
return;
}
// Limited arc on single branch
double phiStart = data.angle1;
double phiEnd = data.angle2;
// No normalization needed — hyperbolic φ is over all real numbers
// Ensure start ≤ end for consistent processing
if (phiStart > phiEnd)
std::swap(phiStart, phiEnd);
// Branch offset handled in getPoint() — use raw angles here
// Analytical extrema along global X and Y axes
double rot = getAngle();
RS_Vector dirX(cos(rot), sin(rot));
RS_Vector dirY(-sin(rot), cos(rot));
auto addExtrema = [&](const RS_Vector &dir) {
double dx = dir.x, dy = dir.y;
if (std::abs(dx) < RS_TOLERANCE && std::abs(dy) < RS_TOLERANCE)
return;
double tanh_phi = -(getMinorRadius() * dy) / (getMajorRadius() * dx);
if (std::abs(tanh_phi) >= 1.0)
return; // no real solution
double phi = std::atanh(tanh_phi);
// Check both solutions (phi and phi + π) — but only one will be on the
// correct branch
for (int sign = 0; sign < 2; ++sign) {
double phi_cand = phi + sign * M_PI;
if (phi_cand >= phiStart - RS_TOLERANCE &&
phi_cand <= phiEnd + RS_TOLERANCE) {
RS_Vector p = getPoint(phi_cand, data.reversed);
if (p.valid) {
minV = RS_Vector::minimum(minV, p);
maxV = RS_Vector::maximum(maxV, p);
}
}
}
};
addExtrema(RS_Vector(1.0, 0.0)); // global X
addExtrema(RS_Vector(0.0, 1.0)); // global Y
// Endpoints
RS_Vector start = getPoint(phiStart, data.reversed);
RS_Vector end = getPoint(phiEnd, data.reversed);
if (start.valid) {
minV = RS_Vector::minimum(minV, start);
maxV = RS_Vector::maximum(maxV, start);
}
if (end.valid) {
minV = RS_Vector::minimum(minV, end);
maxV = RS_Vector::maximum(maxV, end);
}
// Safety expansion
double expand = RS_TOLERANCE * 100.0;
minV -= RS_Vector(expand, expand);
maxV += RS_Vector(expand, expand);
}
//=====================================================================
double LC_Hyperbola::getLength() const {
if (!m_bValid)
return 0.0;
return getArcLength(data.angle1, data.angle2);
}
void LC_Hyperbola::updateLength() {
cachedLength = LC_Hyperbola::getLength();
}
//=====================================================================
void LC_Hyperbola::setFocus1(const RS_Vector &f1) {
if (!f1.valid || !m_bValid)
return;
RS_Vector f2 = data.getFocus2();
// Use a point on the current curve (vertex approximation at phi=0)
RS_Vector currentPoint = getPoint(0.0, data.reversed);
if (!currentPoint.valid) {
currentPoint = getPoint(0.0, !data.reversed); // try opposite branch
}
if (!currentPoint.valid)
return;
LC_HyperbolaData newData(f1, f2, currentPoint);
if (newData.isValid()) {
data = newData;
m_bValid = true;
calculateBorders();
updateLength();
}
}
void LC_Hyperbola::setFocus2(const RS_Vector &f2) {
if (!f2.valid || !m_bValid)
return;
RS_Vector f1 = data.getFocus1();
RS_Vector currentPoint = getPoint(0.0, data.reversed);
if (!currentPoint.valid) {
currentPoint = getPoint(0.0, !data.reversed);
}
if (!currentPoint.valid)
return;
LC_HyperbolaData newData(f1, f2, currentPoint);
if (newData.isValid()) {
data = newData;
m_bValid = true;
calculateBorders();
updateLength();
}
}
void LC_Hyperbola::setPointOnCurve(const RS_Vector &p) {
if (!p.valid || !m_bValid)
return;
RS_Vector f1 = data.getFocus1();
RS_Vector f2 = data.getFocus2();
LC_HyperbolaData newData(f1, f2, p);
if (newData.isValid()) {
data = newData;
m_bValid = true;
calculateBorders();
updateLength();
}
}
//=====================================================================
void LC_Hyperbola::setRatio(double r) {
if (r <= 0.0 || !m_bValid)
return;
data.ratio = r;
calculateBorders();
updateLength();
}
void LC_Hyperbola::setMinorRadius(double b) {
if (b <= 0.0 || !m_bValid)
return;
double a = getMajorRadius();
if (a >= RS_TOLERANCE) {
data.ratio = b / a;
calculateBorders();
updateLength();
}
}
//=====================================================================
void LC_Hyperbola::setPrimaryVertex(const RS_Vector &v) {
if (!v.valid || !m_bValid)
return;
RS_Vector dir = data.majorP;
if (dir.squared() < RS_TOLERANCE2)
return;
dir.normalize();
RS_Vector expectedVertex = data.reversed
? data.center - dir * getMajorRadius()
: data.center + dir * getMajorRadius();
RS_Vector offset = v - expectedVertex;
double distanceAlongAxis = offset.dotP(dir);
double newA = std::abs(getMajorRadius() + distanceAlongAxis);
if (newA < RS_TOLERANCE)
return;
// Adjust majorP magnitude
data.majorP = dir * newA;
if (data.reversed)
data.majorP = -data.majorP; // preserve direction for left branch
calculateBorders();
updateLength();
}
// ==========================================================================
/**
* @brief moveRef
* Moves a reference point (center, vertex, focus, startpoint, or endpoint) by offset.
*
* Supported grips:
* - Center: translation
* - Primary vertex: updates major axis direction/length
* - Foci: recomputes hyperbola preserving other focus + original start point
* - Start/endpoint: directly updates angle1/angle2 via parameter recovery
*
* After any change, bounded arc is preserved by re-projecting original endpoints.
*/
void LC_Hyperbola::moveRef(const RS_Vector& ref, const RS_Vector& offset)
{
// Store original start/end points BEFORE change
RS_Vector originalStart = getStartpoint();
RS_Vector originalEnd = getEndpoint();
bool hadBounds = originalStart.valid && originalEnd.valid;
RS_Vector newRef = ref + offset;
if (ref.distanceTo(data.center) < RS_TOLERANCE) {
data.center = newRef;
}
else if (ref.distanceTo(getPrimaryVertex()) < RS_TOLERANCE) {
RS_Vector dir = newRef - data.center;
if (dir.magnitude() > RS_TOLERANCE) {
data.majorP = dir.normalized() * getMajorRadius();
}
}
else if (!isInfinite()) {
// Start or end point movement
if (ref.distanceTo(originalStart) < RS_TOLERANCE) {
double phi = getParamFromPoint(newRef, data.reversed);
if (!std::isnan(phi)) {
data.angle1 = phi;
}
}
else if (ref.distanceTo(originalEnd) < RS_TOLERANCE) {
double phi = getParamFromPoint(newRef, data.reversed);
if (!std::isnan(phi)) {
data.angle2 = phi;
}
}
else {
// Focus movement (fallback)
RS_Vector f1 = getFocus1();
RS_Vector f2 = getFocus2();
RS_Vector fixedPoint = originalStart.valid ? originalStart : getMiddlePoint();
if (!fixedPoint.valid) fixedPoint = getPrimaryVertex();
if (ref.distanceTo(f1) < RS_TOLERANCE) {
LC_HyperbolaData newData(newRef, f2, fixedPoint);
if (newData.majorP.squared() >= RS_TOLERANCE2) {
data = newData;
}
}
else if (ref.distanceTo(f2) < RS_TOLERANCE) {
LC_HyperbolaData newData(f1, newRef, fixedPoint);
if (newData.majorP.squared() >= RS_TOLERANCE2) {
data = newData;
}
}
else {
return; // Not recognized
}
// Re-project original endpoints after focus move
if (hadBounds) {
double phiStart = getParamFromPoint(originalStart, data.reversed);
double phiEnd = getParamFromPoint(originalEnd, data.reversed);
if (!std::isnan(phiStart)) data.angle1 = phiStart;
if (!std::isnan(phiEnd)) data.angle2 = phiEnd;
if (data.angle1 > data.angle2) std::swap(data.angle1, data.angle2);
}
}
}
calculateBorders();
updateLength();
}
// ============================================================================
RS_Vector LC_Hyperbola::getPrimaryVertex() const {
if (!m_bValid) {
return RS_Vector(false);
}
double a = getMajorRadius();
if (a < RS_TOLERANCE) {
return RS_Vector(false);
}
// majorP already contains the vector from center to the right-branch vertex
// with magnitude = a and correct direction
RS_Vector vertex = data.center + data.majorP;
if (data.reversed) {
// For left branch, the primary vertex is on the opposite side
vertex = data.center - data.majorP;
}
return vertex;
}
//=====================================================================
// Grip editing: move start/end points
//=====================================================================
void LC_Hyperbola::moveStartpoint(const RS_Vector &pos) {
if (!m_bValid || !pos.valid)
return;
// Unbounded hyperbolas have no defined endpoints
if (std::abs(data.angle1) < RS_TOLERANCE &&
std::abs(data.angle2) < RS_TOLERANCE) {
RS_DEBUG->print(
RS_Debug::D_WARNING,
"LC_Hyperbola::moveStartpoint: ignored on unbounded hyperbola");
return;
}
RS_Vector newStart = getNearestPointOnEntity(pos, true);
if (!newStart.valid)
return;
double newPhi1 = getParamFromPoint(newStart, data.reversed);
double delta = data.angle2 - data.angle1;
if (data.angle1 > data.angle2) {
// Reversed angular order
data.angle1 = newPhi1 + delta;
data.angle2 = newPhi1;
} else {
data.angle1 = newPhi1;
data.angle2 = newPhi1 + delta;
}
calculateBorders();
updateLength();
}
//=====================================================================
void LC_Hyperbola::moveEndpoint(const RS_Vector &pos) {
if (!m_bValid || !pos.valid)
return;
if (std::abs(data.angle1) < RS_TOLERANCE &&
std::abs(data.angle2) < RS_TOLERANCE) {
RS_DEBUG->print(
RS_Debug::D_WARNING,
"LC_Hyperbola::moveEndpoint: ignored on unbounded hyperbola");
return;
}
RS_Vector newEnd = getNearestPointOnEntity(pos, true);
if (!newEnd.valid)
return;
double newPhi2 = getParamFromPoint(newEnd, data.reversed);
double delta = data.angle2 - data.angle1;
if (data.angle1 > data.angle2) {
data.angle1 = newPhi2;
data.angle2 = newPhi2 - delta;
} else {
data.angle2 = newPhi2;
}
calculateBorders();
updateLength();
}
//=====================================================================
// Area calculation support (Green's theorem)
//=====================================================================
/**
* @brief areaLineIntegral
* Computes ∮ x dy along the hyperbola arc using exact analytical formula.
*
* @return Signed line integral ∮ x dy
*/
double LC_Hyperbola::areaLineIntegral() const
{
if (!m_bValid || isInfinite()) return 0.0;
double phi1 = data.angle1;
double phi2 = data.angle2;
double a = getMajorRadius();
double b = getMinorRadius();
double a2 = a*a;
double b2 = b*b;
double cx = data.center.x;
//double cy = data.center.y;
double cos_th = std::cos(data.majorP.angle());
double sin_th = std::sin(data.majorP.angle());
double cos2_th = cos_th*cos_th - sin_th*sin_th;
double sin2_th = 2. * cos_th*sin_th;
double R = a * sin_th;
double S = b * cos_th;
double c1 = (a2 - b2)/8.;
double c2 = a * b / 4.;
double c3 = a * b /2.;
// The undetermined integral function for \(\int x\,dy\) is
// \(\mathbf{F(t)=}\frac{\mathbf{a}^{\mathbf{2}}\mathbf{-b}^{\mathbf{2}}}{\mathbf{8}}\sin \mathbf{(2\alpha )}\cosh \mathbf{(2t)+
// }\frac{\mathbf{ab}}{\mathbf{4}}\cos \mathbf{(2\alpha )}\sinh \mathbf{(2t)+
// }\frac{\mathbf{ab}}{\mathbf{2}}\mathbf{t+
//c}_{\mathbf{x}}\mathbf{(a}\sin \mathbf{\alpha }\cosh \mathbf{t+b}\cos \mathbf{\alpha }\sinh \mathbf{t)+C}\)
auto primitive = [&](double phi) -> double {
double c1Term = c1 * sin2_th * std::cosh(2. * phi);
double c2Term = c2 * cos2_th * std::sinh(2. * phi);
double cxTerm = cx * (R * std::cosh(phi) + S * std::sinh(phi));
return c1Term + c2Term + c3 * phi + cxTerm;
};
return primitive(phi2) - primitive(phi1);
}
//=====================================================================
RS_Vector LC_Hyperbola::dualLineTangentPoint(const RS_Vector &line) const {
if (!m_bValid || !line.valid) {
return RS_Vector(false);
}
// u x + v y + 1 = 0
// coordinates : dual
// real coordinates is rotated from canonical
// (u; v)^T (M X) + 1 =0
// Equivalent to rotation in dual coordinates, but opposite angle
// ( M^T (u; v)^T) X + 1 = 0
RS_Vector uv = RS_Vector{line}.rotate(-data.majorP.angle());
// slope = (a sinh, b cosh)
// u a sinh + v b cosh = 0,
// phi = atanh(- (vb)/(ua))
// No horizontal tangent lines for canonical form
if (std::abs(uv.x) < RS_TOLERANCE_ANGLE)
return RS_Vector{false};
double r = -getRatio() * uv.y / uv.x;
if (std::abs(r) > 1. - RS_TOLERANCE)
return RS_Vector{false};
return getPoint(std::atanh(r), false);
}
//=====================================================================
// Trim support – updated to match LC_Parabola behavior
//=====================================================================
/**
* @brief getTrimPoint
* Determines which endpoint to move for trimming, based on the click position
* relative to the chosen intersection point.
*
* Updated to match modern LibreCAD behavior (used by parabola, spline, etc.):
* - The click point (trimCoord) and the chosen intersection (from prepareTrim())
* are used to decide whether to trim/extend the start or end.
* - Keeps the portion containing the click point.
*
* @param trimCoord Click coordinate (user's mouse position)
* @param trimPoint Chosen intersection point (returned by prepareTrim())
* @return EndingStart if trimming/extending start point, EndingEnd for end point,
* EndingNone if invalid/unbounded
*/
RS2::Ending LC_Hyperbola::getTrimPoint(const RS_Vector& trimCoord,
const RS_Vector& trimPoint)
{
if (!m_bValid || !trimPoint.valid || !trimCoord.valid || isInfinite()) {
return RS2::EndingNone;
}
// Project click point onto current hyperbola arc
RS_Vector nearest = getNearestPointOnEntity(trimCoord, true);
if (!nearest.valid) {
nearest = trimCoord; // fallback
}
double phi_click = getParamFromPoint(nearest, data.reversed);
double phi_inter = getParamFromPoint(trimPoint, data.reversed);
if (std::isnan(phi_click) || std::isnan(phi_inter)) {
// Fallback to geometric distance if param recovery fails
RS_Vector start = getStartpoint();
RS_Vector end = getEndpoint();
if (!start.valid || !end.valid) return RS2::EndingNone;
return (nearest.distanceTo(start) < nearest.distanceTo(end))
? RS2::EndingStart : RS2::EndingEnd;
}
// Keep the side containing the click point
// If intersection is on the "start" side of click → move startpoint
// Otherwise → move endpoint
return (phi_inter < phi_click) ? RS2::EndingStart : RS2::EndingEnd;
}
/**
* @brief prepareTrim
* Selects the intersection point closest along the branch to the click position.
*
* Returns the chosen intersection so getTrimPoint() can use it to decide direction.
*
* @param trimCoord Click coordinate
* @param trimSol All intersection solutions
* @return Chosen intersection point (closest along parametric branch to click)
*/
RS_Vector LC_Hyperbola::prepareTrim(const RS_Vector& trimCoord,
const RS_VectorSolutions& trimSol)
{
if (!m_bValid || trimSol.empty() || isInfinite()) {
return RS_Vector(false);
}
// Project click onto current arc to get reference parameter
RS_Vector nearest = getNearestPointOnEntity(trimCoord, false);
if (!nearest.valid) {
nearest = trimCoord;
}
double phi_ref = getParamFromPoint(nearest, data.reversed);
if (std::isnan(phi_ref)) {
return RS_Vector(false);
}
RS_Vector bestSol(false);
double minDeltaPhi = RS_MAXDOUBLE;
// Choose intersection with smallest |Δφ| from click position
for (const RS_Vector& intersect : trimSol) {
if (!intersect.valid)
continue;
// RS_Vector proj = getNearestPointOnEntity(sol, false);
// if (!proj.valid) proj = sol;
double phi = getParamFromPoint(intersect, data.reversed);
if (std::isnan(phi))
continue;
double deltaPhi = std::abs(phi - phi_ref);
if (deltaPhi < minDeltaPhi) {
minDeltaPhi = deltaPhi;
bestSol = intersect;
}
}
if (!bestSol.valid)
return RS_Vector(false);
double newPhi = getParamFromPoint(bestSol, data.reversed);
// Use getTrimPoint() with the chosen intersection to decide which end to move
RS2::Ending side = getTrimPoint(trimCoord, bestSol);
if (side == RS2::EndingStart) {
data.angle1 = newPhi;
} else if (side == RS2::EndingEnd) {
data.angle2 = newPhi;
} else {
return RS_Vector(false);
}
calculateBorders();
updateLength();
return bestSol;
}
|