def main():
    # There is a way to pass arguments along with the function.
    # The GenerateCentreline function signature will have to be changed to expect args like this:
    # GenerateCentreline(function, *args)
    # Then the function can be called like this:
    # function(args)
    CentrelineGenerator.GenerateCentreline(
        CentrelineGenerator.BuildMurraysLawRadii)
Beispiel #2
0
def main():
    # CentrelineGenerator.GenerateCentreline(CentrelineGenerator.BuildDecreasingRadiiScalars)
    CentrelineGenerator.GenerateCentreline()