mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:30:05 +00:00
Initial LinkedVectors draw item implementation
This commit is contained in:
parent
8ae973c4cb
commit
58c7b9accb
4 changed files with 409 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue