Skip to content

Commit

Permalink
feat(geom-api): add ISpatialAccel.selectVals()
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 1, 2019
1 parent 13f655a commit 4bde37e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/geom-api/src/accel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ export interface ISpatialAccel<K, V> {
has(k: K, eps?: number): boolean;
select(q: K, maxNum: number, maxDist?: number): Pair<K, V>[];
selectKeys(q: K, maxNum: number, maxDist?: number): K[];
selectVals(q: K, maxNum: number, maxDist?: number): V[];
}

0 comments on commit 4bde37e

Please sign in to comment.