Skip to content

Commit 472180a

Browse files
committed
Cleaner introduction.
1 parent 628cc98 commit 472180a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.11)
55
project(pico_tree
66
LANGUAGES CXX
77
VERSION 0.4.0
8-
DESCRIPTION "PicoTree is a small C++ header only library that provides a KdTree that can be used for range searches and nearest neighbor searches."
8+
DESCRIPTION "PicoTree is a small C++ header only library for range searches and nearest neighbor searches using a KdTree."
99
HOMEPAGE_URL "https://github.com/Jaybro/pico_tree")
1010

1111
if (NOT CMAKE_BUILD_TYPE)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![build-and-test](https://github.com/Jaybro/pico_tree/workflows/build-and-test/badge.svg)](https://github.com/Jaybro/pico_tree/actions?query=workflow%3Abuild-and-test)
44

5-
PicoTree is a small C++ header only library that provides a KdTree that can be used for range searches and nearest neighbor searches.
5+
PicoTree is a small C++ header only library for range searches and nearest neighbor searches using a KdTree.
66

77
See the comparison [benchmark](./docs/benchmark.md) between PicoTree and [nanoflann](https://github.com/jlblancoc/nanoflann) to get an impression of the performance provided by the [KdTree](https://en.wikipedia.org/wiki/K-d_tree) of this library.
88

0 commit comments

Comments
 (0)