The next version of Grasshopper will have a Weave component:
http://groups.google.com/group/grasshopper3d/web/WeaveComponent.png

If you can't wait, you'll have to generate lists of number, join them
all together and sort them:

List of data 1:  {A, B, C, D, E, F}
List of data 2:  {U, V, W, X, Y, Z}

Create list of numbers (use Series component). Then duplicate your
list as often as needed.
List of numbers 1:  {0, 10, 20, 30, 40, 50}
List of numbers 2:  {1, 11, 21, 31, 41, 51}

Then merge all lists together:

Merged data:  {A, B, C, D, E, F, U, V, W, X, Y, Z}
Merged numbers:  {0, 10, 20, 30, 40, 50, 1, 11, 21, 31, 41, 51}

Then sort them both, using the numbers as keys.
The sorted result thus becomes:

{0, 1, 10, 11, 20, 21, 30, 31, 40, 41, 50, 51}
{A, U, B, V, C, W, D, X, E, Y, F, Z}

--
David Rutten
[email protected]
Robert McNeel & Associates


On Mar 7, 7:08 pm, consalo <[email protected]> wrote:
> HI!
>
> I'm a newbie with GH and recently I've been trying to mix 3 lists with
> no results :(
>
> The 3 lists are:
> -ABCDEFG...
> -ABCDEFG...
> -ABCDEFG...
>
> And I would like to get:
> -AAABBBCCCDDDEEEFFFGGG...
>
> Any suggestions?
>
> Thanks! :)

Reply via email to