BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
scatter_renderer.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 * Sona Molnarova
5 *
6 * BlosSOM is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
10 *
11 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef SCATTER_RENDERER_H
21#define SCATTER_RENDERER_H
22
23#include "color_data.h"
24#include "scatter_model.h"
25#include "texture_renderer.h"
26#include "view.h"
27
28#include "shader.h"
29
30/**
31 * @brief Renderer of the 2D data points.
32 *
33 */
35{
37
38 void init();
39
40 /**
41 * @brief Draw event of the 2D data points.
42 *
43 * Renders data points at given positions.
44 *
45 * @param v View of the whole window.
46 * @param m Model that contains 2D coordinates.
47 * @param colors Data that contains colors of the points.
48 */
49 void draw(const glm::vec2 &fb_size,
50 const View &v,
51 const ScatterModel &m,
52 const ColorData &colors);
53
54private:
56
58 unsigned int VAO;
59 unsigned int VBO_pos;
60 unsigned int VBO_col;
61
62 /**
63 * @brief Prepare data to render scatterplot with colors.
64 *
65 * Fill VBOs and VAO.
66 *
67 * @param model Data source
68 * @param colors Source of the color data.
69 */
70 void prepare_data(size_t start_index,
71 size_t points_size,
72 const ScatterModel &model,
73 const ColorData &colors);
74};
75
76#endif
Abstracts working with shaders.
Definition: shader.h:31
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
Definition: view.h:37
Storage of the color data.
Definition: color_data.h:40
Model of the two-dimensional data points.
Definition: scatter_model.h:42
Renderer of the 2D data points.
unsigned int VBO_col
void prepare_data(size_t start_index, size_t points_size, const ScatterModel &model, const ColorData &colors)
Prepare data to render scatterplot with colors.
TextureRenderer texture_renderer
unsigned int VBO_pos
unsigned int VAO
void draw(const glm::vec2 &fb_size, const View &v, const ScatterModel &m, const ColorData &colors)
Draw event of the 2D data points.
Takes care of the rendering to the texture and then rendering the texture to the screen.