Initial LinkedVectors draw item implementation

This commit is contained in:
Dan Paulat 2024-02-10 00:11:19 -06:00
parent 8ae973c4cb
commit 58c7b9accb
4 changed files with 409 additions and 0 deletions

View file

@ -123,6 +123,17 @@ GeoLines::~GeoLines() = default;
GeoLines::GeoLines(GeoLines&&) noexcept = default;
GeoLines& GeoLines::operator=(GeoLines&&) noexcept = default;
void GeoLines::set_selected_time(
std::chrono::system_clock::time_point selectedTime)
{
p->selectedTime_ = selectedTime;
}
void GeoLines::set_thresholded(bool thresholded)
{
p->thresholded_ = thresholded;
}
void GeoLines::Initialize()
{
gl::OpenGLFunctions& gl = p->context_->gl();