QuaziGNRLnose, 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 the Q3Dplugin? I havent seen the corresponding actions/conditions to draw a line, push vertices, draw curves for example. Please let me know.
For example if the below has to be achieved using Q3D, is there a way to do it? -
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);
If this is not present in the current Q3D, can it be considered for the future version?