Skip to main content

Hexagonal provides hexagonal vectors.

Project description

Hexagonal

hexagonal provides hexagonal vectors.

Usage

>>> import hexagonal

Create a vector from cube coordinates, with x + y + z = 0. x is south-east-ish, y is north and z is south-west-ish.

>>> v = hexagonal.Vec(x=4, y=3, z=-7)
>>> v
Vec(4, 3, -7)

Coordinates can be accessed, but not modified. hexagonal.Vec is immutable.

>>> v.x
4
>>> v.y
3
>>> v.z
-7

The z coordinate is optional.

>>> u = hexagonal.Vec(4, 5)

Arithmetic is supported.

>>> v + u
Vec(8, 8, -16)
>>> v - u
Vec(0, -2, 2)

abs gives the hexagonal distance to the vector, i.e. the radius of the hexagon on which it sits.

>>> abs(u)
9

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hexagonal-0.0.3.tar.gz (16.1 kB view hashes)

Uploaded Source

Built Distribution

hexagonal-0.0.3-py3-none-any.whl (15.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page