I am working on a film strip carousel
And I am using a CatmullRomCurve3 to bend the meshes. I do have two patterns, but I want to add a few more. The issue is that I have zero blender skills to create the curve visually, I would appreciate some help.
This is how the curve looks like now
this.curve = new FWDFSSC_THREE.CatmullRomCurve3([
vec3(-7, 1, -1),
vec3(-1, 1.25, -1.2),
vec3(-2, -0.5, 2),
vec3(3, -0.5, 2),
vec3(2, 1, -1),
vec3(7, 1, -1)
], false, “catmullrom”, 0.9);
I will share the full code here for free for others. it was not easy to code this