Changeset 526
- Timestamp:
- 07/18/16 04:12:06 (8 years ago)
- Location:
- cpp/frams
- Files:
-
- 8 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; -
cpp/frams/vm/classes/genoobj.cpp
r516 r526 80 80 void GenoObj::get_string(ExtValue *ret) 81 81 { 82 ret->setString( shortString());82 ret->setString(getGeneAndFormat()); 83 83 } 84 84 … … 178 178 { 179 179 VectorObject *vec = new VectorObject; 180 vec->data += new ExtValue( shortString());180 vec->data += new ExtValue(getGeneAndFormat()); 181 181 vec->data += new ExtValue(getName()); 182 182 vec->data += new ExtValue(getComment());
Note: See TracChangeset
for help on using the changeset viewer.