Skip to content

Instantly share code, notes, and snippets.

@eklimcz-zz
Created April 22, 2015 19:24
Show Gist options
  • Save eklimcz-zz/9294e027a2a319b4ed91 to your computer and use it in GitHub Desktop.
Save eklimcz-zz/9294e027a2a319b4ed91 to your computer and use it in GitHub Desktop.
three.js line drawing
var cube = new THREE.Shape();
cube.moveTo(80.0,80.0);
cube.lineTo(0.0, 79.0);
cube.lineTo(0.0, 0.0);
cube.lineTo(80.0, 0.0);
cube.lineTo(80.0, 80.0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment