I want the spiral effect just like https://jsfiddle.net/prisoner849/4gnm8bw3/
but at the place of box geometry, I want some line geometry(crescent shape likely similar to moon shape) .
I tried this but fail to get exactly what I want.
var smileyMouthPath = new THREE.Path()
.moveTo(20, 20)
.quadraticCurveTo(500, 600, 1000, 100)
.quadraticCurveTo(500, 400, 120, 100);
var radius = 10;
var turns = 3;
var objPerTurn = 30;
var angleStep = (Math.PI * 2) / objPerTurn;
var heightStep = 0.5;
var points = smileyMouthPath.getPoints();
var geom = new THREE.BufferGeometry().setFromPoints(points);;
for (let i = 0; i < turns * objPerTurn; i++) {
let plane = new THREE.Mesh(geom, new THREE.MeshBasicMaterial({
color: Math.random() * 0x888888 + 0x888888}));
// position
plane.position.set(
Math.cos(angleStep * i) * radius,
heightStep * i,
Math.sin(angleStep * i) * radius);
// rotation
plane.rotation.y = - angleStep * i;
scene.add(plane);}