Added PC/Hi/Lo variants of the B&W checkered patterns

This commit is contained in:
Brendan Robert 2015-02-09 21:24:34 -06:00
parent 17d8c6d082
commit 61bf08d0c4

View File

@ -101,11 +101,27 @@ public enum FillPattern {
White_PC(false, 1, false, "+++++++"),
White_Lo(true, 1, false, "+++++++"),
White_Hi(true, 1, true, "+++++++"),
BW1(false, 4, false,
BW1_PC(false, 4, false,
"++--++--++--++--++--++--++--",
"--++--++--++--++--++--++--++"
),
BW2(false, 4, false,
BW1_Lo(true, 4, false,
"++--++--++--++--++--++--++--",
"--++--++--++--++--++--++--++"
),
BW1_Hi(true, 4, true,
"++--++--++--++--++--++--++--",
"--++--++--++--++--++--++--++"
),
BW2_PC(false, 4, false,
"--++--++--++--++--++--++--++",
"++--++--++--++--++--++--++--"
),
BW2_Lo(true, 4, false,
"--++--++--++--++--++--++--++",
"++--++--++--++--++--++--++--"
),
BW2_Hi(true, 4, true,
"--++--++--++--++--++--++--++",
"++--++--++--++--++--++--++--"
);