Skip to content

Instantly share code, notes, and snippets.

@miketahani
Created February 27, 2015 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miketahani/caf3b5fc5dfe577dc150 to your computer and use it in GitHub Desktop.
Save miketahani/caf3b5fc5dfe577dc150 to your computer and use it in GitHub Desktop.
create a canvas clip mask using clip()
ctx.save();
ctx.beginPath();
path.context(ctx)(landClipTopo);
ctx.closePath();
ctx.clip();
ctx.fillStyle = 'red';
ctx.fillRect(w/2-200, h/2-200, 200, 200);
ctx.restore();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment