So i’m using CatmullRomCurve3 so…
const curve = new THREE.CatmullRomCurve3( [
new THREE.Vector3( -20, -0.782, -20 ),
new THREE.Vector3( -6, -0.782, -5 ),
new THREE.Vector3( -3, -0.782, 0 ),
new THREE.Vector3( 4, -0.782, 1 ),
new THREE.Vector3( 10, -0.782, 20 )
] );
and i am wondering if there are any online tools to help me draw the lines/curves because it’s getting pretty hard to get close to what i need ?
thanks in advance