blakehawkins / zdex

Evaluate Z-order indexing (morton encoding) for types, iterators, and tuples of BitCollections.
https://crates.io/crates/zdex
2 stars 1 forks source link
library morton-encoding-library rust z-index z-order-index

Zdex   Latest version License Docs badge Issues badge

Evaluate Z-order indexing for types, iterators, and tuples of BitCollections.

See also morton_encoding.

Example

Here's a basic example using the built-in FromU8 BitCollection - see more examples in the docs.

use zdex::*;

fn main() -> Result<(), std::io::Error> {
  let v1: FromU8 = 0b0011.into();
  let v2: FromU8 = 0b1111.into();

  // Prints "Vob[01011111]".
  println!("{:?}", (v1, v2).z_index()?);

  Ok(())
}