(vs)
| 6506 | } |
| 6507 | |
| 6508 | function average(vs) { |
| 6509 | var sum = 0; |
| 6510 | for (var i = 0; i < vs.length; i += 1) { |
| 6511 | sum += vs[i]; |
| 6512 | } |
| 6513 | |
| 6514 | return sum / vs.length; |
| 6515 | } |
| 6516 | |
| 6517 | // Convert the font object to a SFNT data structure. |
| 6518 | // This structure contains all the necessary tables and metadata to create a binary OTF file. |