Understanding Parallel intervals

Hi,
can someone plse tell me the difference between:

interval1 = …
interval2 = …
interval1.loop()
interval2.loop()

and

p = Parallel(interval1, interval2)
p.loop()

Thx

In the former, you have two intervals that are looping independently; in the latter, you have just one interval. The results will be very similar either way.

David

Do you have an example where you actually should use a Parallel interval ?

Parallels are most usefully used as building blocks for larger, more complex intervals. In this thread, for instance, I use both Parallel and ParallelEndTogether within a Sequence to define a complex relationship of timings.

David

Thank you for yout help