summaryrefslogtreecommitdiffstats
path: root/src/euclid.rs
Commit message (Collapse)AuthorAgeFilesLines
* kd: Use a more traditional k-d tree implementationTavian Barnes2020-07-061-9/+11
| | | | | | | | | The slight extra pruning possible in the previous implementation didn't seem to be worth it. The new, simpler implementation is also about 30% faster in most of the benchmarks. This gets rid of Coordinate{Proximity,Metric} as they're not necessary any more (and the old ExactNeighbors impl was too restrictive anyway).
* Apply some rustfmt suggestionsTavian Barnes2020-06-281-3/+3
|
* docs: Update some linksTavian Barnes2020-06-271-4/+6
|
* docs: Integrate KaTeX and add some formulasTavian Barnes2020-06-271-0/+7
|
* euclid: Fix a doc typo (s/Createa/Creates/)Tavian Barnes2020-06-251-1/+1
|
* Add links to module summariesTavian Barnes2020-06-241-1/+1
|
* euclid: Implement Euclidean distanceTavian Barnes2020-06-241-0/+390