Changeset 157 for cpp/frams/genetics/fF
- Timestamp:
- 03/01/14 22:38:45 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/fF/conv_fF.cpp
r140 r157 19 19 { 20 20 fF_growth_params gp; 21 gp.load(in); 21 if (!gp.load(in)) //invalid input genotype? 22 return ""; //so we return an invalid f0 genotype 22 23 Model m; 23 24 m.open(); … … 31 32 rotation.rotate(Pt3D(0, gp.angle1, gp.angle2)); //assumed rotation around x is 0, which is limiting if we use assymetrical shapes (i.e., not spheres). But the original model had only two angles... 32 33 33 for (int i = 0; i < gp.number_of_chambers; i++, p1 = p2)34 for (int i = 1; i < gp.number_of_chambers; i++, p1 = p2) 34 35 { 35 36 p2 = m.addNewPart(Part::SHAPE_ELLIPSOID);
Note: See TracChangeset
for help on using the changeset viewer.