Skip to content

Instantly share code, notes, and snippets.

@tomswales
Last active February 15, 2018 22:29
Show Gist options
  • Save tomswales/301912e0bcc835835c756bb0a4a5309d to your computer and use it in GitHub Desktop.
Save tomswales/301912e0bcc835835c756bb0a4a5309d to your computer and use it in GitHub Desktop.
Numeral representation
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