From English Wikipedia @ Freddythechick
Original file (SVG file, nominally 750 × 530 pixels, file size: 30 KB)
Summary
code used to generate the board (unoptimized):
document . getElementById ( "demo" ). innerHTML = data . matrix [ 17 ][ 20 ]. count
let board = ''
board += '<g text-anchor="middle" font-size="6pt" font-family="monospace">'
for ( let i = 0 ; i <= 73 ; i ++ ){
board += `<text alignment-baseline="middle" y="5" x=" ${ 10 * ( i + 1.5 ) } "> ${ i } </text>`
}
for ( let i = 0 ; i <= 51 ; i ++ ){ // i is losing score
board += `<text alignment-baseline="middle" x="5" y=" ${ 10 * ( i + 1.5 ) } "> ${ i } </text>`
}
board += '</g>'
for ( let i = 0 ; i <= 51 ; i ++ ){
board += `<rect width=" ${ ( i == 1 ) ? 60 : 10 * i } " height="10" x="10" y=" ${ 10 * ( i + 1 ) } " fill="black"/>`
for ( let j = i ; j <= 73 ; j ++ ){ // j is winning score
if ( data . matrix [ i ][ j ]. count > 0 ){
board += `<rect width="10" height="10" x=" ${ ( j + 1 ) * 10 } " y=" ${ ( i + 1 ) * 10 } " fill="#0c0" />`
}
}
}
board += '<rect width="10" height="10" x="80" y="20"/>'
board += '<rect width="10" height="10" x="20" y="10"/>'
document . getElementById ( "demo" ). innerHTML = board . length
document . getElementById ( "svg" ). innerHTML = board
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
https://creativecommons.org/licenses/by/4.0 CC BY 4.0 Creative Commons Attribution 4.0 true true English This is an NFL scorigami board generated before [[Super Bowl LVIII]]
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time Thumbnail Dimensions User Comment
current 00:43, 9 December 2024 750 × 530 (30 KB) wikimediacommons>1ctinus thanks jets 32-26
File usage
The following page uses this file:
This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
If the file has been modified from its original state, some details may not fully reflect the modified file.