2021-10-17 18:26:00 +02:00
|
|
|
---
|
2022-10-01 22:20:43 +02:00
|
|
|
title: utils.curvesIntersect()
|
2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
The `utils.curvesIntersect()` function finds the intersections between two curves
|
|
|
|
described by 4 points each.
|
|
|
|
|
2024-09-28 13:13:48 +02:00
|
|
|
:::warning
|
2023-04-05 15:02:57 -07:00
|
|
|
|
2023-04-04 22:04:53 -07:00
|
|
|
This function can sometimes fail to find intersections in some curves
|
|
|
|
due to a limitation in an underlying Bézier library.
|
|
|
|
Please see [Bug #3367](https://github.com/freesewing/freesewing/issues/3367)
|
|
|
|
for more information.
|
2023-04-05 15:02:57 -07:00
|
|
|
|
2024-09-28 13:13:48 +02:00
|
|
|
:::
|
2023-04-04 22:04:53 -07:00
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
## Signature
|
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
```js
|
2023-01-04 16:33:53 -08:00
|
|
|
array | Point | false utils.curvesIntersect(
|
|
|
|
Point startA,
|
2021-08-25 16:09:31 +02:00
|
|
|
Point Cp1A,
|
|
|
|
Point Cp2A,
|
|
|
|
Point endA,
|
2023-01-04 16:33:53 -08:00
|
|
|
Point startB,
|
2021-08-25 16:09:31 +02:00
|
|
|
Point Cp1B,
|
|
|
|
Point Cp2B,
|
|
|
|
Point endB)
|
|
|
|
```
|
|
|
|
|
2023-01-04 16:33:53 -08:00
|
|
|
This returns `false` if no intersections are found,
|
|
|
|
a [Point](/reference/api/point) object if
|
|
|
|
a single intersection is found, and an array
|
|
|
|
of [Point](/reference/api/point) objects if
|
|
|
|
multiple intersections are found.
|
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
## Example
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
<Example caption="A Utils.curvesIntersect() example">
|
2021-08-25 16:09:31 +02:00
|
|
|
```js
|
2022-10-01 22:20:43 +02:00
|
|
|
({ Point, points, Path, paths, Snippet, snippets, utils, getId, part }) => {
|
|
|
|
|
|
|
|
points.A = new Point(10, 10)
|
|
|
|
points.Acp = new Point(310, 40)
|
|
|
|
points.B = new Point(110, 70)
|
|
|
|
points.Bcp = new Point(-210, 40)
|
2023-01-04 16:33:53 -08:00
|
|
|
|
2022-10-01 22:20:43 +02:00
|
|
|
points.C = new Point(20, -5)
|
|
|
|
points.Ccp = new Point(60, 300)
|
|
|
|
points.D = new Point(100, 85)
|
|
|
|
points.Dcp = new Point(70, -220)
|
|
|
|
paths.curveA = new Path()
|
|
|
|
.move(points.A)
|
|
|
|
.curve(points.Acp, points.Bcp, points.B)
|
|
|
|
paths.curveB = new Path()
|
|
|
|
.move(points.C)
|
|
|
|
.curve(points.Ccp, points.Dcp, points.D)
|
2023-01-04 16:33:53 -08:00
|
|
|
|
|
|
|
const intersections = utils.curvesIntersect(
|
2022-10-01 22:20:43 +02:00
|
|
|
points.A,
|
|
|
|
points.Acp,
|
|
|
|
points.Bcp,
|
|
|
|
points.B,
|
|
|
|
points.C,
|
|
|
|
points.Ccp,
|
|
|
|
points.Dcp,
|
|
|
|
points.D
|
2023-01-04 16:33:53 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
if (intersections) {
|
|
|
|
if (intersections instanceof Array) {
|
|
|
|
for (const p of intersections)
|
|
|
|
snippets[getId()] = new Snippet('notch', p)
|
|
|
|
} else {
|
|
|
|
snippets[getId()] = new Snippet('notch', intersections)
|
|
|
|
}
|
2022-10-01 22:20:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return part
|
2021-08-25 16:09:31 +02:00
|
|
|
}
|
|
|
|
```
|
2022-10-01 22:20:43 +02:00
|
|
|
</Example>
|