45 std::default_random_engine gen;
46 std::uniform_real_distribution<float> dist(-1, 1);
48 for (
size_t i = 0; i < n * n; ++i) {
53 for (
size_t di = 0; di <
d; ++di)
80 size_t line_idx =
d * ind;
81 for (
size_t i = 0; i <
d; ++i) {
101 size_t line_idx =
d * vert_ind;
102 for (
size_t i = 0; i <
d; ++i) {
113 size_t line_idx =
d * ind;
118 std::vector<size_t> edge_idxs;
120 for (
auto i =
edges.begin(); i !=
edges.end();) {
121 if (i->first == ind || i->second == ind) {
132 for (
auto i =
edges.begin(); i !=
edges.end(); ++i) {
133 if (i->first >= ind) {
136 if (i->second >= ind) {
147 auto a = powf(x.x - y.x, 2);
148 auto b = powf(x.y - y.y, 2);
155 auto min_dist = std::numeric_limits<float>::max();
159 if (dist < min_dist) {
static float distance(const glm::vec2 &x, const glm::vec2 &y)
void touch()
Make the cache dirty.
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.
std::vector< float > hidim_vertices
One-dimensional array storing d-dimensional landmark coordinates in row-major order.
std::vector< float > edge_lengths
Lengths of all edges.
size_t closest_landmark(const glm::vec2 &mouse_pos) const
Counts closest landmark to the given position.
LandmarkModel()
Creates empty landmarks with dimension 0.
void update_dim(size_t dim)
Updates current dimension and calls init_grid().
void remove(size_t ind)
Removes landmark and corresponding edges.
void init_grid(size_t side)
Creates squared landmarks layout, without edges.
std::vector< std::pair< size_t, size_t > > edges
Array of vertex ID pairs.