This commit is contained in:
2026-08-16 21:50:12 +08:00
parent 3153f7d64f
commit 8073e18318
22 changed files with 332 additions and 355 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ QColor to_qcolor(Color color) {
} // namespace
Abs_Plot_Private::Abs_Plot_Private(bool continuous_rendering)
: scene(std::make_unique<Plot_Scene>()), continuous(continuous_rendering) {}
: scene(std::make_unique<Render_Scene_2D>()), continuous(continuous_rendering) {}
Abs_Plot_Private::~Abs_Plot_Private() = default;
@@ -76,7 +76,7 @@ void Abs_Plot::init() {
d->scene->init();
}
Plot_Scene* Abs_Plot::scene() const {
Render_Scene_2D* Abs_Plot::scene() const {
return d ? d->scene.get() : nullptr;
}