Skip to content

NeonGamer/LSystemGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LSystemGenerator

A Library for generating instructions easily from a list of given rules.

Example: Dragons Curve ->

string instuctions = LSystemGenerator.LSystem.Generate("f", 15, new Dictionary<string, string> { 
    { "f", "f+g" },
    { "g", "f-g" },
    { "-", "-" },
    { "+", "+" }
});

About

A Library for generating instructions easily from a list of given rules.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages