Crates.io Anti-Capitalist Software License (v 1.4) alexmadeathing

dilate

A compact, high performance integer dilation library for Rust.

NOTE - This library is in alpha. It is feature complete at a basic level, but may be subject to change.

This library provides efficient casting to and from dilated representation as well as various efficient mathematical operations between dilated integers.

Integer dilation is the process of converting cartesian indices (eg. coordinates) into a format suitable for use in D-dimensional Morton Order bit sequences. The dilation process takes an integer's bit sequence and inserts a number of 0 bits (D - 1) between each original bit successively. Thus, the original bit sequence becomes evenly padded. For example: * 0b1101 D2-dilated becomes 0b1010001 (values chosen arbitrarily) * 0b1011 D3-dilated becomes 0b1000001001

The process of undilation, or 'contraction', does the opposite: * 0b1010001 D2-contracted becomes 0b1101 * 0b1000001001 D3-contracted becomes 0b1011

Goals

Getting Started

First, link dilate into your project's cargo.toml.

Check for the latest version at crates.io: [dependencies] dilate = "0.4.0"

Next, import dilate into your project and try out some of the features:

``` use dilate::*;

let dilated = DilatedInt::::from(0b1101); assert_eq!(dilated.0, 0b1010001);

assert_eq!(u32::from(dilated), 0b1101); ```

For more detailed info, please see the code reference.

Roadmap

Please refer to the Roadmap to V1.0 discussion.

Contributing

Contributions are most welcome.

For bugs reports, please submit a bug report.

For feature requests, please submit a feature request.

If you have ideas and want to contribute directly, please start by creating an Idea discussion in the discussions area. Allow others to comment prior to committing to doing the work. When all parties agree on the design, the work may begin. When your code is ready to be published, please submit a pull request referring back to your Idea discussion. We are unlikely to accept a pull request that has not gone through this process, unless it is for a very small change.

References and Acknowledgments

Many thanks to the authors of the following white papers: * [1] Converting to and from Dilated Integers - Rajeev Raman and David S. Wise * [2] Integer Dilation and Contraction for Quadtrees and Octrees - Leo Stocco and Gunther Schrack * [3] Fast Additions on Masked Integers - Michael D Adams and David S Wise

Permission has been explicitly granted to reproduce the agorithms within each paper.

License

dilate is licensed under the Anti-Capitalist Software License (v 1.4). This means it is free and open source for use by individuals and organizations that do not operate by capitalist principles.