Octree

Simple unbalanced Octree for storing data about 3D points

https://github.com/mgajda/octree

Version on this page:0.5.4.3
LTS Haskell 9.21:0.5.4.4
Stackage Nightly 2017-07-25:0.5.4.3
Latest on Hackage:0.6.0.1

See all snapshots Octree appears in

BSD-3-Clause licensed by Michal J. Gajda
Maintained by [email protected]
This version can be pinned in stack with:Octree-0.5.4.3@sha256:3496530668aa3338431b33acb6c163d1e553e56818f37176a464dd9c7c8c236b,1558

Module documentation for 0.5.4.3

Used by 2 packages in lts-8.5(full list with versions):
octree
======
This is a simple Octree implementation in Haskell.

[![Build Status](https://api.travis-ci.org/BioHaskell/octree.png?branch=master)](https://www.travis-ci.org/BioHaskell/octree)

To use simply:

~~~ {.haskell}
module Main where

import Data.Octree as O

import Data.Vector.V3

main = do let oct = fromList [(Vector3 1 2 3, "a"),
(Vector3 3 4 5, "b"),
(Vector3 8 8 8, "c")]
report msg elt = putStrLn $ msg ++ show elt
report "Nearest :" $ O.nearest oct $ Vector3 2 2 3
report "Within range:" $ O.withinRange oct 5.0 $ Vector3 2 2 3
return ()
~~~

*For now it uses AC-Vector package for vectors, but I may change it to use Tensor package used by OpenGL package, if there is interest.*
*So far I still wait for package with vector operations (like dot, cross producton, vector projection and rejection) on Tensor types.*

Official releases are on [Hackage](http://hackage.haskell.org/package/Octree).

This package is also a part of [Stackage](http://daniel-diaz.github.io/stackagelist/) - a stable subset of Hackage.