-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathgrid_simple_rand.cpp
101 lines (86 loc) · 3.82 KB
/
grid_simple_rand.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* An example morph::Visual scene, containing a Gridv, and using GridvVisual
*/
#include <iostream>
#include <vector>
#include <cmath>
#include <morph/vec.h>
#include <morph/Visual.h>
#include <morph/VisualDataModel.h>
#include <morph/GridVisual.h>
#include <morph/Grid.h>
int main()
{
morph::Visual v(1600, 1000, "morph::GridVisual");
#ifdef ORTHOGRAPHIC
// Here's how to set your Visual to do an orthographic projection rather than perspective
v.ptype = morph::perspective_type::orthographic;
#endif
// Create a grid to show in the scene
constexpr unsigned int Nside = 10;
constexpr morph::vec<float, 2> grid_spacing = {0.1f, 0.1f};
// The simplest declaration of Grid is:
// morph::Grid g(size_t n_x, size_t n_y);
// grid_spacing, grid_zero, use of memory, wrapping and ordering are all possible arguments to
// the constructor.
morph::Grid grid(Nside, Nside, grid_spacing);
std::cout << "Number of pixels in grid:" << grid.n() << std::endl;
// Make some dummy data (a sine wave) to make an interesting surface
std::vector<float> data(grid.n(), 0.0);
for (unsigned int ri=0; ri<grid.n(); ++ri) {
data[ri] = static_cast<double>(std::rand()) / RAND_MAX; // Range 0->1
}
float step = 0.6f;
// Add a GridVisual to display the Grid within the morph::Visual scene
morph::vec<float, 3> offset = { -step * grid.width(), -step * grid.width(), 0.0f };
auto gv = std::make_unique<morph::GridVisual<float>>(&grid, offset);
v.bindmodel (gv);
gv->gridVisMode = morph::GridVisMode::Triangles;
gv->setScalarData (&data);
gv->cm.setType (morph::ColourMapType::Twilight);
gv->addLabel ("GridVisMode::Triangles", morph::vec<float>({0,-0.1,0}), morph::TextFeatures(0.05f));
gv->finalize();
v.addVisualModel (gv);
offset = { step * grid.width(), -step * grid.width(), 0.0f };
gv = std::make_unique<morph::GridVisual<float>>(&grid, offset);
v.bindmodel (gv);
gv->gridVisMode = morph::GridVisMode::RectInterp;
gv->setScalarData (&data);
gv->cm.setType (morph::ColourMapType::Twilight);
gv->addLabel ("GridVisMode::RectInterp", morph::vec<float>({0,-0.1,0}), morph::TextFeatures(0.05f));
gv->finalize();
v.addVisualModel (gv);
offset = { -step * grid.width(), step * grid.width(), 0.0f };
gv = std::make_unique<morph::GridVisual<float>>(&grid, offset);
v.bindmodel (gv);
gv->gridVisMode = morph::GridVisMode::Columns;
gv->interpolate_colour_sides (true);
gv->setScalarData (&data);
gv->cm.setType (morph::ColourMapType::Twilight);
gv->addLabel ("GridVisMode::Columns, interpolated sides", morph::vec<float>({0,-0.1,0}), morph::TextFeatures(0.05f));
gv->finalize();
v.addVisualModel (gv);
offset = { step * grid.width(), step * grid.width(), 0.0f };
gv = std::make_unique<morph::GridVisual<float>>(&grid, offset);
v.bindmodel (gv);
gv->gridVisMode = morph::GridVisMode::Columns;
//gv->interpolate_colour_sides = false; // default
//gv->clr_east_column = morph::colour::black; // These are defaults but you can change them
//gv->clr_north_column = morph::colour::black;
gv->setScalarData (&data);
gv->cm.setType (morph::ColourMapType::Twilight);
gv->addLabel ("GridVisMode::Columns, black sides", morph::vec<float>({0,-0.1,0}), morph::TextFeatures(0.05));
gv->finalize();
v.addVisualModel (gv);
offset = { 3 * step * grid.width(), step * grid.width(), 0.0f };
gv = std::make_unique<morph::GridVisual<float>>(&grid, offset);
v.bindmodel (gv);
gv->gridVisMode = morph::GridVisMode::Pixels;
gv->setScalarData (&data);
gv->cm.setType (morph::ColourMapType::Twilight);
gv->addLabel ("GridVisMode::Pixels", morph::vec<float>({0,-0.1,0}), morph::TextFeatures(0.05));
gv->finalize();
v.addVisualModel (gv);
v.keepOpen();
return 0;
}