hexgrid-algorithms

Installation
SKILL.md

Hexgrid Algorithms

Complete reference for hexagonal grid mathematics and algorithms optimized for game development.

Coordinate Systems

Cube Coordinates (Recommended)

Three-axis system where q + r + s = 0 always.

interface CubeCoord {
  q: number;  // Column
  r: number;  // Row  
  s: number;  // Derived: s = -q - r
}
Installs
16
First Seen
Jan 24, 2026
hexgrid-algorithms — ccalebcarter/purria-skills