X-Git-Url: https://git.piment-noir.org/?p=lsystem3d.git;a=blobdiff_plain;f=src%2Flsystemparameters.cpp;h=bdd16eb000e3d619781860d5fc1fdc1b62c4e295;hp=c12e9e3ecaa7583a2427a612b03c5550166ee81b;hb=526db67540bf69a4c09ed0d0f4d62bad0a37ee70;hpb=3025996ba17bf59f5bc64def5d55b95c4d732a8a diff --git a/src/lsystemparameters.cpp b/src/lsystemparameters.cpp index c12e9e3..bdd16eb 100644 --- a/src/lsystemparameters.cpp +++ b/src/lsystemparameters.cpp @@ -48,7 +48,7 @@ LSystemParameters::~LSystemParameters() /** * Load parameters from xml file - * @param lsystem put parameters into this l-system + * @param lsystem put parameters into this L-system * @param path path to xml file */ void LSystemParameters::load(LindenmayerSystem *lsystem, string path) @@ -88,7 +88,7 @@ void LSystemParameters::load(LindenmayerSystem *lsystem, string path) } else { - cerr << "invalid lsystem" << endl; + cerr << "invalid L-system" << endl; } } @@ -96,7 +96,7 @@ void LSystemParameters::load(LindenmayerSystem *lsystem, string path) /** * Save parameters to xml file - * @param lsystem get parameters from this l-system + * @param lsystem get parameters from this L-system * @param path path to xml file */ void LSystemParameters::save(LindenmayerSystem *lsystem, string path) @@ -133,6 +133,6 @@ void LSystemParameters::save(LindenmayerSystem *lsystem, string path) } else { - cerr << "invalid lsystem" << endl; + cerr << "invalid L-system" << endl; } }