paraxis 0.10.1

A simple to use spatial datastructure crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum ParaxisError {
    #[error("Sizes cannot be negative")]
    NegativeSize,
    #[error("Position out of bounds")]
    OutOfBounds,
    #[error("Uninitialised node")]
    UnintNode,
}