https://github.com/wavestoweather/PCViewer.git
Raw File
Tip revision: e4a2a107c7790a4948783b0f8515ddf84afafc15 authored by Josef Stumpfegger on 24 November 2022, 12:56:34 UTC
Added links to the replicability video and dataset.
Tip revision: e4a2a10
LassoBrush.hpp
#pragma once
#include <vector>
#include "imgui/imgui.h"

struct Polygon{
    int attr1, attr2;
    std::vector<ImVec2> borderPoints;
};
using Polygons = std::vector<Polygon>;
back to top