Removing the first element in an array?

Hello

Is it possible to remove the first element in an array? 

What I mean is if I have an array in GC with [0,1,2,3,4,5] and I want to remove [0] from my drawing so that technically [1] becomes [0]. So my final array will be [0,1,2,3,4]. Is this possible in a simple way?

What I am trying to do is something that I usually can solve with Line.ByLacing where I can move the position index around, so make the lines do what I want, between two asymmetric arrays. But in this case it is not possible. It would be best if it was possible to just remove one element from the array.

Hope I explained my problem in an understandable way.

/OutOfTime007

Parents Reply Children
No Data