| 70 | bool isWhite() const noexcept { return whiteAt(p); } |
| 71 | |
| 72 | POINT front() const noexcept { return d; } |
| 73 | POINT back() const noexcept { return {-d.x, -d.y}; } |
| 74 | POINT left() const noexcept { return {d.y, -d.x}; } |
| 75 | POINT right() const noexcept { return {-d.y, d.x}; } |
no outgoing calls
no test coverage detected