Lagrangian Liquid Simulation
Master Thesis project on simulation of liquids using Lagrangian approach and SPH
src/main.cpp
Go to the documentation of this file.
00001 #include <QtGui/QApplication>
00002 #include "MainApp.h"
00003 
00004 int main(int argc, char *argv[])
00005 {
00006     // make an instance of the QApplication
00007     QApplication a(argc, argv);
00008 
00009     // Create a new MainWindow
00010     MainApp app;
00011 
00012     // show it
00013     app.show();
00014 
00015     // hand control over to Qt framework
00016     return a.exec();
00017 }
00018 
00019 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator