Gigatron, There is this link wherein we could draw lines and curves using threejs - http://www.lab4games.net/zz85/blog/2014 ... and-webgl/
Wondering if this is possible using this plugin?
Something like the below ? -
geometry = new THREE.Geometry();
geometry.vertices.push(new Vector2(x1, y1, 0));
geometry.vertices.push(new Vector2(x2, y2, 0));
material = new THREE.LineBasicMaterial( { color: 0xffffff, linewidth: 2 } );
line = new THREE.Line(geometry, material);
scene.add(line);