We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
THREE.QuadraticBezierCurve3
var curve = new THREE.QuadraticBezierCurve3( new THREE.Vector3(0, 0, 0), new THREE.Vector3(11, 161, 5), new THREE.Vector3(22, 46, 10) );
var geometry = new THREE.Geometry(); geometry.vertices = curve.getPoints(50);
var material = new THREE.LineBasicMaterial({ color: 0xff0000 });
var curveObject = new THREE.Line(geometry, material); scene.add(curveObject);
There should be added an arrow to the end of the curve that points to the new file
Activity
pschild commentedon Dec 3, 2016
THREE.QuadraticBezierCurve3
showing the relationshipvar curve = new THREE.QuadraticBezierCurve3(
new THREE.Vector3(0, 0, 0),
new THREE.Vector3(11, 161, 5),
new THREE.Vector3(22, 46, 10)
);
var geometry = new THREE.Geometry();
geometry.vertices = curve.getPoints(50);
var material = new THREE.LineBasicMaterial({ color: 0xff0000 });
var curveObject = new THREE.Line(geometry, material);
scene.add(curveObject);
pschild commentedon Jan 20, 2017
There should be added an arrow to the end of the curve that points to the new file