Adjust shape of piece hints.

This commit is contained in:
yukirij 2024-10-13 18:32:32 -07:00
parent 7dae905288
commit b272bf1b64

View File

@ -951,8 +951,8 @@ const INTERFACE = {
let fr = INTERFACE.HexVertex[nmove];
let to = INTERFACE.HexVertex[(nmove + 1) % 6];
let ifr = INTERFACE.HexVertex[(nmove + 4) % 6];
let ito = INTERFACE.HexVertex[(nmove + 3) % 6];
let ifr = INTERFACE.HexVertex[(nmove + 5) % 6];
let ito = INTERFACE.HexVertex[(nmove + 2) % 6];
let dx = (to.x - fr.x) / 3.0;
let dy = (to.y - fr.y) / 3.0;