Is there a way to divide a curve using the split at parameter node but not only with a series of number but with a progression of numbers that increase as one would using graph mapper in Grasshopper
such as
You may find a solution from my example demonstrating a simple geometric controller here
Alternatively, you can solve this problem mathematically, using an exponent starting from 1, i.e 1, 2, 4, 8, 16, 32, 64 etc. Total the sequence, then divide 1 by the result to create a multiplier. Multiply the sequence using this number, then create points using Curve.PointAtParameter
Here’s an example graph taking the ‘mathematical’ approach (using the geometric controller is simpler…):
Thank you Thomas for your reply , the geometric controller is pretty cool!
lacing the point.atParameter node seemed to solve it but as i see in you soultion it was still set at shortest, how come?
My guess is that the selected element is in a sub list.

Thank you to all,for really amazing solutions.