20#ifndef GRAPH_RENDERER_H
21#define GRAPH_RENDERER_H
139 std::vector<float> &all_vtxs,
140 std::vector<float> &vtxs_outlines,
141 std::vector<glm::vec3> &all_colors,
142 const glm::vec3 &color);
Abstracts working with shaders.
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
Storage of the color data.
Renderer of the 2D landmark graph.
std::vector< glm::vec2 > vertices
Cached screen coordinates of the vertices.
unsigned int VAO_v_outline
void prepare_vertices(float current_zoom, const LandmarkModel &model, const ColorData &colors)
Prepare graph vertices that are rendered as circles.
bool is_vert_pressed(const View &view, glm::vec2 mouse)
Checks if some vertex was pressed.
static constexpr float vertex_size
Radius of the vertex used for comparing, if the landmark was pressed.
bool vert_pressed
Flag indicating if a vertex was pressed.
void draw(const View &v, const LandmarkModel &m, const ColorData &colors)
Draw event of the 2D landmark graph.
int num_all_vtxs
Number of all vertices for rendering circles(graph vertices).
unsigned int VBO_v_pos_outline
void add_circle(float middle_x, float middle_y, float zoom, std::vector< float > &all_vtxs, std::vector< float > &vtxs_outlines, std::vector< glm::vec3 > &all_colors, const glm::vec3 &color)
Add vertices for TRIANGLE_FAN that creates circle at given position.
int num_all_vtxs_outlines
size_t vert_ind
Index of the pressed vertex.
void prepare_edges(const LandmarkModel &model)
Prepare graph edges that are rendered as lines.
void prepare_data(float current_zoom, const LandmarkModel &model, const ColorData &colors)
Prepare data to render vertices and edges.
Model of the high- and low-dimensional landmarks.