hello,
i'm trying to figure out how to add a branched list of values to an
unbranched list, and output the same number of values with branching
information intact. essentially, i have a list that represents the Z
values of the endpoints of a series of curves. if there are two
curves, it may look something like this:
path {0;0}
0 0.0
1 -0.937
path {0;1}
0 0.0
1 -0.937
i want to add random values to these values, so i generate a random
list with 4 random numbers. right now, it looks like:
path {0;0}
0 0.031
1 0.014
2 0.058
3 0.096
what happens is that i end up adding values 0 and 1 from the random
list to values 0 and 1 from each branch of the list of endpoints. i
understand why this happens, but i want to figure out how to add
values 2 and 3 from the random list to values 0 and 1 from path {0;1}
on the initial list. i also want to be able to vary the number of
input curves and division points, this example is intended to be the
most simplified version.
please let me know if you have any ideas, and thanks in advance.
justin