Files
intelliphoto/src/main.cpp
Sonaion 4953abc791 Integrated Polygon Test
Use calculate traingles and the isInPolygon with theese triangles, this is done because of performance reasons
2019-12-18 16:32:11 +01:00

18 lines
379 B
C++

#include "GUI/IntelliPhotoGui.h"
#include <QApplication>
#include <QDebug>
#include "IntelliHelper/IntelliHelper.h"
#include<vector>
int main(int argc, char *argv[]){
// The main application
QApplication app(argc, argv);
//some nice ass looking comment
// Create and open the main window
IntelliPhotoGui window;
window.show();
return app.exec();
}