2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-11-06 18:20:45 +01:00
|
|
|
title: Point.sitsRoughlyOn()
|
2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-09-29 16:50:42 +02:00
|
|
|
The `Point.sitsRoughlyOn()` method returns `true` if this point has roughly
|
|
|
|
(rounded to the nearest millimeter) the same coordinates as the one you pass to
|
|
|
|
it.
|
2021-11-06 18:20:45 +01:00
|
|
|
|
2022-09-29 16:50:42 +02:00
|
|
|
## Signature
|
2021-11-06 19:03:54 +01:00
|
|
|
|
2021-08-25 16:09:31 +02:00
|
|
|
```js
|
|
|
|
bool point.sitsRoughlyOn(Point check)
|
|
|
|
```
|
|
|
|
|
2022-09-29 16:50:42 +02:00
|
|
|
## Example
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-09-29 16:50:42 +02:00
|
|
|
<Example caption="An example of the Point.sitsRoughlyOn() method">
|
|
|
|
```js
|
|
|
|
({ Point, points, Path, paths, Snippet, snippets, part }) => {
|
|
|
|
|
|
|
|
let s
|
|
|
|
for (let i = 0; i < 10; i++) {
|
|
|
|
points[`a${i}`] = new Point(i * 10, 40)
|
|
|
|
points[`b${i}`] = new Point(i * 10, i * 8)
|
|
|
|
if (points[`a${i}`].sitsRoughlyOn(points[`b${i}`])) s = "notch"
|
|
|
|
else s = "bnotch"
|
|
|
|
snippets[`b${i}`] = new Snippet(s, points[`b${i}`])
|
|
|
|
snippets[`a${i}`] = new Snippet(s, points[`a${i}`])
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prevent clipping
|
|
|
|
paths.diag = new Path()
|
|
|
|
.move(new Point(0,0))
|
|
|
|
.move(new Point(90,70))
|
|
|
|
|
|
|
|
return part
|
|
|
|
}
|
|
|
|
```
|
|
|
|
</Example>
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
|
2022-09-29 16:50:42 +02:00
|
|
|
## Notes
|
2021-08-25 16:09:31 +02:00
|
|
|
|
2022-09-29 16:50:42 +02:00
|
|
|
The difference between this method and
|
|
|
|
[`Point.sitsOn()`](/reference/api/point/sitson/) is that this one rounds things
|
|
|
|
down to the nearest integer (thus mm) before checking.
|