am creating punch of dashed segments using
LineSegmentsGeometry
and
LineMaterial({
dashed: true,
linewidth: lineWidth,
dashSize: 1,
gapSize: 1,
dashScale: 1,
dashOffset: 1
})
in updating
geometry.setColors(colors);
geometry.setPositions(positions);
line.computeLineDistances();
when i update the start or the end node position of segment if affect other segment dashed which is not desired … i want to keep otther segments dashes as is ANY HELP