Adding intervals to a Sequenceinterval

Hi
I want to add Intervals to a sequenceinterval after ive made the object, and from what i understand i can use addInterval(self, ival, relTime, relTo). Anyone know what are the parameters relTime and relTo are?

Actually, addInterval() is an internal method that you shouldn’t be calling directly.

Instead, just use the standard Python list appending methods to extend an existing SequenceInterval:


ival.append(myIval)

or:


ival += [myIval1, myIval2, myIval3]

David

Thanks for the help:)