Fix SW direction to go south rather than north

This commit is contained in:
Marc Di Luzio 2020-07-11 17:25:38 +01:00
parent 79598c3373
commit 105d69bd7c

View file

@ -71,7 +71,7 @@ var bearingVectors = []Vector{
{X: 1, Y: 0}, // E
{X: 1, Y: -1}, // SE
{X: 0, Y: -1}, // S
{X: -1, Y: 1}, // SW
{X: -1, Y: -1}, // SW
{X: -1, Y: 0}, // W
{X: -1, Y: 1}, // NW
}