forked from acgessler/kd-sharp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathKDSharp.KDTree.nuspec
More file actions
18 lines (18 loc) · 1.07 KB
/
KDSharp.KDTree.nuspec
File metadata and controls
18 lines (18 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata minClientVersion="2.8">
<id>KDSharp.KDTree</id>
<version>0.0.1</version>
<authors>DOL Leodagan, asheepcalledgeorge, rednaxela</authors>
<description>A Simple .NET Implementation of a KDTree for Nearest Neighbours searches with performances in mind.</description>
<summary>Implement N-Dimensions Tree as a Flat Indexed Collection. Supports Item's position modifications at the cost of unbalancing nodes. Provides squared euclidean distance calculation and translation speed vector calculation for moving objects.</summary>
<language>en-US</language>
<licenseUrl>https://github.com/dol-leodagan/kd-sharp/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/dol-leodagan/kd-sharp</projectUrl>
<tags>kdtree kd-tree binary search tree bsp bst spatial</tags>
</metadata>
<files>
<file src="Binaries\KDTree\Release\KDTree.dll" target="lib\net35" />
<file src="Binaries\KDTree\Release\KDTree.pdb" target="lib\net35" />
</files>
</package>