Ignore:
Timestamp:
07/13/20 13:51:43 (4 years ago)
Author:
Maciej Komosinski
Message:

More consistent usage of "shapetype" (vs. "shape")

File:
1 edited

Legend:

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

    r994 r999  
    212212        if (using_checkpoints)
    213213        { // using Model with checkpoints
    214                 Model m1(g2, Model::SHAPE_UNKNOWN, false, true);//true=using_checkpoints
     214                Model m1(g2, Model::SHAPETYPE_UNKNOWN, false, true);//true=using_checkpoints
    215215                printf("\nModel built from the converted f%s genotype has %d checkpoints\n", g2.getFormat().c_str(), m1.getCheckpointCount());
    216                 Model m2(g1, Model::SHAPE_UNKNOWN, false, true);//true=using_checkpoints
     216                Model m2(g1, Model::SHAPETYPE_UNKNOWN, false, true);//true=using_checkpoints
    217217                printf("Model built from the source f%s genotype has %d checkpoints\n", g1.getFormat().c_str(), m2.getCheckpointCount());
    218218                // accessing individual checkpoint models (if available)
     
    240240                }
    241241
    242                 Model mod1(g1, Model::SHAPE_UNKNOWN, 1);
     242                Model mod1(g1, Model::SHAPETYPE_UNKNOWN, 1);
    243243                printf("\nModel map for f%s genotype:\n", g1.getFormat().c_str());
    244244                ModelDisplayMap dm1(mod1);
     
    247247                mod1combined.addCombined(mod1.getMap(), dm1.getMap());
    248248                mod1combined.print();
    249                 Model mod2(g2, Model::SHAPE_UNKNOWN, 1);
     249                Model mod2(g2, Model::SHAPETYPE_UNKNOWN, 1);
    250250                printf("\nModel map for f%s genotype:\n", g2.getFormat().c_str());
    251251                ModelDisplayMap dm2(mod2);
Note: See TracChangeset for help on using the changeset viewer.