Minor cleanup.
[lsystem3d.git] / src / lsystem3d.cpp
index 37d4ab24e6f363172c57cd8aadf9a26f0c3d48fd..a856028b818c32b5845131cfae2cc89653ce4b2a 100644 (file)
@@ -38,12 +38,13 @@ LSystem3D::LSystem3D(int argc, char *argv[])
     FXApp *application = new FXApp("LSystem3D");
     application->init(argc, argv);
     
+    // create the windows
+    RenderingSurface *surface = new RenderingSurface(application);
     Model model;
     LindenmayerSystem lsystem(&model);
-    
-    // create the windows and run the application
-    RenderingSurface *surface = new RenderingSurface(application, &lsystem);
+    surface->setLSystem(&lsystem);
     new GUI(application, surface, &lsystem);
+    
     application->create();
     application->run();
 }