working on implementing timer and callback functionality

This commit is contained in:
2024-05-03 00:06:49 +02:00
parent 3bc3ffd14f
commit ef1c78e0a5
10 changed files with 200 additions and 45 deletions

View File

@@ -1,5 +1,4 @@
#include <netcdf>
#include <vector>
#include <vtkActor2D.h>
#include <vtkNamedColors.h>
#include <vtkPoints.h>
@@ -11,6 +10,7 @@
#include "helperClasses/BackgroundImage.h"
#include "helperClasses/EGlyphLayer.h"
#include "helperClasses/LGlyphLayer.h"
#include "helperClasses/Program.h"
using namespace std;
@@ -19,8 +19,10 @@ using namespace std;
int main() {
auto bg = new BackgroundImage("../../../../data/map_661-661.png");
auto e = new EGlyphLayer();
auto l = new EGlyphLayer();
auto program = new Program(*bg, *e, *l);
auto l = new LGlyphLayer();
l->spoofPoints();
auto program = new Program(bg, e, l);
program->render();
return EXIT_SUCCESS;