Renderer of the 2D landmark graph.
More...
#include <graph_renderer.h>
|
void | prepare_data (float current_zoom, const LandmarkModel &model, const ColorData &colors) |
| Prepare data to render vertices and edges. More...
|
|
void | prepare_vertices (float current_zoom, const LandmarkModel &model, const ColorData &colors) |
| Prepare graph vertices that are rendered as circles. More...
|
|
void | prepare_edges (const LandmarkModel &model) |
| Prepare graph edges that are rendered as lines. More...
|
|
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. More...
|
|
|
static constexpr float | vertex_size = 5.0f |
| Radius of the vertex used for comparing, if the landmark was pressed. More...
|
|
Renderer of the 2D landmark graph.
Definition at line 37 of file graph_renderer.h.
◆ GraphRenderer()
GraphRenderer::GraphRenderer |
( |
| ) |
|
◆ add_circle()
void GraphRenderer::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 |
|
) |
| |
|
private |
Add vertices for TRIANGLE_FAN that creates circle at given position.
- Parameters
-
middle_x | x position of the middle of the circle. |
middle_y | y position of the middle of the circle. |
zoom | Current zoom level used to adjust the size of the circle. |
all_vtxs | Storage of the vertices that will be filled. |
Definition at line 126 of file graph_renderer.cpp.
◆ draw()
Draw event of the 2D landmark graph.
Renders vertices and edges at current positions.
- Parameters
-
- Todo:
- TODO: this should not know about actual Landmarks, we should pass actual vertex + edge positions as with the layouter.
Definition at line 56 of file graph_renderer.cpp.
◆ init()
void GraphRenderer::init |
( |
| ) |
|
◆ is_vert_pressed()
bool GraphRenderer::is_vert_pressed |
( |
const View & |
view, |
|
|
glm::vec2 |
mouse |
|
) |
| |
Checks if some vertex was pressed.
- Parameters
-
[in] | mouse | Mouse screen coordinates. |
[out] | vert_ind | If the vertex was pressed it returns the index of the vertex, otherwise it is UB. |
- Returns
- true If a vertex was pressed.
-
false If no vertex was pressed.
Definition at line 98 of file graph_renderer.cpp.
◆ prepare_data()
void GraphRenderer::prepare_data |
( |
float |
current_zoom, |
|
|
const LandmarkModel & |
model, |
|
|
const ColorData & |
colors |
|
) |
| |
|
private |
Prepare data to render vertices and edges.
Fill VBOs and VAOs.
- Parameters
-
current_zoom | Current zoom of the "camera". |
model | Data source |
Definition at line 117 of file graph_renderer.cpp.
◆ prepare_edges()
Prepare graph edges that are rendered as lines.
- Parameters
-
Definition at line 226 of file graph_renderer.cpp.
◆ prepare_vertices()
void GraphRenderer::prepare_vertices |
( |
float |
current_zoom, |
|
|
const LandmarkModel & |
model, |
|
|
const ColorData & |
colors |
|
) |
| |
|
private |
Prepare graph vertices that are rendered as circles.
- Parameters
-
current_zoom | Current zoom of the "camera". |
model | Data source |
Definition at line 167 of file graph_renderer.cpp.
◆ num_all_vtxs
int GraphRenderer::num_all_vtxs |
|
private |
Number of all vertices for rendering circles(graph vertices).
Definition at line 84 of file graph_renderer.h.
◆ num_all_vtxs_outlines
int GraphRenderer::num_all_vtxs_outlines |
|
private |
◆ shader_e
Shader GraphRenderer::shader_e |
|
private |
◆ shader_v
Shader GraphRenderer::shader_v |
|
private |
◆ shader_v_outline
Shader GraphRenderer::shader_v_outline |
|
private |
◆ VAO_e
unsigned int GraphRenderer::VAO_e |
|
private |
◆ VAO_v
unsigned int GraphRenderer::VAO_v |
|
private |
◆ VAO_v_outline
unsigned int GraphRenderer::VAO_v_outline |
|
private |
◆ VBO_e
unsigned int GraphRenderer::VBO_e |
|
private |
◆ VBO_v_col
unsigned int GraphRenderer::VBO_v_col |
|
private |
◆ VBO_v_pos
unsigned int GraphRenderer::VBO_v_pos |
|
private |
◆ VBO_v_pos_outline
unsigned int GraphRenderer::VBO_v_pos_outline |
|
private |
◆ vert_ind
size_t GraphRenderer::vert_ind |
Index of the pressed vertex.
If the vertex was not pressed, it is UB.
Definition at line 42 of file graph_renderer.h.
◆ vert_pressed
bool GraphRenderer::vert_pressed |
◆ vertex_size
constexpr float GraphRenderer::vertex_size = 5.0f |
|
staticconstexprprivate |
Radius of the vertex used for comparing, if the landmark was pressed.
Definition at line 78 of file graph_renderer.h.
◆ vertices
std::vector<glm::vec2> GraphRenderer::vertices |
|
private |
Cached screen coordinates of the vertices.
Definition at line 81 of file graph_renderer.h.
The documentation for this struct was generated from the following files: