Hexagonal tools lib in rust.
Inspired by this
RedBlobGames
article.
This lib allows you to: - Manipulate hexagon coordinates - Generate hexagonal maps with custom layouts and orientation - Generate hexagon meshes (planes or columns)
I made the choice to use Axial Coordinates for performance and utility reasons,
but the [Hex
] type has conversion utilities with cubic, doubled and offset coordinates.
See the hexagonal coordinate systems
## Installation
Run cargo add hexx
in your project or add the following line to your Cargo.toml
:
hexx = "0.6"
hexx
supports serialization and deserialization of most types using serde,
through the ser_de
feature gate. To enable it add the following line to your Cargo.toml
:
hexx = { version = "0.6", features = ["ser_de"] }
By default Hex
uses rust classic memory layout, if you want to use hexx
through the FFI or
have Hex
be stored without any memory padding, the packed
feature will make Hex
repr(C)
. To enable this behaviour add the following line to your Cargo.toml
:
hexx = { version = "0.6", features = ["packed"] }
hexx
provides the [Hex
] coordinates with:
Conversions to other coordinate systems
And the [HexMap
] utility, for wraparound (seamless) hexagonal maps
```rust use hexx::*;
// Declare points in hexagonal spaces
let pointa = hex(10, -5); // Equivalent of Hex::new(10, -5)
let pointb = hex(-8, 15);
// Find distance between them
let dist = pointa.unsigneddistanceto(pointb);
// Compute a line between points
let line: Vecpoint_a
containing point_b
let ring: Vecpoint_b
around point_a
by 2 times 60 degrees clockwise
let rotated = pointb.rotaterightaround(pointa, 2);
// Find the direction between the two points
let dira = pointa.maindirectionto(pointb);
let dirb = pointb.maindirectionto(pointa);
assert!(dira == -dirb);
// Compute a wedge from point_a
to point_b
let wedge = pointa.wedgeto(point_b);
// Get the average value of the wedge
let avg = wedge.average();
```
## Layout usage
[HexLayout
] is the bridge between your world/screen/pixel coordinate system and the hexagonal
coordinates system.
```rust use hexx::*;
// Define your layout
let layout = HexLayout {
hexsize: Vec2::new(1.0, 1.0),
orientation: HexOrientation::flat(),
..Default::default()
};
// Get the hex coordinate at the world position world_pos
.
let worldpos = Vec2::new(53.52, 189.28);
let point = layout.worldpostohex(worldpos);
// Get the world position of point
let point = hex(123, 45);
let worldpos = layout.hextoworldpos(point);
```
## Usage in Bevy
If you want to generate 3D hexagonal mesh and use it in bevy you may do it this way:
```rust use bevy::prelude::Mesh; use bevy::render::{mesh::Indices, render_resource::PrimitiveTopology}; use hexx::MeshInfo;
pub fn hexagonalplane(meshinfo: MeshInfo) -> Mesh { let mut mesh = Mesh::new(PrimitiveTopology::TriangleList); mesh.insertattribute(Mesh::ATTRIBUTEPOSITION, meshinfo.vertices); mesh.insertattribute(Mesh::ATTRIBUTENORMAL, meshinfo.normals); mesh.insertattribute(Mesh::ATTRIBUTEUV0, meshinfo.uvs); mesh.setindices(Some(Indices::U16(meshinfo.indices))); mesh } ```
The [MeshInfo
] can be produced from [PlaneMeshBuilder
] or [ColumnMeshBuilder
]
See the examples for bevy usage
## Examples
hexx
provides interactive examples showcasing various features:
### Hex grid
cargo run --example hex_grid
This example showcases hex ranges, rings, wedges, rotation, and lines
### Scroll Map
cargo run --example scroll_map
This example showcases the HexMap
struct for scrolling maps
cargo run --example wrap_map
This example showcases the HexMap
struct for looping/wrapping map
cargo run --example a_star
This example showcases the A star algorithm, with an interactive pathfinding between the origin and your cursor. Clicking on tile toggles their availability
cargo run --example fov
This example showcases the FOV algorithm, with an interactive range fov around your cursor. Clicking on tile toggles their visibility.
cargo run --example field_of_movement
This example showcases the field of movement algorithm, interactively displaying the accessible range of movement around the cursor.
cargo run --example 3d_columns
This example showcases the 3d hexagon columns procedural generation
cargo run --example mesh_builder
This example showcases the hexagon columns procedural generation customization options