-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(geom): update proximity() to accept optional distance fn
- Loading branch information
1 parent
dcf5210
commit df7aef2
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
import type { IShape } from "./api.js"; | ||
import type { ReadonlyVec } from "@thi.ng/vectors"; | ||
import { dist } from "@thi.ng/vectors/dist"; | ||
import { dist as $dist } from "@thi.ng/vectors/dist"; | ||
import type { IShape } from "./api.js"; | ||
import { closestPoint } from "./closest-point.js"; | ||
|
||
/** | ||
* Computes {@link closestPoint} on `shape` to `p`, and if successful, returns | ||
* Eucledian distance between that point and `p`. | ||
* the distance between that point and `p`, using optionally given `dist`ance | ||
* function (by default uses Eucledian distance). | ||
* | ||
* @param shape | ||
* @param p | ||
* @param dist | ||
*/ | ||
export const proximity = (shape: IShape, p: ReadonlyVec) => { | ||
export const proximity = (shape: IShape, p: ReadonlyVec, dist = $dist) => { | ||
const q = closestPoint(shape, p); | ||
return q ? dist(p, q) : undefined; | ||
}; |