Put more logic in BYD symbol ordering

This commit is contained in:
Willem Cazander 2025-01-26 15:29:01 +01:00
parent df935bd247
commit 8eb1820086
4 changed files with 17 additions and 17 deletions

View file

@ -63,7 +63,7 @@ public enum FCDotPIE9CDash25 implements FourCornerDotCollePie9 {
LOW_CHI('χ'), LOW_CHI('χ'),
LOW_PSI('ψ'), LOW_PSI('ψ'),
LOW_OMEGA('ω'), // = FROM APL LOW_OMEGA('ω'), // = FROM APL
SEX_MALE('♂'), SEX_FEMALE('♀'),
; ;
private final List<Integer> codePointDisplay; private final List<Integer> codePointDisplay;

View file

@ -63,7 +63,7 @@ public enum FCDotPIE9DDash25 implements FourCornerDotCollePie9 {
CHI('Χ'), CHI('Χ'),
PSI('Ψ'), PSI('Ψ'),
OMEGA('Ω'), OMEGA('Ω'),
SEX_FEMALE('♀'), SEX_MALE('♂'),
; ;
private final List<Integer> codePointDisplay; private final List<Integer> codePointDisplay;

View file

@ -52,10 +52,11 @@ public enum FCDotBYD0127DashP7E implements FourCornerDotColleZero33 {
BOX1_15('┼'), BOX1_15('┼'),
BOX1_16('╌'), BOX1_16('╌'),
BOX1_17('╎'), BOX1_17('╎'),
BOX1_18('╴'),
BOX1_19('╵'), BOX1_18('╵'),
BOX1_20('╶'), BOX1_19('╷'),
BOX1_21('╷'), BOX1_20('╴'),
BOX1_21('╶'),
BOX2_22('╪'), BOX2_22('╪'),
BOX2_23('╫'), BOX2_23('╫'),

View file

@ -51,21 +51,20 @@ public enum FCDotBYD0127DashP7F implements FourCornerDotColleZero33 {
BLK1_14('▎'), BLK1_14('▎'),
BLK1_15('▏'), BLK1_15('▏'),
BOX3_16('╭'), BLK2_16('▔'),
BOX3_17('╮'), BLK2_17('╏'),
BOX3_18('╯'), BLK1_18('▕'),
BOX3_19('╰'), BLK1_19('▐'),
BLK2_20('▔'), BOX3_20('╭'),
BLK2_21('╏'), BOX3_21('╮'),
BOX3_22('╰'),
BOX3_23('╯'),
BLK1_22('▕'),
BLK1_23('▐'),
BLK2_24('▛'), BLK2_24('▛'),
BLK2_25('▜'), BLK2_25('▜'),
BLK2_26(''), BLK2_26('▙'),
BLK2_27(''), BLK2_27(''),
; ;
static final private FCDotBYD0127DashP7F[] VALUES = values(); // values() is slow method static final private FCDotBYD0127DashP7F[] VALUES = values(); // values() is slow method