-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathgraph_incoming_data.cpp
75 lines (63 loc) · 2.3 KB
/
graph_incoming_data.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* Visualize a graph on which points are added with time.
*/
#include <morph/Visual.h>
#include <morph/ColourMap.h>
#include <morph/GraphVisual.h>
#include <morph/vvec.h>
#include <iostream>
#include <fstream>
#include <cmath>
#include <array>
int main()
{
namespace uc = morph::unicode;
int rtn = -1;
morph::Visual v(1024, 768, "Graph");
v.zNear = 0.001;
v.showCoordArrows (true);
v.backgroundWhite();
v.lightingEffects();
try {
morph::vvec<float> absc = {-1.0, -.9, -.8, -.7, -.6, -.5, -.4, -.3, -.2, -.1, 0, .1, .2, .3, .4, .5, .6, .7, .8, .9, 1.0};
morph::vvec<float> data = absc.pow(3);
morph::vvec<float> data2 = absc.pow(5);
auto gv = std::make_unique<morph::GraphVisual<float>> (morph::vec<float>({0,0,0}));
v.bindmodel (gv);
// Optionally change the size of the graph and range of the axes
gv->setsize (1.33, 1);
// Optionally change the range of the axes
gv->setlimits (-1, 1, -1, 1);
// Set the graphing policy
gv->policy = morph::stylepolicy::lines; // markers, lines, both, allcolour
gv->axisstyle = morph::axisstyle::twinax;
// We 'prepare' two datasets, but won't fill them with data yet. However, we do give the data legend label here.
gv->prepdata ("Third power", morph::axisside::left);
gv->prepdata ("Fifth power", morph::axisside::right);
gv->ylabel = "f(x) = x" + uc::toUtf8(uc::ss3);
// ylabel2 is the right hand y axis label
gv->ylabel2 = "f(x) = x" + uc::toUtf8(uc::ss5);
gv->finalize();
// Add the GraphVisual
auto gvp = v.addVisualModel (gv);
size_t rcount = 0;
size_t idx = 0;
v.render();
while (v.readyToFinish() == false) {
v.waitevents (0.018);
// Slowly update the content of the graph
if (rcount++ % 20 == 0 && idx < absc.size()) {
// Append to dataset 0
gvp->append (absc[idx], data[idx], 0);
// Append to dataset 1
gvp->append (absc[idx], data2[idx], 1);
++idx;
}
v.render();
}
} catch (const std::exception& e) {
std::cerr << "Caught exception: " << e.what() << std::endl;
rtn = -1;
}
return rtn;
}