I am trying to create letters using 3JS.
In the past, I used a website with bezier curves in Canvas to draw objects by manipulating them with the mouse.
Is there a tool available for 3JS that can assist in this process?
Searching has not yielded any results and manually coding each letter seems like a waste of time.
I have looked everywhere but haven't found what I need.
Currently, I am working with Spline Curves...
curve = new THREE.SplineCurve( [
new THREE.Vector2( -90, 50),
new THREE.Vector2( -150, 0),
new THREE.Vector2( -130, 50),
]);
Any help would be greatly appreciated.