22#include "glm/gtc/matrix_transform.hpp"
38 glGenVertexArrays(1, &
VAO_v);
49 glGenVertexArrays(1, &
VAO_e);
50 glGenBuffers(1, &
VBO_e);
69 glBindVertexArray(
VAO_e);
70 glDrawArrays(GL_LINES, 0, 2 * model.
edges.size());
77 glBindVertexArray(
VAO_v);
102 for (
size_t i = 0; i <
vertices.size(); ++i) {
105 if ((mouse.x >= roundf(vert.x) - radius) &&
106 (mouse.x <= roundf(vert.x) + radius) &&
107 (mouse.y >= roundf(vert.y) - radius) &&
108 (mouse.y <= roundf(vert.y) + radius)) {
129 std::vector<float> &all_vtxs,
130 std::vector<float> &vtxs_outlines,
131 std::vector<glm::vec3> &all_colors,
132 const glm::vec3 &color)
135 float radius = 0.05f;
139 double two_pi = 2.0f * M_PI;
141 all_vtxs.emplace_back(middle_x);
142 all_vtxs.emplace_back(middle_y);
143 all_colors.emplace_back(color);
147 middle_x + (radius * cos(i * two_pi / sides)) * zoom * 130;
149 middle_y + (radius * sin(i * two_pi / sides)) * zoom * 130;
150 all_vtxs.emplace_back(x_coor);
151 all_vtxs.emplace_back(y_coor);
153 all_colors.emplace_back(color);
155 vtxs_outlines.emplace_back(x_coor);
156 vtxs_outlines.emplace_back(y_coor);
160 vtxs_outlines.emplace_back(x_coor);
161 vtxs_outlines.emplace_back(y_coor);
176 std::vector<float> all_vtxs;
177 std::vector<float> vtx_outlines;
178 std::vector<glm::vec3> all_colors;
180 for (
size_t i = 0; i <
vertices.size(); ++i) {
193 glBindVertexArray(
VAO_v);
195 glBindBuffer(GL_ARRAY_BUFFER,
VBO_v_pos);
196 glBufferData(GL_ARRAY_BUFFER,
197 all_vtxs.size() *
sizeof(
float),
200 glVertexAttribPointer(
201 0, 2, GL_FLOAT, GL_FALSE, 2 *
sizeof(
float), (
void *)0);
202 glEnableVertexAttribArray(0);
204 glBindBuffer(GL_ARRAY_BUFFER,
VBO_v_col);
205 glBufferData(GL_ARRAY_BUFFER,
206 all_colors.size() *
sizeof(glm::vec3),
209 glVertexAttribPointer(
210 1, 3, GL_FLOAT, GL_FALSE,
sizeof(glm::vec3), (
void *)0);
211 glEnableVertexAttribArray(1);
216 glBufferData(GL_ARRAY_BUFFER,
217 vtx_outlines.size() *
sizeof(
float),
220 glVertexAttribPointer(
221 0, 2, GL_FLOAT, GL_FALSE, 2 *
sizeof(
float), (
void *)0);
222 glEnableVertexAttribArray(0);
228 std::vector<glm::vec2> edge_lines(2 * model.
edges.size());
229 for (
size_t i = 0; i < model.
edges.size(); ++i) {
234 glBindVertexArray(
VAO_e);
236 glBindBuffer(GL_ARRAY_BUFFER,
VBO_e);
237 glBufferData(GL_ARRAY_BUFFER,
238 edge_lines.size() *
sizeof(glm::vec2),
241 glVertexAttribPointer(
242 0, 2, GL_FLOAT, GL_FALSE,
sizeof(glm::vec2), (
void *)0);
243 glEnableVertexAttribArray(0);
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.
glm::vec2 screen_coords(glm::vec2 point) const
Converts point to screen coordinates([0,0] in the middle of the screen).
const std::string graph_v_outline_vs
const std::string graph_e_fs
const std::string graph_v_outline_fs
const std::string graph_v_fs
const std::string graph_v_vs
const std::string graph_e_vs
Storage of the color data.
std::vector< std::pair< const glm::vec3 *, int > > landmarks
Colors of the landmarks and id of the cluster.
int coloring
Type of the coloring method.
const glm::vec3 default_landmark_color
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.
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.
std::vector< glm::vec2 > lodim_vertices
Array storing two-dimensional landmark coordinates.
std::vector< std::pair< size_t, size_t > > edges
Array of vertex ID pairs.