#hilbert-curve #curve #hilbert #fractals #fractal

hilbert_2d

Functions for mapping between 1D and 2D space using the Hilbert curve, and its approximations

2 stable releases

1.1.0 Jan 6, 2023
1.0.0 Sep 1, 2020

#531 in Math

Download history 285/week @ 2024-07-21 189/week @ 2024-07-28 268/week @ 2024-08-04 227/week @ 2024-08-11 231/week @ 2024-08-18 239/week @ 2024-08-25 175/week @ 2024-09-01 258/week @ 2024-09-08 276/week @ 2024-09-15 339/week @ 2024-09-22 198/week @ 2024-09-29 152/week @ 2024-10-06 331/week @ 2024-10-13 262/week @ 2024-10-20 305/week @ 2024-10-27 428/week @ 2024-11-03

1,331 downloads per month
Used in 9 crates (6 directly)

MIT/Apache

105KB
555 lines

Hilbert 2D

Latest Version API Documentation rustc 1.46+

Rust functions for mapping between 1D and 2D space using the Hilbert curve, and its approximations.

Examples

Usage

Add this to your Cargo.toml:

[dependencies]
hilbert_2d = "1.1.0"

When working with images and matrices, use the h2xy_discrete and xy2h_discrete functions:

use hilbert_2d::{h2xy_discrete, xy2h_discrete, Variant};

let (x, y) = h2xy_discrete(7, 2, Variant::Hilbert); // (1, 2)
let h = xy2h_discrete(2, 1, 2, Variant::Hilbert); // 13

When performing real-valued calculations, use the continuous functions instead:

use hilbert_2d::{h2xy_continuous_f64, Variant};

// Approaches the bottom-left corner
let (x1, y1) = h2xy_continuous_f64(0.0, Variant::Hilbert); 
// Approaches the bottom-right corner
let (x2, y2) = h2xy_continuous_f64(1.0, Variant::Hilbert); 

Some of the pattern variants of the Hilbert curve have also been implemented:

use hilbert_2d::{h2xy_continuous_f64, Variant};

// In the Liu L1 variant, both ends of the curve approach the center of the square
let (x1, y1) = h2xy_continuous_f64(0.0, Variant::Liu1); // (~0.5, ~0.5)
let (x2, y2) = h2xy_continuous_f64(1.0, Variant::Liu1); // (~0.5, ~0.5)

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps