40 if (key == GLFW_KEY_W && (action == GLFW_PRESS || action == GLFW_REPEAT))
42 if (key == GLFW_KEY_S && (action == GLFW_PRESS || action == GLFW_REPEAT))
44 if (key == GLFW_KEY_A && (action == GLFW_PRESS || action == GLFW_REPEAT))
46 if (key == GLFW_KEY_D && (action == GLFW_PRESS || action == GLFW_REPEAT))
49 if (key == GLFW_KEY_LEFT_CONTROL &&
50 (action == GLFW_PRESS || action == GLFW_REPEAT)) {
52 }
else if (key == GLFW_KEY_LEFT_CONTROL && action == GLFW_RELEASE) {
56 if (key == GLFW_KEY_LEFT_SHIFT &&
57 (action == GLFW_PRESS || action == GLFW_REPEAT))
59 else if (key == GLFW_KEY_LEFT_SHIFT && action == GLFW_RELEASE)
70 case GLFW_MOUSE_BUTTON_LEFT:
106 case GLFW_MOUSE_BUTTON_RIGHT:
127 case GLFW_MOUSE_BUTTON_MIDDLE:
Handles rendering of the graph and scatter plot and handles IO.
void stop_cursor_radius()
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)
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 is_brushing_active()
bool check_pressed_rect(glm::vec2 mouse_pos)
A small utility class that manages the viewport coordinates, together with the virtual "camera" posit...
void move_y(int dir)
Move view along Y-axis.
void look_at(glm::vec2 tgt)
Cause the camera to look at the specified point.
void zoom(float yoffset, glm::vec2 mouse)
Adjust zoom accordingly.
void move_x(int dir)
Move view along X-axis.
glm::vec2 model_mouse_coords(glm::vec2 mouse) const
Convert mouse coordinates ([0,0] in the upper left corner), to model coordinates ([0,...
int active_cluster
Index of the active cluster (into clusters) that is used for brushing.
float radius_size
Size of the brushing radius circle for mouse.
void color_landmarks(const std::vector< size_t > &idxs)
Notifies Sweeper that the color settings has been modified and that the data has to be recomputed.
int coloring
Type of the coloring method.
int key
Code of the key of the recent event.
bool shift_pressed
Flag indicating if SHIFT was pressed.
int action
Key action, whether it was pressed, released or held.
bool ctrl_pressed
Flag indicating if CTRL was pressed.
glm::vec2 pos
Raw mouse cursor coordinates on the screen ([0,0] in the upper left corner).
int action
Pressed, released or held button.
int button
Left, right or middle button.
double yoffset
Offset of the mouse wheel along y-axis.
Storage of data of used algorithms and input events.