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
| function wordwrap(text, twidth, con) { | |
| con = con || context | |
| twidth = twidth || con.canvas.width | |
| var texts = [text], n = 0, s | |
| while (con.measureText(texts[n]).width > twidth && (s = texts[n].indexOf(" ")) > -1) { | |
| var t = texts[n], a = t.lastIndexOf(" ") | |
| while (con.measureText(t.substr(0, a)).width > twidth && a > s) a = t.lastIndexOf(" ", a-1) | |
| texts[n++] = t.substr(0, a) | |
| texts.push(t.substr(a+1)) | |
| } |
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
| // WIP - needs a context object to store debounce info in. | |
| Function.prototype.debounced = function() {return this} | |
| var a = function(r) {console.log("Hello "+r)} | |
| a.debounced()("World") | |
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
| <!doctype html> | |
| <head> | |
| <style> | |
| </style> | |
| </head> | |
| <body> | |
| <div> | |
| <canvas id="canvas" width="500" height="500"> | |
| </canvas> |
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
| { | |
| "editor.fontFamily": "'Hasklig', 'Source code pro'", | |
| "editor.fontSize": 15.4, | |
| //"editor.fontSize": 12, | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], | |
| "editor.minimap.enabled": false, | |
| "editor.folding": false, |
OlderNewer