I need help in dividing a curve, as shown in the attached figure, based on either a specific number of segments or target points.
Ideally, I’d like the segmentation to be tighter (i.e., with smaller segment lengths or based on angle tolerance) in curved sections.
While it’s relatively easy to split and divide manually for a single curve, but it becomes quite difficult when processing multiple curves/lines.
If i used curve to lines will produce like this figure with randomly number of point/segment number. It would be more beneficial if I could adjust the number of points/segments and remove points on relatively straight sections.
First, the curve is culled of its straight segments. Then the curved sections are sorted by their length and a division count for the the curves determined on the basis of the shortest curve. Dividing a curve by equally spaced parameters will naturally give tighter division spacings to tighter curvatures. It is just a matter of finding the correct division number based on the curves’ true length.