diff options
author | Julian T <julian@jtle.dk> | 2021-01-12 18:48:40 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-01-12 18:48:40 +0100 |
commit | 8251be3e7ec0e381391c951fd4c8f1ab8080bef9 (patch) | |
tree | 8caaf285d59fadb3fb4ce6f3a4c9e1d956d8e21e /app | |
parent | 0f9e88ccf0510ab4d830529fa539ef6db715f988 (diff) |
Reorgranize source file structure
Diffstat (limited to 'app')
-rw-r--r-- | app/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/main.cpp b/app/main.cpp index 16de1f6..ebb0536 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -3,7 +3,7 @@ #include <qpushbutton.h> #include "mainwindow.hpp" -#include "vector.hpp" +#include <core/vector.hpp> #include <scene.hpp> #include <render.hpp> #include <object.hpp> @@ -15,10 +15,10 @@ int main(int argc, char *argv[]) QApplication a(argc, argv); Scene scn; Config conf; - conf.m_width = 500; - conf.m_height = 500; + conf.m_width = 1000; + conf.m_height = 1000; conf.m_maxhops = 5; - conf.m_samples = 100; + conf.m_samples = 10000; conf.m_framerate = 3; conf.m_workers = 4; |