From 8d121fbe9945225ecc837d586787197c6d966b3a Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Tue, 9 Apr 2024 09:25:23 -0400 Subject: [PATCH] [ci skip] Add examples README --- examples/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/README.md diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 000000000..b45424950 --- /dev/null +++ b/examples/README.md @@ -0,0 +1,14 @@ +This directory contains examples that use different parts of ArborX. + +Directory | Description +|:-- |:-- | +`access_traits` | provide non-View user data to ArborX +`brute_force` | use brute force to solve a problem +`callback` | execute search which calls user function on match +`dbscan` | cluster a set of points using DBSCAN +`molecular_dynamics` | do one step of moving particles under forces +`moving_least_squares` | interpolate data between point clouds using MLS +`raytracing` | deposit ray energy onto intersected boxes +`simple_intersection` | find boxes that contain points +`triangle_intersection` | find triangles that contain points +`viz` | visualize hierarchy and traversal