C# Class LSystem.System

Datei anzeigen Open project: FacepunchProgrammers/coderelay-audio

Public Methods

Method Description
AddRule ( string match, string replacement ) : void
PerformIteration ( List input ) : List
PerformIterations ( List input, int n ) : List
PerformIterations ( string input, int n ) : List

Private Methods

Method Description
MatchAndApplyRules ( int &index, List input, List output ) : bool

Method Details

AddRule() public method

public AddRule ( string match, string replacement ) : void
match string
replacement string
return void

PerformIteration() public method

public PerformIteration ( List input ) : List
input List
return List

PerformIterations() public method

public PerformIterations ( List input, int n ) : List
input List
n int
return List

PerformIterations() public method

public PerformIterations ( string input, int n ) : List
input string
n int
return List