Skip to content

Instantly share code, notes, and snippets.

@Golmote
Forked from 140bytes/LICENSE.txt
Created May 29, 2011 18:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Golmote/998010 to your computer and use it in GitHub Desktop.
Save Golmote/998010 to your computer and use it in GitHub Desktop.
Draw polyline on canvas
function(
a, // HTMLCanvasElement
b, // Array of points [[x1,y1],[x2,y2],...]
c, // Boolean : Close the path ?
d // Placeholder
){
for(
(d=a.getContext('2d')) // retrieve the renderingContext
.beginPath(), // and begin the path
a=0; // initialise loop variable
a<b.length;
)
(a?
d.lineTo: // line to next point
d.moveTo // move on first iteration
).apply(d,b[a++]); // incrementation
c&&d.closePath(); // close the path if needed
d.stroke() // stroke the path
}
function(a,b,c,d){for((d=a.getContext('2d')).beginPath(),a=0;a<b.length;)(a?d.lineTo:d.moveTo).apply(d,b[a++]);c&&d.closePath();d.stroke()}
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
{
"name": "Canvas Polyline",
"description": "Draw a polyline on a Canvas",
"keywords": [
"canvas",
"line",
"draw",
"polyline"
]
}
@Golmote
Copy link
Author

Golmote commented Jul 20, 2011

Oops. Sorry for the time it took. It's done ;)

@jed
Copy link

jed commented Jul 20, 2011

thanks, man.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment