Last active
February 15, 2018 22:29
-
-
Save tomswales/301912e0bcc835835c756bb0a4a5309d to your computer and use it in GitHub Desktop.
Numeral representation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const numerals = { | |
"1": { | |
top: false, top_left: false, top_right: true, middle: false, bottom_left: false, bottom_right: true, bottom: false | |
}, | |
"2": { | |
top: true, top_left: false, top_right: true, middle: true, bottom_left: true, bottom_right: false, bottom: true | |
}, | |
"3": { | |
top: true, top_left: false, top_right: true, middle: true, bottom_left: false, bottom_right: true, bottom: true | |
}, | |
"4": { | |
top: false, top_left: true, top_right: true, middle: true, bottom_left: false, bottom_right: true, bottom: false | |
}, | |
"5": { | |
top: true, top_left: true, top_right: false, middle: true, bottom_left: false, bottom_right: true, bottom: true | |
}, | |
"6": { | |
top: true, top_left: true, top_right: false, middle: true, bottom_left: true, bottom_right: true, bottom: true | |
}, | |
"7": { | |
top: true, top_left: false, top_right: true, middle: false, bottom_left: false, bottom_right: true, bottom: false | |
}, | |
"8": { | |
top: true, top_left: true, top_right: true, middle: true, bottom_left: true, bottom_right: true, bottom: true | |
}, | |
"9": { | |
top: true, top_left: true, top_right: true, middle: true, bottom_left: false, bottom_right: true, bottom: true | |
}, | |
"0": { | |
top: true, top_left: true, top_right: true, middle: false, bottom_left: true, bottom_right: true, bottom: true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment