Its that possible to Push an element in a current and self Array loop and the limits of the Loop increase dynamically without breaking the Loop?
Its kind Recursivity what I want to do.
For example:
Line.Width = 5
For each X Element in Line(Array)
Push Front 1 on X Axis.
//After the First Loop the Index becomes 2 (considering in this example the beginning is 1) and the Line.Width now Expanded to 6.
// So I want the next Loop considers that the Line.Width is 6 not 5 as the First time the Array looped.
If that is possible, I want to Dynamically Push and Pop values and dont break the loop when a custom Flag or Condition happen!
Yann
Kyatric