how to convert a 2d path to a 3d shape in Three.js?
- by VirtualWorld
i need to have the 3d of this: http://jsfiddle.net/dAdKm/
but when i use this code:
var shape = new THREE.Shape();
shape.moveTo(20,20);
shape.bezierCurveTo(20, 100, 150, 100, 150, 20);
shape.moveTo(20,20);
shape.lineTo(20, 100);
shape.lineTo(150, 100);
shape.lineTo(150, 20);
var shape3d = shape.extrude(extrudeSettings);
var shapePoints =…