22#include "glm/gtc/matrix_transform.hpp"
33 glGenVertexArrays(1, &
VAO);
51 std::min(model.
points.size(),
64 glBindVertexArray(
VAO);
66 glDrawArrays(GL_POINTS, 0, points_size);
81 glBindVertexArray(
VAO);
83 glBindBuffer(GL_ARRAY_BUFFER,
VBO_pos);
84 glBufferData(GL_ARRAY_BUFFER,
85 points_size *
sizeof(glm::vec2),
86 &model.
points[start_index],
88 glVertexAttribPointer(
89 0, 2, GL_FLOAT, GL_FALSE,
sizeof(glm::vec2), (
void *)0);
90 glEnableVertexAttribArray(0);
92 glBindBuffer(GL_ARRAY_BUFFER,
VBO_col);
93 glBufferData(GL_ARRAY_BUFFER,
94 points_size *
sizeof(glm::vec4),
95 &colors.
data[start_index],
97 glVertexAttribPointer(
98 1, 4, GL_FLOAT, GL_FALSE,
sizeof(glm::vec4), (
void *)0);
99 glEnableVertexAttribArray(1);
void set_mat4(const std::string &name, glm::mat4 value) const
Bind the matrix 4x4 variable to the shader.
void use()
Activate built shader.
void build(const std::string &vs, const std::string &fs)
Read and build the shader.
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
glm::mat4 get_proj_matrix() const
Compute projection matrix for orthographic projection.
glm::mat4 get_view_matrix() const
Compute view matrix for drawing into the "view" space.
const std::string scatter_fs
const std::string scatter_vs
Storage of the color data.
std::vector< glm::vec4 > data
Colors of the 2D data points.
Model of the two-dimensional data points.
std::vector< glm::vec2 > points
Coordinates of the two-dimensional data points.
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
void draw(const glm::vec2 &fb_size, const View &v, const ScatterModel &m, const ColorData &colors)
Draw event of the 2D data points.
void bind_fb(const glm::vec2 &fb_size)
size_t get_num_of_texts()