Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Last active October 24, 2017 23:03
Show Gist options
  • Save lonekorean/a38a7e873a77a2b46134141454e033d7 to your computer and use it in GitHub Desktop.
Save lonekorean/a38a7e873a77a2b46134141454e033d7 to your computer and use it in GitHub Desktop.
Matter.js create body from path
const CUSTOM_PATH = '425.6 327 273.8 315.6...';
function customShape(x, y) {
let vertices = Matter.Vertices.fromPath(CUSTOM_PATH);
return Matter.Bodies.fromVertices(x, y, vertices, {
// set options if you need them...
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment