File size: 33,940 Bytes
985c397 | 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 | // SPDX-License-Identifier: LGPL-2.1-or-later
/***************************************************************************
* Copyright (c) 2018 Abdullah Tahiri <abdullah.tahiri.yo@gmail.com> *
* Copyright (c) 2013 Werner Mayer <wmayer[at]users.sourceforge.net> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library 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 Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include <cmath>
#include <BRep_Tool.hxx>
#include <Precision.hxx>
#include <TopExp.hxx>
#include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Vertex.hxx>
#include <gp_Pnt.hxx>
#include <App/Document.h>
#include <Base/Console.h>
#include "GeometryFacade.h"
#include "SketchAnalysis.h"
#include "SketchObject.h"
using namespace Sketcher;
SketchAnalysis::SketchAnalysis(Sketcher::SketchObject* Obj)
: sketch(Obj)
{}
SketchAnalysis::~SketchAnalysis() = default;
namespace
{
struct VertexIds
{
Base::Vector3d v;
int GeoId {};
Sketcher::PointPos PosId {};
};
struct Vertex_Less
{
explicit Vertex_Less(double tolerance)
: tolerance(tolerance)
{}
bool operator()(const VertexIds& x, const VertexIds& y) const
{
if (fabs(x.v.x - y.v.x) > tolerance) {
return x.v.x < y.v.x;
}
if (fabs(x.v.y - y.v.y) > tolerance) {
return x.v.y < y.v.y;
}
if (fabs(x.v.z - y.v.z) > tolerance) {
return x.v.z < y.v.z;
}
return false; // points are considered to be equal
}
private:
double tolerance;
};
struct VertexID_Less
{
bool operator()(const VertexIds& x, const VertexIds& y) const
{
return (x.GeoId < y.GeoId || ((x.GeoId == y.GeoId) && (x.PosId < y.PosId)));
}
};
struct Vertex_EqualTo
{
explicit Vertex_EqualTo(double tolerance)
: tolerance(tolerance)
{}
bool operator()(const VertexIds& x, const VertexIds& y) const
{
if (fabs(x.v.x - y.v.x) <= tolerance) {
if (fabs(x.v.y - y.v.y) <= tolerance) {
if (fabs(x.v.z - y.v.z) <= tolerance) {
return true;
}
}
}
return false;
}
private:
double tolerance;
};
struct EdgeIds
{
double l {};
int GeoId {};
};
struct Edge_Less
{
explicit Edge_Less(double tolerance)
: tolerance(tolerance)
{}
bool operator()(const EdgeIds& x, const EdgeIds& y) const
{
if (fabs(x.l - y.l) > tolerance) {
return x.l < y.l;
}
return false; // points are considered to be equal
}
private:
double tolerance;
};
struct Edge_EqualTo
{
explicit Edge_EqualTo(double tolerance)
: tolerance(tolerance)
{}
bool operator()(const EdgeIds& x, const EdgeIds& y) const
{
return (fabs(x.l - y.l) <= tolerance);
}
private:
double tolerance;
};
struct PointConstraints
{
void addGeometry(const Part::Geometry* geo, int index)
{
if (const auto* segm = dynamic_cast<const Part::GeomLineSegment*>(geo)) {
addLineSegment(segm, index);
}
else if (const auto* segm = dynamic_cast<const Part::GeomArcOfCircle*>(geo)) {
addArcOfCircle(segm, index);
}
else if (const auto* segm = dynamic_cast<const Part::GeomArcOfEllipse*>(geo)) {
addArcOfEllipse(segm, index);
}
else if (const auto* segm = dynamic_cast<const Part::GeomArcOfHyperbola*>(geo)) {
addArcOfHyperbola(segm, index);
}
else if (const auto* segm = dynamic_cast<const Part::GeomArcOfParabola*>(geo)) {
addArcOfParabola(segm, index);
}
else if (const auto* segm = dynamic_cast<const Part::GeomBSplineCurve*>(geo)) {
addBSplineCurve(segm, index);
}
}
void addLineSegment(const Part::GeomLineSegment* segm, int index)
{
VertexIds id;
id.GeoId = index;
id.PosId = Sketcher::PointPos::start;
id.v = segm->getStartPoint();
vertexIds.push_back(id);
id.GeoId = index;
id.PosId = Sketcher::PointPos::end;
id.v = segm->getEndPoint();
vertexIds.push_back(id);
}
void addArcOfCircle(const Part::GeomArcOfCircle* segm, int index)
{
VertexIds id;
id.GeoId = index;
id.PosId = Sketcher::PointPos::start;
id.v = segm->getStartPoint(/*emulateCCWXY=*/true);
vertexIds.push_back(id);
id.GeoId = index;
id.PosId = Sketcher::PointPos::end;
id.v = segm->getEndPoint(/*emulateCCWXY=*/true);
vertexIds.push_back(id);
}
void addArcOfEllipse(const Part::GeomArcOfEllipse* segm, int index)
{
VertexIds id;
id.GeoId = index;
id.PosId = Sketcher::PointPos::start;
id.v = segm->getStartPoint(/*emulateCCWXY=*/true);
vertexIds.push_back(id);
id.GeoId = index;
id.PosId = Sketcher::PointPos::end;
id.v = segm->getEndPoint(/*emulateCCWXY=*/true);
vertexIds.push_back(id);
}
void addArcOfHyperbola(const Part::GeomArcOfHyperbola* segm, int index)
{
VertexIds id;
id.GeoId = index;
id.PosId = Sketcher::PointPos::start;
id.v = segm->getStartPoint();
vertexIds.push_back(id);
id.GeoId = index;
id.PosId = Sketcher::PointPos::end;
id.v = segm->getEndPoint();
vertexIds.push_back(id);
}
void addArcOfParabola(const Part::GeomArcOfParabola* segm, int index)
{
VertexIds id;
id.GeoId = index;
id.PosId = Sketcher::PointPos::start;
id.v = segm->getStartPoint();
vertexIds.push_back(id);
id.GeoId = index;
id.PosId = Sketcher::PointPos::end;
id.v = segm->getEndPoint();
vertexIds.push_back(id);
}
void addBSplineCurve(const Part::GeomBSplineCurve* segm, int index)
{
VertexIds id;
id.GeoId = index;
id.PosId = Sketcher::PointPos::start;
id.v = segm->getStartPoint();
vertexIds.push_back(id);
id.GeoId = index;
id.PosId = Sketcher::PointPos::end;
id.v = segm->getEndPoint();
vertexIds.push_back(id);
}
std::list<ConstraintIds> getMissingCoincidences(
std::vector<Sketcher::Constraint*>& allcoincid,
double precision
)
{
std::list<ConstraintIds> missingCoincidences; // Holds the list of missing coincidences
// Sort points in geographic order
std::sort(vertexIds.begin(), vertexIds.end(), Vertex_Less(precision));
auto vt = vertexIds.begin();
Vertex_EqualTo pred(precision);
// Comparing existing constraints and find missing ones
while (vt < vertexIds.end()) {
// Seeking for adjacent group of vertices
vt = std::adjacent_find(vt, vertexIds.end(), pred);
if (vt < vertexIds.end()) { // If one found
std::vector<VertexIds>::iterator vn;
// Holds a single group of adjacent vertices
std::set<VertexIds, VertexID_Less> vertexGrp;
// Extract the group of adjacent vertices
vertexGrp.insert(*vt);
for (vn = vt + 1; vn < vertexIds.end(); ++vn) {
if (pred(*vt, *vn)) {
vertexGrp.insert(*vn);
}
else {
break;
}
}
// Holds groups of coincident vertices
std::vector<std::set<VertexIds, VertexID_Less>> coincVertexGrps;
// Decompose the group of adjacent vertices into groups of coincident vertices
// Going through existent coincidences
for (auto& coincidence : allcoincid) {
VertexIds v1;
VertexIds v2;
v1.GeoId = coincidence->First;
v1.PosId = coincidence->FirstPos;
v2.GeoId = coincidence->Second;
v2.PosId = coincidence->SecondPos;
// Look if coincident vertices are in the group of adjacent ones we are
// processing
auto nv1 = vertexGrp.extract(v1);
auto nv2 = vertexGrp.extract(v2);
// Maybe if both empty, they already have been extracted by other coincidences
// We have to check in existing coincident groups and eventually merge
if (nv1.empty() && nv2.empty()) {
std::set<VertexIds, VertexID_Less>* tempGrp = nullptr;
for (auto it = coincVertexGrps.begin(); it < coincVertexGrps.end(); ++it) {
if ((it->find(v1) != it->end()) || (it->find(v2) != it->end())) {
if (!tempGrp) {
tempGrp = &*it;
}
else {
tempGrp->insert(it->begin(), it->end());
coincVertexGrps.erase(it);
break;
}
}
}
continue;
}
// Look if one of the constrained vertices is already in a group of coincident
// vertices
for (std::set<VertexIds, VertexID_Less>& grp : coincVertexGrps) {
if ((grp.find(v1) != grp.end()) || (grp.find(v2) != grp.end())) {
// If yes add them to the existing group
if (!nv1.empty()) {
grp.insert(nv1.value());
}
if (!nv2.empty()) {
grp.insert(nv2.value());
}
continue;
}
}
if (nv1.empty() || nv2.empty()) {
continue;
}
// If no, create a new group of coincident vertices
std::set<VertexIds, VertexID_Less> newGrp;
newGrp.insert(nv1.value());
newGrp.insert(nv2.value());
coincVertexGrps.push_back(newGrp);
}
// If there are remaining vertices in the adjacent group (not in any existing
// constraint) add them as being each a separate coincident group
for (auto& lonept : vertexGrp) {
std::set<VertexIds, VertexID_Less> newGrp;
newGrp.insert(lonept);
coincVertexGrps.push_back(newGrp);
}
// If there is more than 1 coincident group into adjacent group, constraint(s)
// is(are) missing Virtually generate the missing constraint(s)
if (coincVertexGrps.size() > 1) {
std::vector<std::set<VertexIds, VertexID_Less>>::iterator vn;
// Starting from the 2nd coincident group, generate a constraint between
// this group first vertex, and previous group first vertex
for (vn = coincVertexGrps.begin() + 1; vn < coincVertexGrps.end(); ++vn) {
ConstraintIds id;
id.Type = Coincident; // default point on point restriction
id.v = (vn - 1)->begin()->v;
id.First = (vn - 1)->begin()->GeoId;
id.FirstPos = (vn - 1)->begin()->PosId;
id.Second = vn->begin()->GeoId;
id.SecondPos = vn->begin()->PosId;
missingCoincidences.push_back(id);
}
}
vt = vn;
}
}
return missingCoincidences;
}
private:
// Holds a list of all vertices in the sketch
std::vector<VertexIds> vertexIds;
};
struct EqualityConstraints
{
void addGeometry(const Part::Geometry* geo, int index)
{
if (const auto* segm = dynamic_cast<const Part::GeomLineSegment*>(geo)) {
addLineSegment(segm, index);
}
else if (const auto* segm = dynamic_cast<const Part::GeomArcOfCircle*>(geo)) {
addArcOfCircle(segm, index);
}
else if (const auto* segm = dynamic_cast<const Part::GeomCircle*>(geo)) {
addCircle(segm, index);
}
}
void addLineSegment(const Part::GeomLineSegment* segm, int index)
{
EdgeIds id;
id.GeoId = index;
id.l = (segm->getEndPoint() - segm->getStartPoint()).Length();
lineedgeIds.push_back(id);
}
void addArcOfCircle(const Part::GeomArcOfCircle* segm, int index)
{
EdgeIds id;
id.GeoId = index;
id.l = segm->getRadius();
radiusedgeIds.push_back(id);
}
void addCircle(const Part::GeomCircle* segm, int index)
{
EdgeIds id;
id.GeoId = index;
id.l = segm->getRadius();
radiusedgeIds.push_back(id);
}
std::list<ConstraintIds> getEqualLines(double precision)
{
std::sort(lineedgeIds.begin(), lineedgeIds.end(), Edge_Less(precision));
auto vt = lineedgeIds.begin();
Edge_EqualTo pred(precision);
std::list<ConstraintIds> equallines;
// Make a list of constraint we expect for coincident vertexes
while (vt < lineedgeIds.end()) {
// get first item whose adjacent element has the same vertex coordinates
vt = std::adjacent_find(vt, lineedgeIds.end(), pred);
if (vt < lineedgeIds.end()) {
std::vector<EdgeIds>::iterator vn;
for (vn = vt + 1; vn != lineedgeIds.end(); ++vn) {
if (pred(*vt, *vn)) {
ConstraintIds id;
id.Type = Equal;
id.v.x = vt->l;
id.First = vt->GeoId;
id.FirstPos = Sketcher::PointPos::none;
id.Second = vn->GeoId;
id.SecondPos = Sketcher::PointPos::none;
equallines.push_back(id);
}
else {
break;
}
}
vt = vn;
}
}
return equallines;
}
std::list<ConstraintIds> getEqualRadius(double precision)
{
std::sort(radiusedgeIds.begin(), radiusedgeIds.end(), Edge_Less(precision));
auto vt = radiusedgeIds.begin();
Edge_EqualTo pred(precision);
std::list<ConstraintIds> equalradius;
// Make a list of constraint we expect for coincident vertexes
while (vt < radiusedgeIds.end()) {
// get first item whose adjacent element has the same vertex coordinates
vt = std::adjacent_find(vt, radiusedgeIds.end(), pred);
if (vt < radiusedgeIds.end()) {
std::vector<EdgeIds>::iterator vn;
for (vn = vt + 1; vn != radiusedgeIds.end(); ++vn) {
if (pred(*vt, *vn)) {
ConstraintIds id;
id.Type = Equal;
id.v.x = vt->l;
id.First = vt->GeoId;
id.FirstPos = Sketcher::PointPos::none;
id.Second = vn->GeoId;
id.SecondPos = Sketcher::PointPos::none;
equalradius.push_back(id);
}
else {
break;
}
}
vt = vn;
}
}
return equalradius;
}
private:
std::vector<EdgeIds> lineedgeIds;
std::vector<EdgeIds> radiusedgeIds;
};
} // namespace
int SketchAnalysis::detectMissingPointOnPointConstraints(double precision, bool includeconstruction /*=true*/)
{
PointConstraints pointConstr;
// Build the list of sketch vertices
const std::vector<Part::Geometry*>& geom = sketch->getInternalGeometry();
for (std::size_t i = 0; i < geom.size(); i++) {
auto gf = GeometryFacade::getFacade(geom[i]);
if (gf->getConstruction() && !includeconstruction) {
continue;
}
pointConstr.addGeometry(gf->getGeometry(), int(i));
// TODO take into account single vertices ?
}
// Build a list of all coincidences in the sketch
std::vector<Sketcher::Constraint*> coincidences = sketch->Constraints.getValues();
for (auto& constraint : sketch->Constraints.getValues()) {
// clang-format off
if (constraint->Type == Sketcher::Coincident ||
constraint->Type == Sketcher::Tangent ||
constraint->Type == Sketcher::Perpendicular) {
coincidences.push_back(constraint);
}
// clang-format on
// TODO optimizing by removing constraints not applying on vertices ?
}
// Holds the list of missing coincidences
std::list<ConstraintIds> missingCoincidences
= pointConstr.getMissingCoincidences(coincidences, precision);
// Update list of missing constraints stored as member variable of sketch
this->vertexConstraints.clear();
this->vertexConstraints.reserve(missingCoincidences.size());
for (auto& coincidence : missingCoincidences) {
this->vertexConstraints.push_back(coincidence);
}
// Return number of missing constraints
return int(this->vertexConstraints.size());
}
void SketchAnalysis::analyseMissingPointOnPointCoincident(double angleprecision)
{
for (auto& vc : vertexConstraints) {
auto geo1 = sketch->getGeometry(vc.First);
auto geo2 = sketch->getGeometry(vc.Second);
// tangency point-on-point
const auto* curve1 = dynamic_cast<const Part::GeomCurve*>(geo1);
const auto* curve2 = dynamic_cast<const Part::GeomCurve*>(geo2);
if (curve1 && curve2) {
const auto* segm1 = dynamic_cast<const Part::GeomLineSegment*>(geo1);
const auto* segm2 = dynamic_cast<const Part::GeomLineSegment*>(geo2);
if (segm1 && segm2) {
Base::Vector3d dir1 = segm1->getEndPoint() - segm1->getStartPoint();
Base::Vector3d dir2 = segm2->getEndPoint() - segm2->getStartPoint();
if ((checkVertical(dir1, angleprecision) || checkHorizontal(dir1, angleprecision))
&& (checkVertical(dir2, angleprecision) || checkHorizontal(dir2, angleprecision))) {
// this is a job for horizontal/vertical constraints alone
continue;
}
}
try {
double u1 {};
double u2 {};
curve1->closestParameter(vc.v, u1);
curve2->closestParameter(vc.v, u2);
Base::Vector3d tgv1 = curve1->firstDerivativeAtParameter(u1).Normalize();
Base::Vector3d tgv2 = curve2->firstDerivativeAtParameter(u2).Normalize();
if (fabs(tgv1 * tgv2) > fabs(cos(angleprecision))) {
vc.Type = Sketcher::Tangent;
}
else if (fabs(tgv1 * tgv2) < fabs(cos(std::numbers::pi / 2 - angleprecision))) {
vc.Type = Sketcher::Perpendicular;
}
}
catch (Base::Exception&) {
Base::Console().warning(
"Point-On-Point Coincidence analysis: unable to obtain "
"derivative. Detection ignored.\n"
);
continue;
}
}
}
}
Sketcher::Constraint* SketchAnalysis::create(const ConstraintIds& id)
{
auto c = new Sketcher::Constraint();
c->Type = id.Type;
c->First = id.First;
c->Second = id.Second;
c->FirstPos = id.FirstPos;
c->SecondPos = id.SecondPos;
return c;
}
void SketchAnalysis::solveSketch(const char* errorText)
{
int status {};
int dofs {};
solvesketch(status, dofs, true);
if (status == int(Solver::RedundantConstraints)) {
sketch->autoRemoveRedundants(DeleteOption::NoFlag);
solvesketch(status, dofs, false);
}
if (status) {
THROWMT(Base::RuntimeError, errorText);
}
}
void SketchAnalysis::makeConstraints(std::vector<ConstraintIds>& ids)
{
std::vector<Sketcher::Constraint*> constr;
constr.reserve(ids.size());
for (const auto& it : ids) {
auto c = create(it);
constr.push_back(c);
}
sketch->addConstraints(constr);
ids.clear();
for (auto it : constr) {
delete it;
}
}
void SketchAnalysis::makeConstraintsOneByOne(std::vector<ConstraintIds>& ids, const char* errorText)
{
for (const auto& it : ids) {
auto c = create(it);
// addConstraint() creates a clone
sketch->addConstraint(c);
delete c;
solveSketch(errorText);
}
ids.clear();
}
void SketchAnalysis::makeMissingPointOnPointCoincident()
{
makeConstraints(vertexConstraints);
}
void SketchAnalysis::makeMissingPointOnPointCoincidentOneByOne()
{
makeConstraintsOneByOne(
vertexConstraints,
QT_TRANSLATE_NOOP(
"Exceptions",
"Autoconstraint error: Unsolvable sketch while "
"applying coincident constraints."
)
);
}
int SketchAnalysis::detectMissingVerticalHorizontalConstraints(double angleprecision)
{
const std::vector<Part::Geometry*>& geom = sketch->getInternalGeometry();
verthorizConstraints.clear();
for (std::size_t i = 0; i < geom.size(); i++) {
Part::Geometry* g = geom[i];
if (const auto* segm = dynamic_cast<const Part::GeomLineSegment*>(g)) {
Base::Vector3d dir = segm->getEndPoint() - segm->getStartPoint();
ConstraintIds id;
id.v = dir;
id.First = (int)i;
id.FirstPos = Sketcher::PointPos::none;
id.Second = GeoEnum::GeoUndef;
id.SecondPos = Sketcher::PointPos::none;
if (checkVertical(dir, angleprecision)) {
id.Type = Sketcher::Vertical;
verthorizConstraints.push_back(id);
}
else if (checkHorizontal(dir, angleprecision)) {
id.Type = Sketcher::Horizontal;
verthorizConstraints.push_back(id);
}
}
}
return int(verthorizConstraints.size());
}
void SketchAnalysis::makeMissingVerticalHorizontal()
{
makeConstraints(verthorizConstraints);
}
void SketchAnalysis::makeMissingVerticalHorizontalOneByOne()
{
makeConstraintsOneByOne(
verthorizConstraints,
QT_TRANSLATE_NOOP(
"Exceptions",
"Autoconstraint error: Unsolvable sketch while "
"applying vertical/horizontal constraints."
)
);
}
bool SketchAnalysis::checkVertical(Base::Vector3d dir, double angleprecision)
{
return (dir.x == 0. && dir.y != 0.)
|| (fabs(dir.y / dir.x) > tan(std::numbers::pi / 2 - angleprecision));
}
bool SketchAnalysis::checkHorizontal(Base::Vector3d dir, double angleprecision)
{
return (dir.y == 0. && dir.x != 0.) || (fabs(dir.x / dir.y) > (1 / tan(angleprecision)));
}
int SketchAnalysis::detectMissingEqualityConstraints(double precision)
{
EqualityConstraints equalConstr;
const std::vector<Part::Geometry*>& geom = sketch->getInternalGeometry();
for (std::size_t i = 0; i < geom.size(); i++) {
Part::Geometry* g = geom[i];
equalConstr.addGeometry(g, int(i));
}
std::list<ConstraintIds> equallines = equalConstr.getEqualLines(precision);
std::list<ConstraintIds> equalradius = equalConstr.getEqualRadius(precision);
// Go through the available 'Coincident', 'Tangent' or 'Perpendicular' constraints
// and check which of them is forcing two vertexes to be coincident.
// If there is none but two vertexes can be considered equal a coincident constraint is missing.
std::vector<Sketcher::Constraint*> constraint = sketch->Constraints.getValues();
for (auto it : constraint) {
if (it->Type == Sketcher::Equal) {
ConstraintIds
id {Base::Vector3d {}, it->First, it->Second, it->FirstPos, it->SecondPos, it->Type};
auto pos = std::find_if(equallines.begin(), equallines.end(), Constraint_Equal(id));
if (pos != equallines.end()) {
equallines.erase(pos);
}
pos = std::find_if(equalradius.begin(), equalradius.end(), Constraint_Equal(id));
if (pos != equalradius.end()) {
equalradius.erase(pos);
}
}
}
this->lineequalityConstraints.clear();
this->lineequalityConstraints.reserve(equallines.size());
for (const auto& it : equallines) {
this->lineequalityConstraints.push_back(it);
}
this->radiusequalityConstraints.clear();
this->radiusequalityConstraints.reserve(equalradius.size());
for (const auto& it : equalradius) {
this->radiusequalityConstraints.push_back(it);
}
return int(this->lineequalityConstraints.size() + this->radiusequalityConstraints.size());
}
void SketchAnalysis::makeMissingEquality()
{
std::vector<Sketcher::ConstraintIds> equalities(lineequalityConstraints);
equalities.insert(
equalities.end(),
radiusequalityConstraints.begin(),
radiusequalityConstraints.end()
);
makeConstraints(equalities);
lineequalityConstraints.clear();
radiusequalityConstraints.clear();
}
void SketchAnalysis::makeMissingEqualityOneByOne()
{
std::vector<Sketcher::ConstraintIds> equalities(lineequalityConstraints);
equalities.insert(
equalities.end(),
radiusequalityConstraints.begin(),
radiusequalityConstraints.end()
);
makeConstraintsOneByOne(
equalities,
QT_TRANSLATE_NOOP(
"Exceptions",
"Autoconstraint error: Unsolvable sketch while "
"applying equality constraints."
)
);
lineequalityConstraints.clear();
radiusequalityConstraints.clear();
}
void SketchAnalysis::solvesketch(int& status, int& dofs, bool updategeo)
{
status = sketch->solve(updategeo);
if (updategeo) {
dofs = sketch->setUpSketch();
}
else {
dofs = sketch->getLastDoF();
}
if (sketch->getLastHasRedundancies()) {
status = int(Solver::RedundantConstraints);
}
if (dofs < 0) {
status = int(Solver::OverConstrained);
}
else if (sketch->getLastHasConflicts()) {
status = int(Solver::ConflictingConstraints);
}
}
void SketchAnalysis::autoDeleteAllConstraints()
{
App::Document* doc = sketch->getDocument();
doc->openTransaction("delete all constraints");
// We start from zero
sketch->deleteAllConstraints();
doc->commitTransaction();
// a failure should not be possible at this moment as we start from a clean situation
solveSketch(
QT_TRANSLATE_NOOP("Exceptions", "Autoconstraint error: Unsolvable sketch without constraints.")
);
}
void SketchAnalysis::autoHorizontalVerticalConstraints()
{
App::Document* doc = sketch->getDocument();
doc->openTransaction("add vertical/horizontal constraints");
makeMissingVerticalHorizontal();
// finish the transaction and update
doc->commitTransaction();
solveSketch(QT_TRANSLATE_NOOP(
"Exceptions",
"Autoconstraint error: Unsolvable sketch after applying "
"horizontal and vertical constraints."
));
}
void SketchAnalysis::autoPointOnPointCoincident()
{
App::Document* doc = sketch->getDocument();
doc->openTransaction("add coincident constraint");
makeMissingPointOnPointCoincident();
// finish the transaction and update
doc->commitTransaction();
solveSketch(QT_TRANSLATE_NOOP(
"Exceptions",
"Autoconstraint error: Unsolvable sketch after applying "
"point-on-point constraints."
));
}
void SketchAnalysis::autoMissingEquality()
{
App::Document* doc = sketch->getDocument();
doc->openTransaction("add equality constraints");
try {
makeMissingEquality();
}
catch (Base::RuntimeError&) {
doc->abortTransaction();
throw;
}
// finish the transaction and update
doc->commitTransaction();
solveSketch(QT_TRANSLATE_NOOP(
"Exceptions",
"Autoconstraint error: Unsolvable sketch after "
"applying equality constraints."
));
}
int SketchAnalysis::autoconstraint(double precision, double angleprecision, bool includeconstruction)
{
autoDeleteAllConstraints();
// STAGE 1: Vertical/Horizontal Line Segments
int nhv = detectMissingVerticalHorizontalConstraints(angleprecision);
// STAGE 2: Point-on-Point constraint (Coincidents, endpoint perp, endpoint tangency)
// Note: We do not apply the vertical/horizontal constraints before calculating the pointonpoint
// constraints
// as the solver may move the geometry in the meantime and prevent correct detection
int nc = detectMissingPointOnPointConstraints(precision, includeconstruction);
if (nc > 0) { // STAGE 2a: Classify point-on-point into coincidents, endpoint perp, endpoint
// tangency
analyseMissingPointOnPointCoincident(angleprecision);
}
// STAGE 3: Equality constraint detection
int ne = detectMissingEqualityConstraints(precision);
Base::Console().log(
"Constraints: Vertical/Horizontal: %d found. "
"Point-on-point: %d. Equality: %d\n",
nhv,
nc,
ne
);
// Applying STAGE 1, if any
if (nhv > 0) {
autoHorizontalVerticalConstraints();
}
// Applying STAGE 2
if (nc > 0) {
autoPointOnPointCoincident();
}
// Applying STAGE 3
if (ne > 0) {
autoMissingEquality();
}
return 0;
}
std::vector<Base::Vector3d> SketchAnalysis::getOpenVertices() const
{
std::vector<Base::Vector3d> points;
TopoDS_Shape shape = sketch->Shape.getValue();
Base::Placement Plm = sketch->Placement.getValue();
Base::Placement invPlm = Plm.inverse();
// build up map vertex->edge
TopTools_IndexedDataMapOfShapeListOfShape vertex2Edge;
TopExp::MapShapesAndAncestors(shape, TopAbs_VERTEX, TopAbs_EDGE, vertex2Edge);
for (int i = 1; i <= vertex2Edge.Extent(); ++i) {
const TopTools_ListOfShape& los = vertex2Edge.FindFromIndex(i);
if (los.Extent() != 2) {
const TopoDS_Vertex& vertex = TopoDS::Vertex(vertex2Edge.FindKey(i));
gp_Pnt pnt = BRep_Tool::Pnt(vertex);
Base::Vector3d pos;
invPlm.multVec(Base::Vector3d(pnt.X(), pnt.Y(), pnt.Z()), pos);
points.push_back(pos);
}
}
return points;
}
std::set<int> SketchAnalysis::getDegeneratedGeometries(double tolerance) const
{
std::set<int> delInternalGeometries;
const std::vector<Part::Geometry*>& geom = sketch->getInternalGeometry();
for (std::size_t i = 0; i < geom.size(); i++) {
auto gf = GeometryFacade::getFacade(geom[i]);
if (gf->getConstruction()) {
continue;
}
if (auto curve = dynamic_cast<Part::GeomCurve*>(gf->getGeometry())) {
double len = curve->length(curve->getFirstParameter(), curve->getLastParameter());
if (len < tolerance) {
delInternalGeometries.insert(static_cast<int>(i));
}
}
}
return delInternalGeometries;
}
int SketchAnalysis::detectDegeneratedGeometries(double tolerance) const
{
std::set<int> delInternalGeometries = getDegeneratedGeometries(tolerance);
return static_cast<int>(delInternalGeometries.size());
}
int SketchAnalysis::removeDegeneratedGeometries(double tolerance)
{
std::set<int> delInternalGeometries = getDegeneratedGeometries(tolerance);
for (auto it = delInternalGeometries.rbegin(); it != delInternalGeometries.rend(); ++it) {
sketch->delGeometry(*it);
}
return static_cast<int>(delInternalGeometries.size());
}
|