1.0.1 • Published 6 years ago

solid-hex v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

solid-hex

A simple hexagon library using cube-coordinates. ⬡

This package is based on code from https://www.redblobgames.com/grids/hexagons/.

Install

yarn add solid-hex

Usage

import * as hex from 'solid-hex';

const a = hex.hex(2, 3);
const b = hex.scale(a, 10);
const c = hex.lerp(a, b, 0.5);

// etc... 

This library is designed to work best with the pipeline operator:

import * as Hex from 'solid-hex';

const a = hex.hex(2, 3)
  |> hex.scale(10)
  |> hex.lerp(hex.hex(1, 2), 0.5))

// etc... 
1.0.1

6 years ago

1.0.0

6 years ago