Files
lifeEngine/src/Grid/Neighbors.js
MaxRobinsonTheGreat b0292ae0e6 edit mode fixes
2020-07-22 12:07:27 -06:00

26 lines
546 B
JavaScript

// contains local cell values for the following:
//all ...
// .x.
// ...
//adjacent .
// .x.
// .
//corners . .
// x
// . .
//allSelf ...
// ...
// ...
const Neighbors = {
all: [[0, 1],[0, -1],[1, 0],[-1, 0],[-1, -1],[1, 1],[-1, 1],[1, -1]],
adjacent: [[0, 1],[0, -1],[1, 0],[-1, 0]],
corners: [[-1, -1],[1, 1],[-1, 1],[1, -1]],
allSelf: [[0, 0],[0, 1],[0, -1],[1, 0],[-1, 0],[-1, -1],[1, 1],[-1, 1],[1, -1]]
}
module.exports = Neighbors;