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
|
// SPDX-FileCopyrightText: 2003 Dominique Devriese <devriese@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#include "intersection_types.h"
#include <math.h>
#include "bogus_imp.h"
#include "circle_imp.h"
#include "conic_imp.h"
#include "cubic_imp.h"
#include "line_imp.h"
#include "other_imp.h"
#include "point_imp.h"
static const KLazyLocalizedString intersectlinestat = kli18n("Intersect with this line");
static const ArgsParser::spec argsspecConicLineIntersection[] = {{ConicImp::stype(), kli18n("Intersect with this conic"), {}, true},
{AbstractLineImp::stype(), intersectlinestat, {}, true},
{IntImp::stype(), "param", {}, false}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(ConicLineIntersectionType)
ConicLineIntersectionType::ConicLineIntersectionType()
: ArgsParserObjectType("ConicLineIntersection", argsspecConicLineIntersection, 3)
{
}
ConicLineIntersectionType::~ConicLineIntersectionType()
{
}
const ConicLineIntersectionType *ConicLineIntersectionType::instance()
{
static const ConicLineIntersectionType t;
return &t;
}
ObjectImp *ConicLineIntersectionType::calc(const Args &parents, const KigDocument &doc) const
{
/*
* special case of a circle that degenerates into a line. This is possible e.g. for
* circles by three points when the points get aligned.
*/
if (parents.size() == 3 && parents[0]->inherits(AbstractLineImp::stype()) && parents[1]->inherits(AbstractLineImp::stype())
&& parents[2]->inherits(IntImp::stype())) {
int side = static_cast<const IntImp *>(parents[2])->data();
assert(side == 1 || side == -1);
const LineData degline = static_cast<const AbstractLineImp *>(parents[0])->data();
const LineData line = static_cast<const AbstractLineImp *>(parents[1])->data();
const double vecprod = degline.dir().y * line.dir().x - degline.dir().x * line.dir().y;
/*
* mp: In this case only one of the two points must be valid (the other is "pushed"
* to infinity). The choice of which one is done such that we avoid abrupt points exchange
* when dinamically movint points
*/
if (side * vecprod < 0) {
Coordinate p = calcIntersectionPoint(degline, line);
return new PointImp(p);
}
return new InvalidImp();
}
if (!margsparser.checkArgs(parents))
return new InvalidImp;
int side = static_cast<const IntImp *>(parents[2])->data();
assert(side == 1 || side == -1);
const AbstractLineImp *lineimp = static_cast<const AbstractLineImp *>(parents[1]);
const LineData line = lineimp->data();
Coordinate ret;
if (parents[0]->inherits(CircleImp::stype())) {
// easy case..
const CircleImp *c = static_cast<const CircleImp *>(parents[0]);
ret = calcCircleLineIntersect(c->center(), c->squareRadius(), line, c->orientation() * side);
} else {
// harder case..
ret = calcConicLineIntersect(static_cast<const ConicImp *>(parents[0])->cartesianData(), line, 0.0, side);
}
if (!ret.valid())
return new InvalidImp;
if (!lineimp->containsPoint(ret, doc))
return new InvalidImp;
return new PointImp(ret);
}
/*
* This construction is authomatically invoked when the user
* intersects a line with a conic with one of the intersections
* already present. There are two positive side effects:
* 1. The production of coincident points is greatly reduced
* 2. The "other" intersection will remain the "other" one also
* when dynamically moving the construction, which is what the
* user expects
*/
static const ArgsParser::spec argsspecConicLineOtherIntersection[] = {{ConicImp::stype(), {}, {}, true},
{AbstractLineImp::stype(), {}, {}, true},
{PointImp::stype(), {}, {}, false}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(ConicLineOtherIntersectionType)
ConicLineOtherIntersectionType::ConicLineOtherIntersectionType()
: ArgsParserObjectType("ConicLineOtherIntersection", argsspecConicLineOtherIntersection, 3)
{
}
ConicLineOtherIntersectionType::~ConicLineOtherIntersectionType()
{
}
const ConicLineOtherIntersectionType *ConicLineOtherIntersectionType::instance()
{
static const ConicLineOtherIntersectionType t;
return &t;
}
ObjectImp *ConicLineOtherIntersectionType::calc(const Args &parents, const KigDocument &doc) const
{
if (!margsparser.checkArgs(parents))
return new InvalidImp;
Coordinate p = static_cast<const PointImp *>(parents[2])->coordinate();
const AbstractLineImp *line = static_cast<const AbstractLineImp *>(parents[1]);
const ConicImp *conic = static_cast<const ConicImp *>(parents[0]);
const LineData linedata = line->data();
if (!line->containsPoint(p, doc) || !conic->containsPoint(p, doc)) {
return new InvalidImp;
}
Coordinate ret;
double pax = p.x - linedata.a.x;
double pay = p.y - linedata.a.y;
double bax = linedata.b.x - linedata.a.x;
double bay = linedata.b.y - linedata.a.y;
double knownparam = (pax * bax + pay * bay) / (bax * bax + bay * bay);
ret = calcConicLineIntersect(conic->cartesianData(), linedata, knownparam, 0);
if (!ret.valid())
return new InvalidImp;
if (!line->containsPoint(ret, doc))
return new InvalidImp;
return new PointImp(ret);
}
// cubic line other intersection
static const ArgsParser::spec argsspecCubicLineOtherIntersection[] = {
{CubicImp::stype(), kli18n("Intersect with this cubic"), {}, true},
{AbstractLineImp::stype(), intersectlinestat, {}, true},
{PointImp::stype(), kli18n("Already computed intersection point"), {}, true},
{PointImp::stype(), kli18n("Already computed intersection point"), {}, true}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(CubicLineOtherIntersectionType)
CubicLineOtherIntersectionType::CubicLineOtherIntersectionType()
: ArgsParserObjectType("CubicLineOtherIntersection", argsspecCubicLineOtherIntersection, 4)
{
}
CubicLineOtherIntersectionType::~CubicLineOtherIntersectionType()
{
}
const CubicLineOtherIntersectionType *CubicLineOtherIntersectionType::instance()
{
static const CubicLineOtherIntersectionType t;
return &t;
}
ObjectImp *CubicLineOtherIntersectionType::calc(const Args &parents, const KigDocument &doc) const
{
if (!margsparser.checkArgs(parents))
return new InvalidImp;
Coordinate p = static_cast<const PointImp *>(parents[2])->coordinate();
Coordinate q = static_cast<const PointImp *>(parents[3])->coordinate();
const AbstractLineImp *line = static_cast<const AbstractLineImp *>(parents[1]);
const CubicImp *cubic = static_cast<const CubicImp *>(parents[0]);
const LineData linedata = line->data();
const CubicCartesianData cubicData = cubic->data();
if (!line->containsPoint(p, doc) || !cubic->containsPoint(p, doc)) {
return new InvalidImp;
}
if (!line->containsPoint(q, doc) || !cubic->containsPoint(q, doc)) {
return new InvalidImp;
}
Coordinate ret;
double pax = p.x - linedata.a.x;
double pay = p.y - linedata.a.y;
double bax = linedata.b.x - linedata.a.x;
double bay = linedata.b.y - linedata.a.y;
double qax = q.x - linedata.a.x;
double qay = q.y - linedata.a.y;
double knownparam1 = (pax * bax + pay * bay) / (bax * bax + bay * bay);
double knownparam2 = (qax * bax + qay * bay) / (bax * bax + bay * bay);
double t, aa, bb, cc, dd;
calcCubicLineRestriction(cubicData, linedata.a, linedata.b - linedata.a, aa, bb, cc, dd);
t = -bb / aa - knownparam1 - knownparam2;
ret = linedata.a + t * (linedata.b - linedata.a);
if (!ret.valid())
return new InvalidImp;
// if ( !line->containsPoint( ret, doc ) ) return new InvalidImp;
return new PointImp(ret);
}
// cubic line two intersection
static const ArgsParser::spec argsspecCubicLineTwoIntersection[] = {
{CubicImp::stype(), kli18n("Intersect with this cubic"), {}, true},
{AbstractLineImp::stype(), intersectlinestat, {}, true},
{PointImp::stype(), kli18n("Already computed intersection point"), kli18n("Already computed intersection point"), true},
{IntImp::stype(), "param", {}, false}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(CubicLineTwoIntersectionType)
CubicLineTwoIntersectionType::CubicLineTwoIntersectionType()
: ArgsParserObjectType("CubicLineTwoIntersection", argsspecCubicLineTwoIntersection, 4)
{
}
CubicLineTwoIntersectionType::~CubicLineTwoIntersectionType()
{
}
const CubicLineTwoIntersectionType *CubicLineTwoIntersectionType::instance()
{
static const CubicLineTwoIntersectionType t;
return &t;
}
ObjectImp *CubicLineTwoIntersectionType::calc(const Args &parents, const KigDocument &doc) const
{
if (!margsparser.checkArgs(parents))
return new InvalidImp;
Coordinate p = static_cast<const PointImp *>(parents[2])->coordinate();
const AbstractLineImp *line = static_cast<const AbstractLineImp *>(parents[1]);
const CubicImp *cubic = static_cast<const CubicImp *>(parents[0]);
int side = static_cast<const IntImp *>(parents[3])->data();
assert(side == 1 || side == -1);
const LineData linedata = line->data();
const CubicCartesianData cubicData = cubic->data();
if (!line->containsPoint(p, doc) || !cubic->containsPoint(p, doc)) {
return new InvalidImp;
}
Coordinate ret;
double pax = p.x - linedata.a.x;
double pay = p.y - linedata.a.y;
double bax = linedata.b.x - linedata.a.x;
double bay = linedata.b.y - linedata.a.y;
double knownparam = (pax * bax + pay * bay) / (bax * bax + bay * bay);
double t, aa, bb, cc, dd, bbb, ccc;
calcCubicLineRestriction(cubicData, linedata.a, linedata.b - linedata.a, aa, bb, cc, dd);
bbb = bb / aa + knownparam;
ccc = (cc / aa) + (bb / aa * knownparam) + (knownparam * knownparam);
double discrim = bbb * bbb - 4 * ccc;
if (discrim < 0.0) {
return new InvalidImp;
} else {
if (side * bbb > 0) {
t = bbb + side * sqrt(discrim);
t = -2 * ccc / t;
} else {
t = -bbb + side * sqrt(discrim);
t /= 2;
}
ret = linedata.a + t * (linedata.b - linedata.a);
}
if (!ret.valid())
return new InvalidImp;
// if ( !line->containsPoint( ret, doc ) ) return new InvalidImp;
return new PointImp(ret);
}
/*
* This construction is authomatically invoked when the user
* intersects two circles with one of the intersections
* already present, see above...
*/
static const ArgsParser::spec argsspecCircleCircleOtherIntersection[] = {{CircleImp::stype(), {}, {}, true},
{CircleImp::stype(), {}, {}, true},
{PointImp::stype(), {}, {}, false}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(CircleCircleOtherIntersectionType)
CircleCircleOtherIntersectionType::CircleCircleOtherIntersectionType()
: ArgsParserObjectType("CircleCircleOtherIntersection", argsspecCircleCircleOtherIntersection, 3)
{
}
CircleCircleOtherIntersectionType::~CircleCircleOtherIntersectionType()
{
}
const CircleCircleOtherIntersectionType *CircleCircleOtherIntersectionType::instance()
{
static const CircleCircleOtherIntersectionType t;
return &t;
}
ObjectImp *CircleCircleOtherIntersectionType::calc(const Args &parents, const KigDocument &doc) const
{
if (!margsparser.checkArgs(parents))
return new InvalidImp;
Coordinate p = static_cast<const PointImp *>(parents[2])->coordinate();
const CircleImp *circle1 = static_cast<const CircleImp *>(parents[0]);
const CircleImp *circle2 = static_cast<const CircleImp *>(parents[1]);
if (!circle1->containsPoint(p, doc) || !circle2->containsPoint(p, doc)) {
return new InvalidImp;
}
Coordinate c1 = circle1->center();
Coordinate c1c2 = circle2->center() - c1;
Coordinate c1p = p - c1;
Coordinate w = Coordinate(-c1c2.y, c1c2.x); /* w is normal to the line through the centers */
double wnormsq = w.x * w.x + w.y * w.y;
if (wnormsq < 1e-12)
return new InvalidImp;
double pc1c2dist = (c1p.x * w.x + c1p.y * w.y) / wnormsq;
Coordinate ret = p - 2 * pc1c2dist * w;
return new PointImp(ret);
}
/* LineLineIntersection */
static const ArgsParser::spec argsspecLineLineIntersection[] = {{AbstractLineImp::stype(), intersectlinestat, {}, true},
{AbstractLineImp::stype(), intersectlinestat, {}, true}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(LineLineIntersectionType)
LineLineIntersectionType::LineLineIntersectionType()
: ArgsParserObjectType("LineLineIntersection", argsspecLineLineIntersection, 2)
{
}
LineLineIntersectionType::~LineLineIntersectionType()
{
}
const LineLineIntersectionType *LineLineIntersectionType::instance()
{
static const LineLineIntersectionType t;
return &t;
}
ObjectImp *LineLineIntersectionType::calc(const Args &parents, const KigDocument &d) const
{
if (!margsparser.checkArgs(parents))
return new InvalidImp;
Coordinate p = calcIntersectionPoint(static_cast<const AbstractLineImp *>(parents[0])->data(), static_cast<const AbstractLineImp *>(parents[1])->data());
if (static_cast<const AbstractLineImp *>(parents[0])->containsPoint(p, d) && static_cast<const AbstractLineImp *>(parents[1])->containsPoint(p, d))
return new PointImp(p);
else
return new InvalidImp();
}
static const ArgsParser::spec argsspecCubicLineIntersection[] = {{CubicImp::stype(), kli18n("Intersect with this cubic curve"), {}, true},
{AbstractLineImp::stype(), intersectlinestat, {}, true},
{IntImp::stype(), "param", {}, false}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(CubicLineIntersectionType)
CubicLineIntersectionType::CubicLineIntersectionType()
: ArgsParserObjectType("CubicLineIntersection", argsspecCubicLineIntersection, 3)
{
}
CubicLineIntersectionType::~CubicLineIntersectionType()
{
}
const CubicLineIntersectionType *CubicLineIntersectionType::instance()
{
static const CubicLineIntersectionType t;
return &t;
}
ObjectImp *CubicLineIntersectionType::calc(const Args &parents, const KigDocument &) const
{
if (!margsparser.checkArgs(parents))
return new InvalidImp;
int which = static_cast<const IntImp *>(parents[2])->data();
bool valid = true;
const Coordinate c =
calcCubicLineIntersect(static_cast<const CubicImp *>(parents[0])->data(), static_cast<const AbstractLineImp *>(parents[1])->data(), which, valid);
if (valid)
return new PointImp(c);
else
return new InvalidImp;
}
const ObjectImpType *ConicLineIntersectionType::resultId() const
{
return PointImp::stype();
}
const ObjectImpType *ConicLineOtherIntersectionType::resultId() const
{
return PointImp::stype();
}
const ObjectImpType *CircleCircleOtherIntersectionType::resultId() const
{
return PointImp::stype();
}
const ObjectImpType *LineLineIntersectionType::resultId() const
{
return PointImp::stype();
}
const ObjectImpType *CubicLineIntersectionType::resultId() const
{
return PointImp::stype();
}
const ObjectImpType *CubicLineOtherIntersectionType::resultId() const
{
return PointImp::stype();
}
const ObjectImpType *CubicLineTwoIntersectionType::resultId() const
{
return PointImp::stype();
}
static const ArgsParser::spec argsspecCircleCircleIntersection[] = {{CircleImp::stype(), kli18n("Intersect with this circle"), {}, true},
{CircleImp::stype(), kli18n("Intersect with this circle"), {}, true},
{IntImp::stype(), "param", {}, false}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(CircleCircleIntersectionType)
CircleCircleIntersectionType::CircleCircleIntersectionType()
: ArgsParserObjectType("CircleCircleIntersection", argsspecCircleCircleIntersection, 3)
{
}
CircleCircleIntersectionType::~CircleCircleIntersectionType()
{
}
const CircleCircleIntersectionType *CircleCircleIntersectionType::instance()
{
static const CircleCircleIntersectionType t;
return &t;
}
ObjectImp *CircleCircleIntersectionType::calc(const Args &parents, const KigDocument &) const
{
if (parents.size() == 3 && (parents[0]->inherits(LineImp::stype()) || parents[1]->inherits(LineImp::stype())) && parents[2]->inherits(IntImp::stype())) {
/* This the special case when one or both circles degenerate into a line
*/
int il = 0;
int ori = 1;
if (parents[1]->inherits(LineImp::stype())) {
il = 1;
ori = -1;
}
const LineData line = static_cast<const AbstractLineImp *>(parents[il])->data();
int side = static_cast<const IntImp *>(parents[2])->data();
assert(side == 1 || side == -1);
if (parents[1 - il]->inherits(CircleImp::stype())) {
const CircleImp *c = static_cast<const CircleImp *>(parents[1 - il]);
const Coordinate o = c->center();
const double rsq = c->squareRadius();
ori *= c->orientation();
Coordinate ret = calcCircleLineIntersect(o, rsq, line, ori * side);
if (ret.valid())
return new PointImp(ret);
else
return new InvalidImp;
} else {
// same code as for ConicLineIntersection with degenerate conic
assert(il == 1);
const LineData degline = static_cast<const AbstractLineImp *>(parents[0])->data();
const double vecprod = degline.dir().y * line.dir().x - degline.dir().x * line.dir().y;
if (side * vecprod > 0) {
Coordinate p = calcIntersectionPoint(degline, line);
return new PointImp(p);
}
return new InvalidImp();
}
}
if (!margsparser.checkArgs(parents))
return new InvalidImp;
int side = static_cast<const IntImp *>(parents[2])->data();
assert(side == 1 || side == -1);
const CircleImp *c1 = static_cast<const CircleImp *>(parents[0]);
const CircleImp *c2 = static_cast<const CircleImp *>(parents[1]);
const Coordinate o1 = c1->center();
const Coordinate o2 = c2->center();
const int ori = (c1->orientation() * c2->orientation() < 0) ? (-1) : (1);
const double r1sq = c1->squareRadius();
const Coordinate a = calcCircleRadicalStartPoint(o1, o2, r1sq, c2->squareRadius());
const LineData line = LineData(a, Coordinate(a.x - o2.y + o1.y, a.y + o2.x - o1.x));
Coordinate ret = calcCircleLineIntersect(o1, r1sq, line, ori * side);
if (ret.valid())
return new PointImp(ret);
else
return new InvalidImp;
}
const ObjectImpType *CircleCircleIntersectionType::resultId() const
{
return PointImp::stype();
}
static const ArgsParser::spec argsspecArcLineIntersection[] = {{ArcImp::stype(), kli18n("Intersect with this arc"), {}, true},
{AbstractLineImp::stype(), intersectlinestat, {}, true},
{IntImp::stype(), "param", {}, false}};
KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(ArcLineIntersectionType)
ArcLineIntersectionType::ArcLineIntersectionType()
: ArgsParserObjectType("ArcLineIntersection", argsspecArcLineIntersection, 3)
{
}
ArcLineIntersectionType::~ArcLineIntersectionType()
{
}
const ArcLineIntersectionType *ArcLineIntersectionType::instance()
{
static const ArcLineIntersectionType t;
return &t;
}
ObjectImp *ArcLineIntersectionType::calc(const Args &parents, const KigDocument &) const
{
/*
* special case of an arc that degenerates into a line. This is possible e.g. for
* arcs by three points when the points get aligned.
*/
if (parents.size() == 3 && parents[0]->inherits(AbstractLineImp::stype()) && parents[1]->inherits(AbstractLineImp::stype())
&& parents[2]->inherits(IntImp::stype())) {
int side = static_cast<const IntImp *>(parents[2])->data();
assert(side == 1 || side == -1);
const LineData degline = static_cast<const AbstractLineImp *>(parents[0])->data();
const LineData line = static_cast<const AbstractLineImp *>(parents[1])->data();
const double vecprod = degline.dir().y * line.dir().x - degline.dir().x * line.dir().y;
/*
* mp: In this case only one of the two points must be valid (the other is "pushed"
* to infinity). The choice of which one is done such that we avoid abrupt points exchange
* when dinamically movint points
*/
if (side * vecprod < 0) {
Coordinate p = calcIntersectionPoint(degline, line);
return new PointImp(p);
}
return new InvalidImp();
}
if (!margsparser.checkArgs(parents))
return new InvalidImp;
int side = static_cast<const IntImp *>(parents[2])->data();
assert(side == 1 || side == -1);
const LineData line = static_cast<const AbstractLineImp *>(parents[1])->data();
const ArcImp *c = static_cast<const ArcImp *>(parents[0]);
const double r = c->radius();
Coordinate ret = calcArcLineIntersect(c->center(), r * r, c->startAngle(), c->angle(), line, c->orientation() * side);
if (ret.valid())
return new PointImp(ret);
else
return new InvalidImp;
}
const ObjectImpType *ArcLineIntersectionType::resultId() const
{
return PointImp::stype();
}
|