Fixed pie 9D enum offset calculation

This commit is contained in:
Willem Cazander 2025-05-25 12:54:36 +02:00
parent 905bec88e2
commit cce1f040e5
2 changed files with 13 additions and 1 deletions

View file

@ -73,7 +73,7 @@ public interface FourCornerDotCollePie9 extends FourCornerX06BaklavaPointSequenc
List<Integer> result = new ArrayList<>();
result.addAll(FCDotDEC2701DashPX0.ESC68_2PIE9D.baklavaPointSequence());
result.add(letter.baklavaPointDotIndex());
result.add(FCDotCDC1604DashP6.NX01_A.ordinal() - offset);
result.add(FCDotCDC1604DashP6.NX01_A.ordinal() + offset);
//result.add(FCDotCDC1604DashP6.SEQ_SALAH__EXCLAMATION.cakePointDotIndex()); // TODO: add api layer snake for head
return result;
}