LibiadaCore.Core.Chain.ClearAndSetNewLength C# (CSharp) Method

ClearAndSetNewLength() public method

Deletes chain (building and alphabet) and creates new empty chain with given length.
public ClearAndSetNewLength ( int length ) : void
length int /// New chain length. ///
return void
        public override void ClearAndSetNewLength(int length)
        {
            base.ClearAndSetNewLength(length);
            congenericChains = null;
            relationIntervalsManagers = null;
        }