24 : rect_indices({ 0, 1, 3, 1, 2, 3 })
26 , update_rect_pos(
false)
28 , is_brushing_active(
false)
36 glGenVertexArrays(1, &
VAO_r);
37 glGenBuffers(1, &
VBO_r);
38 glGenBuffers(1, &
EBO_r);
42 glGenVertexArrays(1, &
VAO_c);
43 glGenBuffers(1, &
VBO_c);
61 glBindVertexArray(
VAO_r);
62 glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_INT, 0);
71 glBindVertexArray(
VAO_c);
88 float mouse_x = mouse_pos.x;
89 float mouse_y = mouse_pos.y;
96 if ((mouse_x >= min_x && mouse_x <= max_x) &&
97 (mouse_y >= min_y && mouse_y <= max_y))
124 float delta_x = mouse_pos.x -
rect_vtxs[3].x;
125 float delta_y = mouse_pos.y -
rect_vtxs[3].y;
133 for (
size_t i = 0; i < vertices.size(); ++i) {
142 float x = mouse_pos.x;
143 float y = mouse_pos.y;
150 float delta_x = new_upper_r.x -
rect_vtxs[0].x;
151 float delta_y = new_upper_r.y -
rect_vtxs[0].y;
156 glm::vec2 new_pos = old_pos + glm::vec2(delta_x, delta_y);
157 landmarks.
move(ind, new_pos);
171 auto right = mouse_pos + glm::vec2(r, 0);
174 float model_radius = fabs((model_right - model_mouse).x);
184 glBindVertexArray(
VAO_r);
186 glBindBuffer(GL_ARRAY_BUFFER,
VBO_r);
187 glBufferData(GL_ARRAY_BUFFER,
192 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER,
EBO_r);
193 glBufferData(GL_ELEMENT_ARRAY_BUFFER,
198 glVertexAttribPointer(
199 0, 2, GL_FLOAT, GL_FALSE,
sizeof(glm::vec2), (
void *)0);
200 glEnableVertexAttribArray(0);
206 std::vector<float> circle_vtxs;
211 double two_pi = 2.0f * M_PI;
213 for (
int i = 0; i < sides + 1; ++i) {
217 circle_vtxs.emplace_back(x_coor);
218 circle_vtxs.emplace_back(y_coor);
222 if (i != 0 && i != sides) {
223 circle_vtxs.emplace_back(x_coor);
224 circle_vtxs.emplace_back(y_coor);
228 glBindVertexArray(
VAO_c);
230 glBindBuffer(GL_ARRAY_BUFFER,
VBO_c);
231 glBufferData(GL_ARRAY_BUFFER,
232 circle_vtxs.size() *
sizeof(
float),
235 glVertexAttribPointer(
236 0, 2, GL_FLOAT, GL_FALSE, 2 *
sizeof(
float), (
void *)0);
237 glEnableVertexAttribArray(0);
243 float point_x = point.x;
244 float point_y = point.y;
251 if ((point_x >= min_x && point_x <= max_x) &&
252 (point_y >= min_y && point_y <= max_y))
260 const glm::vec2 &pos,
263 if ((pos.x + radius >= roundf(vert.x)) &&
264 (pos.x - radius <= roundf(vert.x)) &&
265 (pos.y + radius >= roundf(vert.y)) &&
266 (pos.y - radius <= roundf(vert.y))) {
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 model_mouse_coords(glm::vec2 mouse) const
Convert mouse coordinates ([0,0] in the upper left corner), to model coordinates ([0,...
const std::string ui_r_vs
const std::string ui_r_fs
const std::string ui_c_fs
const std::string ui_c_vs
Model of the high- and low-dimensional landmarks.
void move(size_t ind, const glm::vec2 &mouse_pos)
Sets two-dimensional position of the pressed landmark to mouse position.
std::vector< glm::vec2 > lodim_vertices
Array storing two-dimensional landmark coordinates.
void set_rect_start_point(glm::vec2 mouse_pos)
bool is_within_rect(glm::vec2 point) const
const std::array< unsigned int, 6 > rect_indices
bool is_rect_pressed(glm::vec2 mouse_pos)
std::vector< size_t > selected_landmarks
std::array< glm::vec2, 4 > rect_vtxs
void prepare_data(float current_zoom)
void should_draw_circle(const View &view, glm::vec2 mouse_pos, float r)
bool is_within_circle(const glm::vec2 &vert, const glm::vec2 &pos, float radius)
void set_rect_end_point(glm::vec2 mouse_pos, const LandmarkModel &model)
void prepare_circle(float current_zoom)
void move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks)
void prepare_rectangle()
Prepare rectangle data used for multiselect.