23#include "glm/gtc/matrix_transform.hpp"
31 glBlendEquation(GL_FUNC_ADD);
32 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
44 glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
45 glClear(GL_COLOR_BUFFER_BIT);
169 const glm::vec2 &pos,
173 std::vector<size_t> ids;
174 for (
size_t i = 0; i < landmarks.
n_landmarks(); ++i) {
void render(const glm::vec2 &fb_size, const State &state, const View &view)
Render graph and scatterplot.
void check_pressed_vertex(const View &view, glm::vec2 mouse_pos)
Check whether the vertex was pressed and set flags.
void add_vert(State &state, View &view, glm::vec2 mouse_pos)
GraphRenderer graph_renderer
ScatterRenderer scatter_renderer
void draw_cursor_radius(const View &v, glm::vec2 mouse_pos, float r)
bool is_active_multiselect()
std::vector< size_t > get_landmarks_within_circle(const View &view, const glm::vec2 &pos, float radius, const LandmarkModel &landmarks)
void start_multiselect(glm::vec2 mouse_pos)
void move_vert(State &state, View &view, glm::vec2 mouse_pos)
void remove_vert(State &state)
void reset_pressed_vert()
bool is_passive_multiselect()
void move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks)
void update_multiselect(glm::vec2 mouse_pos, const LandmarkModel &model)
bool check_pressed_rect(glm::vec2 mouse_pos)
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
glm::vec2 screen_mouse_coords(glm::vec2 mouse) const
Convert mouse coordinates ([0,0] in the upper left corner), to screen coordinates ([0,...
glm::vec2 screen_coords(glm::vec2 point) const
Converts point to screen coordinates([0,0] in the middle of the screen).
glm::vec2 model_mouse_coords(glm::vec2 mouse) const
Convert mouse coordinates ([0,0] in the upper left corner), to model coordinates ([0,...
void remove_landmark(size_t ind)
bool is_vert_pressed(const View &view, glm::vec2 mouse)
Checks if some vertex 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.
size_t vert_ind
Index of the pressed vertex.
Model of the high- and low-dimensional landmarks.
size_t n_landmarks() const
Reurns number of the 2D landmarks.
void duplicate(size_t ind)
Creates new landmark with the same two- and high-dimensional coordinates as the given landmark.
void move(size_t ind, const glm::vec2 &mouse_pos)
Sets two-dimensional position of the pressed landmark to mouse position.
void add(const glm::vec2 &mouse_pos)
Creates new landmark with the two- and high-dimensional coordinates as the closeset landmark.
std::vector< glm::vec2 > lodim_vertices
Array storing two-dimensional landmark coordinates.
void remove(size_t ind)
Removes landmark and corresponding edges.
void draw(const glm::vec2 &fb_size, const View &v, const ScatterModel &m, const ColorData &colors)
Draw event of the 2D data points.
Storage of data of used algorithms and input events.
void set_rect_start_point(glm::vec2 mouse_pos)
bool is_rect_pressed(glm::vec2 mouse_pos)
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 move_selection(glm::vec2 mouse_pos, LandmarkModel &landmarks)