BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
Public Member Functions | Public Attributes | Private Member Functions | Private Attributes | List of all members
UiRenderer Struct Reference

Renderer of the objects that are needed in the user interaction with the dataset. More...

#include <ui_renderer.h>

Collaboration diagram for UiRenderer:
Collaboration graph
[legend]

Public Member Functions

 UiRenderer ()
 
bool init ()
 
void draw (const View &v)
 
bool is_rect_pressed (glm::vec2 mouse_pos)
 
void set_rect_start_point (glm::vec2 mouse_pos)
 
void set_rect_end_point (glm::vec2 mouse_pos, const LandmarkModel &model)
 
void move_selection (glm::vec2 mouse_pos, LandmarkModel &landmarks)
 
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)
 

Public Attributes

bool draw_rect
 
bool update_rect_pos
 
bool rect_pressed
 
bool is_brushing_active
 If the brushing is active. More...
 
bool draw_circle
 

Private Member Functions

void prepare_data (float current_zoom)
 
void prepare_rectangle ()
 Prepare rectangle data used for multiselect. More...
 
void prepare_circle (float current_zoom)
 
bool is_within_rect (glm::vec2 point) const
 

Private Attributes

Shader shader_r
 
unsigned int VAO_r
 
unsigned int VBO_r
 
unsigned int EBO_r
 
int num_all_vtxs_circle
 
Shader shader_c
 
unsigned int VAO_c
 
unsigned int VBO_c
 
std::array< glm::vec2, 4 > rect_vtxs
 
const std::array< unsigned int, 6 > rect_indices
 
float max_diff_x
 
float min_diff_x
 
float max_diff_y
 
float min_diff_y
 
std::vector< size_t > selected_landmarks
 
glm::vec2 circle_pos
 
float circle_radius
 

Detailed Description

Renderer of the objects that are needed in the user interaction with the dataset.

Definition at line 35 of file ui_renderer.h.

Constructor & Destructor Documentation

◆ UiRenderer()

UiRenderer::UiRenderer ( )

Definition at line 23 of file ui_renderer.cpp.

Member Function Documentation

◆ draw()

void UiRenderer::draw ( const View v)

Definition at line 49 of file ui_renderer.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ init()

bool UiRenderer::init ( )

Definition at line 34 of file ui_renderer.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ is_rect_pressed()

bool UiRenderer::is_rect_pressed ( glm::vec2  mouse_pos)

Definition at line 86 of file ui_renderer.cpp.

Here is the caller graph for this function:

◆ is_within_circle()

bool UiRenderer::is_within_circle ( const glm::vec2 &  vert,
const glm::vec2 &  pos,
float  radius 
)

Definition at line 259 of file ui_renderer.cpp.

Here is the caller graph for this function:

◆ is_within_rect()

bool UiRenderer::is_within_rect ( glm::vec2  point) const
private

Definition at line 241 of file ui_renderer.cpp.

Here is the caller graph for this function:

◆ move_selection()

void UiRenderer::move_selection ( glm::vec2  mouse_pos,
LandmarkModel landmarks 
)

Definition at line 140 of file ui_renderer.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ prepare_circle()

void UiRenderer::prepare_circle ( float  current_zoom)
private

Definition at line 204 of file ui_renderer.cpp.

Here is the caller graph for this function:

◆ prepare_data()

void UiRenderer::prepare_data ( float  current_zoom)
private

Definition at line 79 of file ui_renderer.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ prepare_rectangle()

void UiRenderer::prepare_rectangle ( )
private

Prepare rectangle data used for multiselect.

Definition at line 182 of file ui_renderer.cpp.

Here is the caller graph for this function:

◆ set_rect_end_point()

void UiRenderer::set_rect_end_point ( glm::vec2  mouse_pos,
const LandmarkModel model 
)

Definition at line 122 of file ui_renderer.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ set_rect_start_point()

void UiRenderer::set_rect_start_point ( glm::vec2  mouse_pos)

Definition at line 111 of file ui_renderer.cpp.

Here is the caller graph for this function:

◆ should_draw_circle()

void UiRenderer::should_draw_circle ( const View view,
glm::vec2  mouse_pos,
float  r 
)

Definition at line 167 of file ui_renderer.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ circle_pos

glm::vec2 UiRenderer::circle_pos
private

Definition at line 85 of file ui_renderer.h.

◆ circle_radius

float UiRenderer::circle_radius
private

Definition at line 86 of file ui_renderer.h.

◆ draw_circle

bool UiRenderer::draw_circle

Definition at line 45 of file ui_renderer.h.

◆ draw_rect

bool UiRenderer::draw_rect

Definition at line 37 of file ui_renderer.h.

◆ EBO_r

unsigned int UiRenderer::EBO_r
private

Definition at line 68 of file ui_renderer.h.

◆ is_brushing_active

bool UiRenderer::is_brushing_active

If the brushing is active.

Definition at line 43 of file ui_renderer.h.

◆ max_diff_x

float UiRenderer::max_diff_x
private

Definition at line 78 of file ui_renderer.h.

◆ max_diff_y

float UiRenderer::max_diff_y
private

Definition at line 80 of file ui_renderer.h.

◆ min_diff_x

float UiRenderer::min_diff_x
private

Definition at line 79 of file ui_renderer.h.

◆ min_diff_y

float UiRenderer::min_diff_y
private

Definition at line 81 of file ui_renderer.h.

◆ num_all_vtxs_circle

int UiRenderer::num_all_vtxs_circle
private

Definition at line 70 of file ui_renderer.h.

◆ rect_indices

const std::array<unsigned int, 6> UiRenderer::rect_indices
private

Definition at line 76 of file ui_renderer.h.

◆ rect_pressed

bool UiRenderer::rect_pressed

Definition at line 40 of file ui_renderer.h.

◆ rect_vtxs

std::array<glm::vec2, 4> UiRenderer::rect_vtxs
private

Definition at line 75 of file ui_renderer.h.

◆ selected_landmarks

std::vector<size_t> UiRenderer::selected_landmarks
private

Definition at line 83 of file ui_renderer.h.

◆ shader_c

Shader UiRenderer::shader_c
private

Definition at line 71 of file ui_renderer.h.

◆ shader_r

Shader UiRenderer::shader_r
private

Definition at line 65 of file ui_renderer.h.

◆ update_rect_pos

bool UiRenderer::update_rect_pos

Definition at line 38 of file ui_renderer.h.

◆ VAO_c

unsigned int UiRenderer::VAO_c
private

Definition at line 72 of file ui_renderer.h.

◆ VAO_r

unsigned int UiRenderer::VAO_r
private

Definition at line 66 of file ui_renderer.h.

◆ VBO_c

unsigned int UiRenderer::VBO_c
private

Definition at line 73 of file ui_renderer.h.

◆ VBO_r

unsigned int UiRenderer::VBO_r
private

Definition at line 67 of file ui_renderer.h.


The documentation for this struct was generated from the following files: