gui_writer.cc
changeset 177 40f3006fba2e
parent 174 95872af46fc4
child 194 6b2b718420eb
     1.1 --- a/gui_writer.cc	Mon Oct 30 13:08:04 2006 +0000
     1.2 +++ b/gui_writer.cc	Mon Oct 30 14:57:48 2006 +0000
     1.3 @@ -51,6 +51,16 @@
     1.4        em[i]=mapstorage->active_edgemaps[i];
     1.5      }
     1.6    x("active_edgemaps", em);
     1.7 +
     1.8 +  double attraction;
     1.9 +  double propulsation;
    1.10 +  int iteration;
    1.11 +
    1.12 +  mapstorage->get_design_data(attraction, propulsation, iteration);
    1.13 +
    1.14 +  x("redesign-attraction", attraction);
    1.15 +  x("redesign-propulsation", propulsation);
    1.16 +  x("redesign-iteration", iteration);
    1.17  }
    1.18  
    1.19  GuiWriter::GuiWriter(LemonWriter& writer, MapStorage* ms) : Parent(writer), mapstorage(ms)