BenMakesGames.HexGrid 3.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package BenMakesGames.HexGrid --version 3.0.1
NuGet\Install-Package BenMakesGames.HexGrid -Version 3.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BenMakesGames.HexGrid" Version="3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BenMakesGames.HexGrid --version 3.0.1
#r "nuget: BenMakesGames.HexGrid, 3.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BenMakesGames.HexGrid as a Cake Addin
#addin nuget:?package=BenMakesGames.HexGrid&version=3.0.1

// Install BenMakesGames.HexGrid as a Cake Tool
#tool nuget:?package=BenMakesGames.HexGrid&version=3.0.1

HexGrid is a library that helps perform a variety of hex-grid functions, such as computing distance, getting directions, and drawing various shapes: lines, asterisks, arcs, rings, circles, and rectangles.

This library assumes a hex grid of the following orientation:

o o o o
 o o o o
o o o o
 o o o o
  • (0, 0) is the top-left cell
  • (1, 0) is the second cell in the first row
  • (0, 1) is the first cell in the second row
  • etc.

The Direction enum contains the six directions of movement allowed in a grid of this orientation: NorthWest, NorthEast, East, SouthEast, SouthWest, and West.

This library does not make any assumptions or have any requirements about how you store your tiles, however the above orientation was chosen because it is easy to represent using a traditional 2D array. All the methods provided by this library use (int x, int y) tuples to represent coordinates, accepting and returning coordinates in that form.

Buy Me a Coffee at ko-fi.com


int HexGrid.Distance((int x, int y) p1, (int x, int y) p2)

Returns the number of cells needed to travel between two points (p1 and p2) on a hex grid.

Example usage:

int distance = HexGrid.Distance((0, 0), (4, 7));

(int x, int y) HexGrid.Move((int x, int y) origin, Direction d, int distance = 1)

Returns the coordinates for a point distance tiles away from origin, in the given direction, d.

  • origin: The starting location.
  • d: The direction to move in, from the Direction enum.
  • distance: The number of tiles to move; optional, defaulting to 1.

Example usage:

(int x, int y) currentLocation = (4, 4);

currentLocation = HexGrid.Move(currentLocation, Direction.NorthEast);

int HexGrid.ComputeLeftRightOrientation((int x, int y) origin, (int x, int y) target)

Returns -1 if target is left of origin; 1 if target is right of origin; 0 if they are in the same visual column.

Remember, with hex grids aligned in the following orientation, this is not a trivial problem:

o o o o
 o o o o
o o o o
 o o o o
  • origin: The tile to compute the direction FROM.
  • target: The tile to compute the direction TOWARDS.

Example usage:

(int x, int y) origin = (1, 1);
(int x, int y) target = (1, 2);

int orientation = HexGrid.ComputeLeftRightOrientation(origin, target);

if(orientation < 1)
    Console.WriteLine("Target is to the left of Origin.");
else if(orientation > 1)
    Console.WriteLine("Target is to the right of Origin.");
else
    Console.WriteLine("Target and Origin are directly above/below one another.");

Direction? HexGrid.ComputeDirection((int x, int y) origin, (int x, int y) destination)

Returns a the Direction you would need to travel, from origin, in a straight line, to reach destination. If it is not possible to go in a straight line, returns null, instead.

  • origin: The starting tile.
  • destination: The theoretical ending cell.

Example usage:

(int x, int y) origin = (1, 1);
(int x, int y) target = (1, 2);

Direction d = HexGrid.ComputeDirection(origin, target);

if(d == null)
    Console.WriteLine("Origin and Target are not in a straight line.");
else
    Console.WriteLine("Origin can move " + d.ToString() + " in a straight line to reach Target.")

Direction HexGrid.Rotate(Direction direction, int turns)

In a hex grid, a straight line can be rotated 60 degrees left or right.

This method returns a new Direction which represents the given direction rotated 60 degrees clockwise turns times. (A negative value for turns represents counter-clockwise rotation.)

Direction newDirection = HexGrid.Rotate(Direction.NorthWest, 2);

Console.WriteLine(newDirection.ToString()); // outputs "East"

List<(int x, int y)> HexGrid.ComputeLine((int x, int y) origin, Direction direction, int minDistance, int maxDistance)

Returns a list of coordinates that represent a line, starting at the origin and extending maxDistance cells away in the given direction. If a minDistance is given, then that many cells from the start of the line are skipped.

Example usage:

var line = HexGrid.ComputeLine((0, 0), Direction.SouthEast, 0, 4);

List<(int x, int y)> HexGrid.ComputeAsterisk((int x, int y) origin, int minDistance, int maxDistance)

Returns a list of coordinates that represents an asterisk (6 straight lines) emanating from the origin. Each line will start minDistance cells away from the origin, and end maxDistance cells away from it. (A minDistance of 0 makes a complete asterisk.)

Example usage:

var asterisk = HexGrid.ComputeAsterisk((2, 2), 1, 2);

The above code would return a list of coordinates representing the following asterisk (the upper-left tile is (0, 0)). Note that the center tile is skipped, because a minDistance of 1 was used:

o X o X o
 o X X o o
X X o X X
 o X X o o
o X o X o

List<(int x, int y)> HexGrid.ComputeArc((int x, int y) origin, Direction direction, int sideLength)

An "arc" is formed by connecting two lines at the origin, such that the two lines form an arrowhead pointing in the given direction. The length of each side of the arrow head will be sideLength.

Example usage:

var arc = HexGrid.ComputeArc((4, 3), Direction.East, 3);

The above code would return a list of coordinates representing the following arc (the upper-left tile is (0, 0)):

o o o o o o
 o o o X o o
o o o o X o
 o o o o X o
o o o o X o
 o o o X o o

List<(int x, int y)> HexGrid.ComputeRing((int x, int y) origin, int distance)

Returns a list of coordinates that represent a ring (hexagon) centered on the origin, with a radius of distance.

List<(int x, int y)> HexGrid.ComputeRing((int x, int y) origin, int minDistance, int maxDistance)

Returns a list of coordinates that represent a solid donut or circle (hexagon) centered on the origin, with an inner radius of minDistance and an outer radius of maxDistance. A minDistance of 0 results in a solid circle with no hole.

List<(int x, int y)> HexGrid.ComputeRectangle((int x, int y) origin, int w, int h)

Returns a list of coordinates that represent a solid rectangle whose upper-left coordinate is origin, having width w and height h.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1 385 4/16/2023
3.0.0 368 4/16/2023
2.0.0 590 10/9/2022
1.0.1 881 10/21/2020
1.0.0 864 10/21/2020