Files
Aethera/render_2D/render_2D/plottable/Selection_Rectangle_Overlay.cpp
T
2026-08-20 23:04:59 +08:00

8 lines
520 B
C++

#include "Selection_Rectangle_Overlay.hpp"
namespace aethera::render_2d {
bool Selection_Rectangle_Overlay::Prop::operator==(const Prop&) const = default;
bool Selection_Rectangle_Overlay::State::operator==(const State&) const = default;
std::vector<Rect_F> Selection_Rectangle_Overlay::selected_regions() const { return static_cast<const Private&>(*d).dispatch->selected_regions(this); }
void Selection_Rectangle_Overlay::clear_selected_regions() { static_cast<Private&>(*d).dispatch->clear_selected_regions(this); }
}