goat3d

view goatview/src/main.cc @ 72:36e39632db75

- fixed exporter animation bounds calculation - fixed missing scene name in exported meshes - rewritting goatview as a full GUI app with Qt
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 06 May 2014 03:31:35 +0300
parents
children 9862541fdcf5
line source
1 #include <QtWidgets/QtWidgets>
2 #include "goatview.h"
4 int main(int argc, char **argv)
5 {
6 QApplication app(argc, argv);
8 GoatView gview;
9 gview.show();
11 return app.exec();
12 }