posts: kd-tree-revisited: fix typing
This commit is contained in:
parent
8ee2a234ec
commit
f15aa0567e
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ class KdSplitNode[T]:
|
||||||
def closest(
|
def closest(
|
||||||
self,
|
self,
|
||||||
point: Point,
|
point: Point,
|
||||||
out: list[ClosestPoint[T]],
|
out: MaxHeap[ClosestPoint[T]],
|
||||||
n: int,
|
n: int,
|
||||||
projection: Point,
|
projection: Point,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue