Changeset 526 for cpp/frams/_demos
- Timestamp:
- 07/18/16 04:12:06 (9 years ago)
- Location:
- cpp/frams/_demos
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/full_props.cpp
r391 r526 97 97 Geno f0_g; 98 98 m.makeGeno(f0_g,NULL,reverse);//third arg is "handle_defaults" == whether f0 should omit default property values 99 puts(f0_g. toString().c_str());99 puts(f0_g.getGeneAndFormat().c_str()); 100 100 101 101 return 0; -
cpp/frams/_demos/geometry/apices_test.cpp
r348 r526 47 47 // Finishing result Model and printing its genotype. 48 48 resultModel.close(); 49 puts(resultModel.getF0Geno(). toString().c_str());49 puts(resultModel.getF0Geno().getGeneAndFormat().c_str()); 50 50 } 51 51 -
cpp/frams/_demos/geometry/info_test.cpp
r348 r526 72 72 // Finishing result Model and printing its genotype. 73 73 resultModel.close(); 74 puts(resultModel.getF0Geno(). toString().c_str());74 puts(resultModel.getF0Geno().getGeneAndFormat().c_str()); 75 75 76 76 // Printing calculated values. -
cpp/frams/_demos/geometry/surface_test.cpp
r348 r526 47 47 // Finishing result Model and printing its genotype. 48 48 resultModel.close(); 49 puts(resultModel.getF0Geno(). toString().c_str());49 puts(resultModel.getF0Geno().getGeneAndFormat().c_str()); 50 50 } 51 51 -
cpp/frams/_demos/geometry/volume_test.cpp
r348 r526 39 39 // Finishing result Model and printing its genotype. 40 40 resultModel.close(); 41 puts(resultModel.getF0Geno(). toString().c_str());41 puts(resultModel.getF0Geno().getGeneAndFormat().c_str()); 42 42 } 43 43 -
cpp/frams/_demos/part_shapes.cpp
r348 r526 52 52 53 53 m.close(); 54 puts(m.getF0Geno(). toString().c_str());54 puts(m.getF0Geno().getGeneAndFormat().c_str()); 55 55 // the genotype can be fed directly to the genotype viewer, like this: 56 56 // part_shapes | theater -g - -
cpp/frams/_demos/shapeconvert.cpp
r391 r526 87 87 88 88 Geno f0_g = newmodel.getF0Geno(); 89 puts(f0_g. toString().c_str());89 puts(f0_g.getGeneAndFormat().c_str()); 90 90 91 91 return 0;
Note: See TracChangeset
for help on using the changeset viewer.