working on implementing timer and callback functionality
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user