Changeset 526 for cpp/frams/_demos


Ignore:
Timestamp:
07/18/16 04:12:06 (8 years ago)
Author:
Maciej Komosinski
Message:

Geno::toString() renamed to Geno::getGeneAndFormat()

Location:
cpp/frams/_demos
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/_demos/full_props.cpp

    r391 r526  
    9797Geno f0_g;
    9898m.makeGeno(f0_g,NULL,reverse);//third arg is "handle_defaults" == whether f0 should omit default property values
    99 puts(f0_g.toString().c_str());
     99puts(f0_g.getGeneAndFormat().c_str());
    100100
    101101return 0;
  • cpp/frams/_demos/geometry/apices_test.cpp

    r348 r526  
    4747        // Finishing result Model and printing its genotype.
    4848        resultModel.close();
    49         puts(resultModel.getF0Geno().toString().c_str());
     49        puts(resultModel.getF0Geno().getGeneAndFormat().c_str());
    5050}
    5151
  • cpp/frams/_demos/geometry/info_test.cpp

    r348 r526  
    7272        // Finishing result Model and printing its genotype.
    7373        resultModel.close();
    74         puts(resultModel.getF0Geno().toString().c_str());
     74        puts(resultModel.getF0Geno().getGeneAndFormat().c_str());
    7575       
    7676        // Printing calculated values.
  • cpp/frams/_demos/geometry/surface_test.cpp

    r348 r526  
    4747        // Finishing result Model and printing its genotype.
    4848        resultModel.close();
    49         puts(resultModel.getF0Geno().toString().c_str());
     49        puts(resultModel.getF0Geno().getGeneAndFormat().c_str());
    5050}
    5151
  • cpp/frams/_demos/geometry/volume_test.cpp

    r348 r526  
    3939        // Finishing result Model and printing its genotype.
    4040        resultModel.close();
    41         puts(resultModel.getF0Geno().toString().c_str());
     41        puts(resultModel.getF0Geno().getGeneAndFormat().c_str());
    4242}
    4343
  • cpp/frams/_demos/part_shapes.cpp

    r348 r526  
    5252
    5353        m.close();
    54         puts(m.getF0Geno().toString().c_str());
     54        puts(m.getF0Geno().getGeneAndFormat().c_str());
    5555        // the genotype can be fed directly to the genotype viewer, like this:
    5656        // part_shapes | theater -g -
  • cpp/frams/_demos/shapeconvert.cpp

    r391 r526  
    8787
    8888        Geno f0_g = newmodel.getF0Geno();
    89         puts(f0_g.toString().c_str());
     89        puts(f0_g.getGeneAndFormat().c_str());
    9090
    9191        return 0;
Note: See TracChangeset for help on using the changeset viewer.